.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* CSS Personalizado para Site Alfa Prost - Tema Promocional */

/* Reset e Fontes Gerais */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3 {
    color: #1e3a8a; /* Azul escuro para títulos, evocando confiança */
    font-weight: bold;
}

/* Cabeçalho - Logo e Menu */
.site-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6); /* Gradiente azul para header */
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-title a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.main-navigation li a {
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.main-navigation li a:hover {
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}

/* Seções Principais - Hero/Promoção */
.hero-section, .wp-block-cover {
    background: linear-gradient(rgba(30,58,138,0.8), rgba(59,130,246,0.8)), url('https://seu-site.com/imagem-hero.jpg'); /* Substitua pela URL da sua imagem de fundo (ex: homem saudável ou produto) */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.promo-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Botões de Promoção/Compra - Urgência */
.wp-block-button .wp-block-button__link,
.btn-promo,
a.button {
    background: linear-gradient(135deg, #f59e0b, #ef4444); /* Laranja/vermelho para CTA urgente */
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
}

.wp-block-button .wp-block-button__link:hover,
.btn-promo:hover,
a.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239,68,68,0.6);
    color: white;
}

/* Seções de Benefícios e Depoimentos */
.beneficios-section, .depoimentos-section {
    background: #e0f2fe; /* Azul claro para seções de conteúdo */
    padding: 3rem 2rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.beneficio-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.beneficio-item h3 {
    color: #10b981; /* Verde para ícones/benefícios */
}

.depoimento {
    background: white;
    margin: 1rem 0;
    padding: 1.5rem;
    border-left: 5px solid #3b82f6;
    border-radius: 5px;
    font-style: italic;
}

/* Banner de Desconto Urgente */
.desconto-banner {
    background: linear-gradient(135deg, #10b981, #059669); /* Verde para promoções */
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.desconto-banner .preco-antigo {
    text-decoration: line-through;
    color: rgba(255,255,255,0.8);
}

.desconto-banner .preco-novo {
    font-size: 1.5rem;
    color: #fef3c7;
}

/* Rodapé */
.site-footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer a {
    color: #93c5fd;
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .wp-block-button .wp-block-button__link {
        width: 100%;
        text-align: center;
    }
}

/* Animações Suaves */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-section, .beneficios-item {
    animation: fadeInUp 1s ease-out;
}/* End custom CSS */