:root {
    --color-primary: #2E7D32; /* Verde Institucional */
    --color-secondary: #FF9800; /* Laranja Energia */
    --color-cta-green: #4CAF50; /* Verde Vibrante */
    --color-cta-orange: #FF6F00; /* Laranja Forte */
    --color-text-dark: #424242;
    --color-text-light: #F5F5F5;
    --color-bg-light: #F8F9FA;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

/* --- Utilities --- */
.text-primary-custom { color: var(--color-primary); }
.text-secondary-custom { color: var(--color-secondary); }
.bg-primary-custom { background-color: var(--color-primary); }
.bg-secondary-custom { background-color: var(--color-secondary); }

.btn-cta-green {
    background-color: var(--color-cta-green);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-cta-green:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    color: white;
}

.btn-cta-orange {
    background-color: var(--color-cta-orange);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-cta-orange:hover {
    background-color: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    color: white;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0 100px; /* Ajustado para dar espaço ao logo no topo */
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-logo {
    max-width: 200px;
    /* box-shadow removed as requested */
}

.hero-form-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--color-text-dark);
}

.hero-badges i {
    color: var(--color-secondary);
    margin-right: 8px;
}

/* --- Trust Bar --- */
.trust-bar {
    background-color: #F5F5F5;
    padding: 30px 0;
    border-bottom: 1px solid #E0E0E0;
}

.trust-item {
    opacity: 0.7;
    transition: opacity 0.3s;
    font-weight: 600;
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trust-item:hover {
    opacity: 1;
}

/* --- Feature Cards --- */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--color-primary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* --- Urgency Section --- */
.urgency-section {
    background-color: var(--color-bg-light);
}

.countdown-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #D32F2F;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

/* --- Size Cards --- */
.size-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.size-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.size-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.size-card-body {
    padding: 20px;
}

.badge-popular {
    background-color: var(--color-secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* --- Timeline --- */
.timeline-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* --- Mobile Header --- */
.mobile-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 50px; /* More space top for mobile header */
        text-align: center;
    }
    
    .mobile-sticky-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-form-card {
        margin-top: 30px;
    }
}

/* --- FAQ Accordion --- */
.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: #e8f5e9;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

/* --- SEO Boost Layers --- */
.seo-anchor-layer {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 1px;
    line-height: 1px;
    color: transparent;
}

.seo-geo-stack {
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}

.seo-semantic-mesh {
    position: absolute;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    width: 1px;
    height: 1px;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: #ddd;
    padding: 50px 0 20px;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: var(--color-secondary);
}

footer h5 {
    color: white;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-secondary);
    display: inline-block;
    padding-bottom: 5px;
}
