/* ===== RESET E VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2E7D32;
    --secondary-green: #4CAF50;
    --accent-green: #8BC34A;
    --light-green: #E8F5E8;
    --orange: #FF9800;
    --red-orange: #FF5722;
    --gold: #FFD54F;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark: #212529;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    --gradient-accent: linear-gradient(135deg, var(--orange) 0%, var(--red-orange) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-green) 0%, #F1F8E9 100%);
    --border-radius: 20px;
    --border-radius-sm: 10px;
    --border-radius-lg: 25px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COMPONENTES REUTILIZÁVEIS ===== */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green);
    text-decoration: none;
}

.nav-brand i { font-size: 2rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--primary-green); }

.nav-cta {
    background: var(--gradient-accent);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover { transform: translateY(-2px); }

/* ===== HERO SECTION ===== */
.hero-modern {
    min-height: 75vh; /* Reduzido de 100vh para 75vh */
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 20px; /* Reduzido de 80px para 20px */
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx=".5" cy=".5" r=".5"><stop offset="0%" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-modern .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { color: white; }

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gradient-text {
    background: linear-gradient(45deg, var(--gold), #FFF59D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gold);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 40px;
        color: white;
        opacity: 1;
        line-height: 1.6;
    }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: white; /* Alterado de rgb(211, 53, 53) para white */
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-button-modern {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 15px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button-modern:hover::before { left: 100%; }

.cta-button-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.6);
}

.button-text {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.button-price {
        font-size: 1rem;
        color: white;
        opacity: 1;
    }

.trust-indicators {
    display: flex;
    gap: 30px;
}

.trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: white;
        opacity: 1;
    }

.trust-item i { color: var(--gold); }

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card:hover { transform: translateY(-10px) !important; }

.card-1 {
    top: 50px;
    left: 50px;
    width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 80px;
    width: 260px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 100px;
    width: 240px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
}

.card-content h4 {
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 600;
}

.card-content p {
        color: var(--primary-green);
        font-size: 0.9rem;
    }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ESTATÍSTICAS ===== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-10px); }

.stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== PROBLEMA SECTION ===== */
.problema-modern {
    padding: 20px 0;
    background: var(--light-gray);
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problema-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.problema-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.problema-icon {
    font-size: 3rem;
    color: var(--red-orange);
    margin-bottom: 20px;
}

.problema-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.problema-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== SOLUÇÃO SECTION ===== */
.solucao {
    padding: 100px 0;
    background: white;
}

.solucao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solucao-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.solucao-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--dark);
}

.features-list i {
    color: var(--secondary-green);
    font-size: 1.2rem;
}

.success-card {
    background: var(--gradient-light);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.before, .after {
    text-align: center;
}

.before h4 {
    color: var(--red-orange);
    margin-bottom: 15px;
}

.after h4 {
    color: var(--secondary-green);
    margin-bottom: 15px;
}

.visual-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.comparison-icon {
    font-size: 3rem;
}

.before .comparison-icon { color: var(--red-orange); }
.after .comparison-icon { color: var(--secondary-green); }

.arrow-transform {
    font-size: 2rem;
    color: var(--primary-green);
}

/* ===== PROCESSO TIMELINE ===== */
.processo {
    padding: 20px 0;
    background: var(--gradient-light);
}

.processo-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.processo-step {
    position: relative;
    margin-bottom: 60px;
    min-height: 120px;
}

.processo-step:nth-child(odd) .step-content {
    margin-right: 60%;
    text-align: right;
}

.processo-step:nth-child(even) .step-content {
    margin-left: 60%;
    text-align: left;
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
    max-width: 400px;
}

.processo-step:nth-child(odd) .step-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.processo-step:nth-child(even) .step-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px var(--shadow);
}

.step-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== BENEFÍCIOS SECTION ===== */
.beneficios-modern {
    padding: 20px 0;
    background: var(--light-gray);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px var(--shadow-dark);
    border-color: var(--secondary-green);
}

.benefit-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.benefit-card:hover .benefit-icon-wrapper::before {
    left: 100%;
}

.benefit-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.benefit-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    transition: var(--transition);
}

.benefit-card:hover h3 {
    color: var(--secondary-green);
    transform: translateY(-2px);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.benefit-card:hover p {
    color: var(--dark);
}

.benefit-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--light-green);
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
}

.stat-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.benefit-stats .stat-label {
    font-size: 0.9rem;
    color: rgb(10, 119, 47);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.benefit-card:hover .stat-highlight {
    color: var(--secondary-green);
    transform: scale(1.1);
}

/* Ícone de casa específico */
.benefit-card:first-child .benefit-icon-wrapper {
    background: var(--gradient-accent);
}

.benefit-card:first-child .benefit-icon-wrapper i::before {
    content: '🏠';
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animações de entrada */
.benefit-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .stat-highlight {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .beneficios-modern {
        padding: 80px 0;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-stats {
        flex-direction: column;
        gap: 5px;
    }
}

/* ===== COMPARAÇÃO SECTION ===== */
.comparacao {
    padding: 20px 0;
    background: var(--light-gray);
}

.comparison-table {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--gradient-primary);
    color: white;
}

.comparison-item {
    padding: 30px 20px;
    text-align: center;
}

.comparison-item.market {
    background: rgba(255, 87, 34, 0.1);
}

.comparison-item.garden {
    background: rgba(76, 175, 80, 0.1);
}

.comparison-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.comparison-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    padding: 25px 20px;
    font-weight: 600;
    color: var(--primary-green);
    background: var(--light-green);
    display: flex;
    align-items: center;
}

.comparison-value {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.market-bad {
    background: rgba(255, 87, 34, 0.1);
    color: var(--red-orange);
}

.garden-good {
    background: rgba(76, 175, 80, 0.1);
    color: var(--secondary-green);
}

/* ===== DEPOIMENTOS CAROUSEL ===== */
.depoimentos-modern {
    padding: 20px 0;
    background: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px var(--shadow);
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-result {
    text-align: center;
}

.result-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.carousel-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-green);
}

/* ===== FAQ SECTION ===== */
.faq-modern {
    padding: -50px 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-green);
}

.faq-question h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== PRODUTO SHOWCASE ===== */
.produto-showcase {
    padding: 100px -50px;
    background: white;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-preview {
    text-align: center;
}

.ebook-mockup {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.ebook-cover {
    width: 300px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.ebook-mockup:hover .ebook-cover {
    transform: perspective(1000px) rotateY(0deg);
}

.cover-content {
    padding: 40px 30px;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cover-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.cover-plants {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cover-plants i {
    font-size: 2rem;
    color: var(--gold);
}

.ebook-pages {
    position: absolute;
    right: -10px;
    top: 10px;
    width: 300px;
    height: 380px;
    background: #f0f0f0;
    border-radius: 10px;
    z-index: -1;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.bonus-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-green);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    color: var(--primary-green);
}

.bonus-item i {
    color: var(--secondary-green);
    font-size: 1.2rem;
}

.product-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: var(--primary-green);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== OFERTA ULTRA ===== */
.oferta-ultra {
    padding: 20px 0 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.oferta-content {
    text-align: center;
}

.oferta-header {
    margin-bottom: 60px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-accent);
    padding: 12px 25px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.oferta-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.oferta-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-card {
    background: white;
    color: var(--dark);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    max-width: 600px;
    margin: 0 auto 60px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.old-price-section {
    text-align: center;
}

.old-price-section .label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--gray);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 600;
}

.price {
    font-size: 4rem;
    color: var(--primary-green);
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 600;
}

.payment-info {
    color: var(--gray);
    font-size: 0.9rem;
}

.value-props {
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
    padding: 30px 0;
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.value-item:last-child {
    border-bottom: none;
}

.value-item i {
    color: var(--secondary-green);
    margin-right: 10px;
}

.value-divider {
    height: 2px;
    background: var(--gradient-primary);
    margin: 20px 0;
}

.value-total,
.value-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 0;
}

.value-offer .highlight {
    color: var(--orange);
    font-size: 1.3rem;
}

.cta-section {
    text-align: center;
}

.cta-button-ultra {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button-ultra:hover::before { left: 100%; }

.cta-button-ultra:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 152, 0, 0.6);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.button-text {
    text-align: left;
}

.main-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.sub-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.badge i {
    color: var(--secondary-green);
}

.guarantee-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-badge i {
    font-size: 2rem;
    color: var(--primary-green);
}

.guarantee-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.guarantee-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-timer {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
}

.timer-content {
    text-align: center;
}

.timer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.time-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.time-separator {
    font-size: 2rem;
    color: var(--gold);
    display: flex;
    align-items: center;
}

/* ===== FOOTER ===== */
.footer-modern {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-green);
}

.brand-logo i {
    font-size: 2rem;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    color: var(--secondary-green);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: white;
}

.footer-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
}

.footer-cta h3 {
    color: var(--secondary-green);
    margin-bottom: 10px;
}

.footer-cta p {
    color: var(--gray);
    margin-bottom: 25px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.contact-button:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-cta-btn {
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: var(--transition);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .hero-modern .container,
    .solucao-content,
    .showcase-content,
    .footer-content,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-feature {
        background: var(--primary-green);
        color: white;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .processo-timeline::before {
        left: 30px;
    }
    
    .processo-step:nth-child(odd) .step-content,
    .processo-step:nth-child(even) .step-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .step-number {
        left: 30px;
        transform: translate(-50%, -50%);
    }
    
    .processo-step:nth-child(odd) .step-content::after,
    .processo-step:nth-child(even) .step-content::after {
        left: -15px;
        right: auto;
        border-right: 15px solid white;
        border-left: none;
    }
    
    .trust-indicators,
    .security-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }
    
    .timer {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: static;
        margin-bottom: 20px;
        width: 100% !important;
    }
    
    .hero-visual {
        height: auto;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .current-price {
        flex-direction: column;
        gap: 0;
    }
}

/* ===== TRANSFORMAÇÃO VERDE SECTION ===== */
.transformacao-verde {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
}

.transformacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transformacao-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    line-height: 1.2;
}

.transformacao-text .lead {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
}

.transformacao-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.1rem;
    color: var(--dark);
    border-left: 3px solid var(--accent-green);
    padding-left: 20px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(139, 195, 74, 0.1);
    border-radius: 0 10px 10px 0;
    padding-right: 15px;
}

.benefit-item i {
    color: var(--accent-green);
    font-size: 1.4rem;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.impact-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
    border: 2px solid var(--light-green);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.impact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.impact-header i {
    font-size: 1.5rem;
    color: var(--secondary-green);
}

.transformation-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.estado-inicial,
.estado-final {
    text-align: center;
}

.estado-inicial span,
.estado-final span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empty-space {
    width: 80px;
    height: 80px;
    border: 3px dashed var(--gray);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    position: relative;
}

.empty-space::after {
    content: '?';
    font-size: 2rem;
    color: var(--gray);
    font-weight: bold;
}

.green-paradise {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: grow 3s ease-in-out infinite;
}

.green-paradise::after {
    content: '🌱';
    font-size: 2rem;
    animation: bounce-green 2s ease-in-out infinite;
}

@keyframes grow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes bounce-green {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.seta-transformacao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    animation: pulse-green 2s infinite;
}

/* Responsividade */
@media (max-width: 1024px) {
    .transformacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .transformacao-text h2 {
        font-size: 2.2rem;
    }
    
    .transformation-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .seta-transformacao {
        transform: rotate(90deg);
    }
    
    .benefit-item {
        font-size: 1rem;
    }
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== FOOTER SIMPLIFICADO ===== */
.footer-simple {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-simple .footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-simple .footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-green);
    margin-bottom: 30px;
}

.footer-simple .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-simple .social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer-simple .social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.footer-simple .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-simple .copyright {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsividade para footer simplificado */
@media (max-width: 768px) {
    .footer-simple .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-simple .social-links {
        gap: 15px;
    }
    
    .footer-simple .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ===== FOOTER COMPACTO ===== */
.footer-compact {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    text-align: center;
}

.footer-compact .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-compact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin: 0;
}

.footer-compact .social-links {
    display: flex;
    gap: 15px;
}

.footer-compact .social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-compact .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.footer-compact .copyright {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-compact {
        padding: 30px 0;
    }
    
    .footer-compact h3 {
        font-size: 1.3rem;
    }
    
    .footer-compact .social-links {
        gap: 12px;
    }
    
    .footer-compact .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ===== BOTÃO DE ÚLTIMA CHAMADA ===== */
.final-cta-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
}

.urgency-message {
    margin-bottom: 25px;
}

.urgency-message p {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.final-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    color: white;
    text-decoration: none;
    padding: 20px 35px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    border: 3px solid #FFD23F;
}

.final-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.final-cta-button:hover::before { left: 100%; }

.final-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

.final-cta-button .button-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.final-cta-button .button-text {
    text-align: left;
}

.final-cta-button .main-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta-button .sub-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.final-guarantee i {
    font-size: 1.1rem;
}