/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cores Principais - Tema Corporativo Premium */
:root {
    --primary-blue: #1B4D7A;
    --primary-green: #1B4D7A;
    --dark-blue: #0F3D5E;
    --dark-green: #0F3D5E;
    --light-gray: #f8fafc;
    --dark-gray: #3B82F6;
    --border-color: #e2e8f0;
    --yoga-purple: #1B4D7A;
    --yoga-sage: #3B82F6;
    --yoga-lavender: #3B82F6;
    --yoga-coral: #F97316;
    --yoga-gold: #F97316;
    --cta-orange: #F97316;
    --cta-orange-dark: #EA580C;
    --corp-blue: #1B4D7A;
    --corp-blue-mid: #123B5D;
    --corp-blue-dark: #0F3D5E;
    --text-primary: #3B82F6;
    --text-secondary: #374151;
    --text-muted: #6B7280;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulseSoft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Topo com Aviso de Urgência */
.urgency-banner {
    background: linear-gradient(135deg, #CC0000 0%, #FF1111 100%);
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.5);
}

.urgency-text {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.urgency-text .date-highlight {
    color: #FBBF24;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    background: white;
    color: var(--dark-gray);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333;
}

.vsl-wrapper {
    width: 100%;
    max-width: 380px;
    margin: 24px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.vsl-wrapper wistia-player {
    width: 100%;
    display: block;
}

.amostra-preview {
    margin: 24px 0;
    text-align: center;
}

.amostra-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 14px;
}

.amostra-images {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
}

.amostra-img {
    width: 48%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    object-fit: cover;
}

.number-500 {
    color: #FBBF24;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.hero-blue {
    color: #0066FF;
    font-weight: 800;
}

.kw {
    color: #FBBF24;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(251, 191, 36, 0.5);
    text-underline-offset: 3px;
}

.bonus-text {
    color: #FBBF24;
    font-weight: 800;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse-glow {
    from { 
        filter: brightness(1) saturate(1); 
        transform: scale(1);
    }
    to { 
        filter: brightness(1.2) saturate(1.3); 
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    max-width: 350px;
    margin: 0 auto 40px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

.video-card-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-poster {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-card video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    background: #000;
}

.video-card iframe {
    border-radius: 12px;
}

.video-wrapper {
    max-width: 350px;
    margin: 0 auto 30px auto;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.video-card-inner:hover .play-overlay {
    background: rgba(0,0,0,0.4);
}

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.play-icon i {
    color: #1a1a2e;
    font-size: 24px;
    margin-left: 4px;
}

.video-card-inner:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.play-overlay.hidden {
    display: none;
}

.video-caption {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 15px;
    margin-bottom: 0;
}

.cta-button {
    background: linear-gradient(135deg, #0066FF 0%, #00AAFF 50%, #66CCFF 100%);
    color: white;
    border: none;
    padding: 24px 60px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: pulseSoft 2s ease-in-out infinite;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0052CC 0%, #0066FF 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
}

.hero-cta {
    margin-bottom: 40px;
    animation: bounce 2s infinite;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Seções Gerais */
.about-author {
    padding: 50px 0;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #0066FF, #66CCFF, #00AAFF, #3399FF);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Seção de Identificação */
.identification-section {
    background: #f0f5ff;
    padding: 80px 0;
    border-top: 4px solid #0066FF;
}

.identification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.identification-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0,102,255,0.08);
    border-left: 4px solid #0066FF;
}

.id-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.identification-item p {
    color: #333;
    font-size: 0.97rem;
    line-height: 1.55;
    margin: 0;
}

.identification-cta {
    text-align: center;
}

.id-transition {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0066FF;
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .identification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .identification-grid {
        grid-template-columns: 1fr;
    }
}

/* O Que Você Vai Receber */
.what-you-get {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0066FF 0%, #3399FF 50%, #66CCFF 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    line-height: 1;
    position: relative;
}

.benefit-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.benefit-card:hover h3 {
    color: #0066FF;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Benefícios Exclusivos */
.exclusive-benefits {
    padding: 100px 0;
    background: #ffffff;
    box-shadow: none;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.exclusive-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.exclusive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.exclusive-icon {
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0066FF 0%, #00AAFF 50%, #66CCFF 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    line-height: 1;
    position: relative;
}

.exclusive-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.exclusive-card:hover .exclusive-icon {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.exclusive-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.exclusive-card:hover h3 {
    color: #0066FF;
}

.exclusive-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Bônus Section */
.bonus-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-card {
    background: linear-gradient(180deg, #E6F2FF 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
    border: 2px solid #00AAFF;
    transition: all 0.3s ease;
    overflow: visible;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.25);
    border-color: #0066FF;
}

.bonus-value {
    color: #EF4444;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 10px 0;
    display: block;
}

.bonus-icon {
    font-size: 3rem;
    color: #0066FF;
    margin-bottom: 20px;
}

.bonus-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-image img {
    max-width: 100%;
    width: 672px;
    height: 504px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bonus-image img:hover {
    transform: scale(1.05);
}

.bonus-image-large img {
    width: 900px;
    height: 675px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .bonus-image-large img {
        width: 650px;
        height: 488px;
    }
}

@media (max-width: 480px) {
    .bonus-image-large img {
        width: 340px;
        height: 255px;
    }
}

@media (max-width: 768px) {
    .bonus-image img {
        width: 504px;
        height: 378px;
    }
}

@media (max-width: 480px) {
    .bonus-image img {
        width: 336px;
        height: 252px;
    }
}

.bonus-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px;
    color: var(--dark-gray);
}

.bonus-card p {
    color: #666;
    line-height: 1.6;
}

.total-bonus {
    text-align: center;
    padding: 18px 25px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.total-bonus h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.total-bonus-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #0EA5E9 0%, #3B82F6 100%);
    color: white;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 24px auto 0;
    box-shadow: 0 4px 18px rgba(14, 165, 233, 0.45);
    max-width: 420px;
    width: fit-content;
}

.total-bonus-label {
    color: white;
    font-weight: 600;
}

.total-bonus-strike {
    text-decoration: line-through;
    opacity: 0.75;
    font-weight: 600;
}

.total-bonus-free {
    background: transparent;
    color: #FBBF24;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1rem;
}

.free {
    font-weight: 700;
    font-size: 1.2rem;
    color: #FBBF24;
    margin-left: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Cronômetro dos Planos */
.plans-timer {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #0052CC 0%, #0066FF 40%, #00AAFF 100%);
    border-radius: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5);
}

.plans-timer .timer-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.countdown-plans {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
}

.countdown-plans .time-unit {
    background: white;
    padding: 15px 12px;
    border-radius: 12px;
    min-width: 75px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border: none;
    transition: transform 0.2s ease;
}

.countdown-plans .time-unit:hover {
    transform: translateY(-2px);
}

.countdown-plans .time-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0066FF;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-plans .time-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Planos de Preços */
.pricing-plans {
    background: var(--light-gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.plans-grid.single-plan {
    grid-template-columns: 1fr;
    max-width: 480px;
}

.plans-grid.two-plans {
    grid-template-columns: 1fr 1fr;
    max-width: 880px;
    align-items: start;
}

.plans-grid.three-plans {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    align-items: start;
}

.plan-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.plan-card.popular {
    border: 3px solid #0066FF;
    transform: none;
    background: linear-gradient(180deg, #E6F2FF 0%, #ffffff 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0066FF 0%, #3399FF 50%, #66CCFF 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.plan-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
    text-align: center;
}

.price {
    margin-bottom: 10px;
    text-align: center;
}

.savings-amount {
    font-size: 0.9rem;
    color: #0066FF;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    display: block;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: #0066FF;
    display: block;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.plan-features i {
    color: #0066FF;
    font-size: 1.1rem;
}

.plan-features .fa-star {
    color: #FBBF24;
}

.plan-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulseSoft 2s ease-in-out infinite;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.plan-card.basic {
    border: 2px solid #D1D5DB;
    background: #fff;
}

.basic-button {
    background: linear-gradient(135deg, #0066FF 0%, #00AAFF 50%, #66CCFF 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.45);
}

.basic-button:hover {
    background: linear-gradient(135deg, #0052CC 0%, #0066FF 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
}

.basic-clean {
    background: #fff;
    border: 2px solid #3B82F6 !important;
    box-shadow: 0 4px 32px rgba(37,99,235,0.13) !important;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
}

.basic-clean h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 16px;
}

.basic-old-price {
    display: block;
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1rem;
    margin-bottom: 4px;
}

.basic-new-price {
    display: block;
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    color: #3B82F6 !important;
    line-height: 1.1;
    margin-bottom: 4px;
}

.basic-savings {
    display: block;
    color: #3B82F6 !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 20px;
}

.basic-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.basic-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
}

.basic-check-item .fa-check {
    color: #3B82F6;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.basic-no-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #EF4444;
    font-weight: 600;
}

.basic-no-item .fa-times {
    color: #EF4444;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.basic-button-clean {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.2s ease;
}

.basic-button-clean:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.5);
    color: white;
}

.premium-clean,
.plan-card.premium.premium-clean,
.plan-card.popular.premium-clean {
    background: #ffffff !important;
    border: 2px solid #3B82F6 !important;
    box-shadow: 0 4px 32px rgba(37,99,235,0.13) !important;
    border-radius: 16px !important;
    padding: 32px 28px !important;
    text-align: center;
    position: relative;
}

.premium-clean h3,
.plan-card.premium.premium-clean h3 {
    color: #3B82F6 !important;
}

.premium-clean .prem-check-item,
.premium-clean .prem-star-item,
.premium-clean .prem-bonus-item,
.premium-clean li {
    color: unset;
    border-bottom-color: #F3F4F6 !important;
}

.premium-clean .new-price,
.premium-clean .premium-new-price {
    color: #3B82F6 !important;
}

.premium-clean .old-price,
.premium-clean .premium-old-price {
    color: #9CA3AF !important;
}

.premium-clean .period {
    color: #6B7280 !important;
}

.premium-badge-top {
    display: inline-block;
    background: #3B82F6;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 14px;
}

.premium-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #3B82F6;
    margin-bottom: 16px;
}

.premium-old-price {
    display: block;
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1rem;
    margin-bottom: 4px;
}

.premium-new-price {
    display: block;
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    color: #3B82F6 !important;
    line-height: 1.1;
    margin-bottom: 4px;
}

.premium-savings {
    display: block;
    color: #3B82F6;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 16px;
}

.premium-social-box {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 20px;
    font-weight: 500;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.prem-star-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #3B82F6;
    font-weight: 700;
    border-bottom: 1px solid #F3F4F6;
}

.prem-star-item .fa-star {
    color: #FBBF24;
    flex-shrink: 0;
}

.prem-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
}

.prem-check-item .fa-check {
    color: #3B82F6;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.prem-bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #3B82F6;
    font-weight: 600;
    border-bottom: 1px solid #F3F4F6;
}

.prem-bonus-item .fa-gift {
    color: #3B82F6;
    flex-shrink: 0;
}

.premium-button-clean {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.2s ease;
}

.premium-button-clean:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.5);
    color: white;
}

.premium-button {
    background: linear-gradient(135deg, #0066FF 0%, #00AAFF 50%, #66CCFF 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.45);
}

.premium-button:hover {
    background: linear-gradient(135deg, #0052CC 0%, #0066FF 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5);
}

/* Premium Social Proof */
.premium-social-proof {
    background: #f8f9fa;
    color: #6c757d;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.purchase-count {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    color: #6c757d;
}

/* Bonus Items */
.bonus-item {
    color: #0066FF !important;
}

.bonus-item i {
    color: #0066FF !important;
}

/* No Benefit Item */
.no-benefit {
    color: #DC2626 !important;
}

.no-benefit i {
    color: #DC2626 !important;
}

/* Gold Item */
.gold-item {
    color: #0066FF !important;
    font-weight: 600;
}

.gold-item i {
    color: #0066FF !important;
}

/* Depoimentos */
.testimonials {
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #0066FF;
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
    font-size: 0.97rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF, #3399FF);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0066FF;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,102,255,0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author strong {
    display: block;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.82rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FBBF24;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0066FF;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.testimonial-photo:hover {
    transform: scale(1.1);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-gray);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Sobre o Autor */
.about-author {
    background: white;
    color: var(--dark-gray);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.author-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding: 25px;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 35px rgba(0, 102, 255, 0.15);
    background: linear-gradient(180deg, #E6F2FF 0%, #ffffff 100%);
    border: 2px solid #0066FF;
}

.author-info {
    flex: 2;
    order: 1;
}

.author-image {
    flex: 1;
    text-align: center;
    order: 2;
}

.author-info h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 700;
}

.author-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

.author-title {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 500;
}

.author-stats {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 8px 6px;
    background: var(--light-gray);
    border-radius: 8px;
    min-width: 70px;
    flex: 1;
    max-width: 110px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-green);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


.author-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.author-image img:hover {
    transform: scale(1.05);
}

.author-info p {
    color: #555;
    line-height: 1.4;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 12px;
}

/* FAQ */
.faq {
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

/* Garantia */
.guarantee {
    background: white;
    color: var(--dark-gray);
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    border: 3px solid #A855F7;
}

.guarantee-badge {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
}

.guarantee-badge i {
    font-size: 180px;
    color: #8B5CF6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.3));
}

.badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    margin-top: -5px;
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.badge-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.guarantee-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.guarantee h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-weight: 700;
}

.guarantee p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.6;
}

.guarantee-cta {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    animation: pulseSoft 2s ease-in-out infinite;
}

.guarantee-cta:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
}

/* Seção Final de Urgência */
.final-urgency {
    background: white;
    color: var(--dark-gray);
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.final-urgency h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #EF4444 0%, #F97316 50%, #FB7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-urgency p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #555;
    font-weight: 500;
}

.urgency-timer {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timer-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 0;
}

.time-unit {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.15);
    border: 2px solid #F97316;
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.2);
}

.time-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #EF4444;
    background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta {
    background: linear-gradient(135deg, #EF4444 0%, #F97316 50%, #FBBF24 100%);
    color: white;
    font-size: 1.4rem;
    padding: 22px 60px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    animation: pulseSoft 2s ease-in-out infinite;
}

.final-cta:hover {
    background: linear-gradient(135deg, #DC2626 0%, #EA580C 100%);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(239, 68, 68, 0.55);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
    
    .what-you-get,
    .exclusive-benefits {
        padding: 70px 0;
    }
    
    .benefits-grid,
    .exclusive-grid {
        gap: 25px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .benefit-card,
    .exclusive-card {
        padding: 35px 25px;
    }
    
    .benefit-icon,
    .exclusive-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin: 0 auto 20px;
    }
    
    .benefit-card h3,
    .exclusive-card h3 {
        font-size: 1.15rem;
    }
    
    .benefit-card p,
    .exclusive-card p {
        font-size: 0.9rem;
    }
    
    .plans-grid,
    .plans-grid.two-plans {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .author-content {
        flex-direction: column;
        gap: 25px;
        padding: 25px 15px;
        text-align: center;
    }
    
    .author-info {
        order: 1;
        flex: none;
    }
    
    .author-image {
        order: 2;
        flex: none;
    }
    
    .author-info h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }
    
    .author-info h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .author-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .author-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: 15px 0;
    }
    
    .stat {
        min-width: 100px;
        max-width: 140px;
        padding: 10px 8px;
    }
    
    .stat strong {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .stat span {
        font-size: 0.7rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
    }
    
    .author-info p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-top: 12px;
    }
    
    .author-image img {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }
    
    .hero-badges {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .plans-timer {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .plans-timer .timer-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .countdown-plans {
        gap: 12px;
    }
    
    .countdown-plans .time-unit {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .countdown-plans .time-number {
        font-size: 1.5rem;
    }
    
    .countdown-plans .time-label {
        font-size: 0.7rem;
    }
    
    .testimonial-photo {
        width: 50px;
        height: 50px;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .final-cta {
        font-size: 1.1rem;
        padding: 18px 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .what-you-get,
    .exclusive-benefits {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 35px;
    }
    
    .benefits-grid,
    .exclusive-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card,
    .exclusive-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .benefit-icon,
    .exclusive-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin: 0 auto 18px;
    }
    
    .benefit-card h3,
    .exclusive-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .benefit-card p,
    .exclusive-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    
    .bonus-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .author-image img {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .bonus-card h3 {
        font-size: 1.1rem;
    }
    
    .bonus-card p {
        font-size: 0.9rem;
    }
    
    .bonus-image img {
        width: 240px;
        height: 180px;
    }
    
    .plan-card h3 {
        font-size: 1.3rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .author-info h2 {
        font-size: 1.9rem;
    }
    
    .author-info h3 {
        font-size: 1.5rem;
    }
    
    .author-title {
        font-size: 1rem;
    }
    
    .stat {
        min-width: 100px;
        max-width: 140px;
    }
    
    .stat strong {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .stat span {
        font-size: 0.7rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
    }
    
    .testimonial-photo {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efeitos visuais adicionais */
.benefit-card:nth-child(even) {
    animation-delay: 0.2s;
}

.exclusive-card:nth-child(even) {
    animation-delay: 0.2s;
}

.bonus-card:nth-child(even) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Animação de entrada para elementos visíveis */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sistema de Notificações */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 180px;
    pointer-events: none;
}

.notification {
    background: white;
    padding: 8px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    pointer-events: all;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 4.6s;
    border: 2px solid var(--primary-green);
    position: relative;
}



@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}


.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.notification-product {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.2;
}

.notification-location {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.2;
}

.notification-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 10px;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: auto;
        max-width: 280px;
    }

    .notification {
        padding: 8px 12px;
        border-radius: 10px;
        border-width: 1px;
    }

    .notification-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        margin-right: 8px;
        box-shadow: 0 1px 4px rgba(34, 197, 94, 0.25);
    }

    .notification-name {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .notification-product {
        font-size: 0.75rem;
    }

    .notification-location {
        font-size: 0.7rem;
    }

    .notification-content {
        gap: 1px;
    }
}

/* Pop-up de Upgrade Premium */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup-overlay.active {
    display: flex;
}

.popup-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-content {
    background: white;
    border-radius: 16px;
    padding: 20px 20px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.popup-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: bounce 1s ease infinite;
}

.popup-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 700;
}

.popup-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 12px;
}

.popup-subtitle strong {
    color: var(--primary-green);
    font-weight: 700;
}

.popup-price {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

.popup-old-price {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 5px;
}

.popup-new-price {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 5px;
}

.popup-save {
    font-size: 0.85rem;
    color: #e74c3c;
    font-weight: 600;
}

.popup-benefits {
    text-align: left;
    margin-bottom: 12px;
}

.popup-benefit {
    font-size: 0.9rem;
    color: #333;
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
}

.popup-benefit:last-child {
    border-bottom: none;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-card .popup-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.popup-card .popup-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.popup-card .popup-price {
    margin-bottom: 20px;
}

.popup-card .popup-old-price {
    font-size: 1rem;
    color: #999;
    margin-right: 10px;
}

.popup-card .popup-new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.popup-card .popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.popup-card .popup-benefits li {
    padding: 6px 0;
    color: #333;
    font-size: 0.95rem;
}

.popup-card .popup-benefits li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 10px;
}

.popup-card .popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.popup-btn-accept {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.popup-btn-accept:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.popup-btn-decline {
    background: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #ddd;
}

.popup-btn-decline:hover {
    color: #333;
    background: #f8f9fa;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 25px 20px;
        max-width: 340px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .popup-new-price {
        font-size: 1.8rem;
    }
}
/* Carrossel de Imagens */
.carousel-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-track-wrap {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #3B82F6;
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 950px;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 255, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 102, 255, 1);
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #0066FF;
}

@media (max-width: 768px) {
    .carousel-btn {
        font-size: 18px;
        padding: 10px 15px;
    }
    
    .carousel-slide img {
        max-height: 510px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        font-size: 16px;
        padding: 8px 12px;
    }
    
    .carousel-slide img {
        max-height: 408px;
    }
}

/* Estilos do Pop-up de Upgrade */
.upgrade-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.upgrade-popup.active {
    display: flex;
}

.upgrade-popup-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.upgrade-popup-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.upgrade-popup-card h2 {
    font-size: 28px;
    color: #3B82F6;
    margin-bottom: 20px;
}

.upgrade-offer {
    background: linear-gradient(135deg, #0066FF 0%, #00AAFF 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: white;
}

.upgrade-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
}

.upgrade-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.old-upgrade-price {
    font-size: 18px;
    opacity: 0.8;
}

.new-upgrade-price {
    font-size: 36px;
    font-weight: bold;
}

.upgrade-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 0;
}

.upgrade-features li {
    padding: 10px 0;
    color: #475569;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.upgrade-features li:last-child {
    border-bottom: none;
}

.upgrade-features i {
    color: #0066FF;
    margin-right: 10px;
    font-size: 16px;
}

.upgrade-button {
    display: inline-block;
    background: linear-gradient(135deg, #0066FF 0%, #00AAFF 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.upgrade-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.upgrade-button.alternative {
    background: transparent;
    color: #0066FF;
    border: 2px solid #0066FF;
    margin-top: 12px;
}

.upgrade-button.alternative:hover {
    background: #f0f7ff;
    box-shadow: 0 6px 15px rgba(0, 102, 255, 0.2);
}

.upgrade-guarantee {
    font-size: 13px;
    color: #64748b;
    margin-top: 15px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #3B82F6;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #0066FF;
}

@media (max-width: 600px) {
    .upgrade-popup-card {
        padding: 30px 20px;
    }
    
    .upgrade-popup-card h2 {
        font-size: 22px;
    }
    
    .new-upgrade-price {
        font-size: 28px;
    }
    
    .upgrade-button {
        width: 100%;
        padding: 12px 20px;
    }
    
    .popup-options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }
    
    .popup-option-card {
        padding: 15px;
    }
    
    .popup-new-price {
        font-size: 24px;
    }
}

/* ── CRO: Hero Microcopy ── */
.hero-microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    margin-top: 14px;
}
.hero-microcopy span {
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

/* ── CRO: Método Aula Pronta ── */
.mechanism-section {
    background: #F0F6FF;
    padding: 48px 0;
}
.mechanism-box {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 40px 48px;
    box-shadow: 0 4px 24px rgba(0,102,255,0.08);
    border-left: 5px solid #0066FF;
    text-align: center;
}
.mechanism-badge {
    display: inline-block;
    background: #0066FF;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.mechanism-box h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.mechanism-box p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
}
.mechanism-steps {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.mstep {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.mstep-num {
    width: 40px;
    height: 40px;
    background: #0066FF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.mstep p {
    margin: 0;
    font-size: 0.92rem;
    color: #333;
    text-align: center;
}

/* ── CRO: Plan Microcopy ── */
.plan-microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    justify-content: center;
    margin-top: 14px;
}
.plan-microcopy span {
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 600px) {
    .mechanism-box {
        padding: 28px 20px;
    }
    .mechanism-box h2 {
        font-size: 1.3rem;
    }
    .mechanism-steps {
        flex-direction: column;
        align-items: center;
    }
    .hero-microcopy {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
}

/* ── CTA Big ── */
.hero-cta-big {
    font-size: 1.6rem;
    padding: 28px 64px;
    box-shadow: 0 10px 40px rgba(0,102,255,0.55);
    letter-spacing: 0.5px;
}

/* ── Pricing Emotional Line ── */
.pricing-emotional-line {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0066FF;
    margin-bottom: 12px;
    margin-top: 0;
    text-decoration: none !important;
}

/* hide the decorative underline on the pricing section title so it doesn't overlap */
.pricing-plans .section-title::after {
    display: none;
}
.pricing-plans .section-title {
    margin-bottom: 16px;
}

/* ── Testimonial Highlight ── */
.testimonial-highlight {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0066FF;
    font-style: normal;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* ── Top Testimonial Bar ── */
.top-testimonial-bar {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
    border-top: 3px solid #0066FF;
    border-bottom: 3px solid #0066FF;
    padding: 24px 0;
}
.top-testimonial-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.top-stars {
    color: #FBBF24;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.top-testimonial-inner p {
    font-size: 1.05rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}
.top-author {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

/* ── Visual Proof Section ── */
.visual-proof-section {
    background: #f7f9fc;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
}
.section-subtitle-sm {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-top: -30px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.proof-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
}
.proof-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,102,255,0.15);
}
.proof-img {
    width: 100%;
    height: auto;
    display: block;
}
.proof-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}
.proof-badge {
    background: white;
    border: 2px solid #0066FF;
    color: #0066FF;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,102,255,0.1);
}

/* ── Bonus Free Seal & Value Row ── */
.bonus-free-seal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(34,197,94,0.4);
}
.bonus-value-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}
.bonus-old-value {
    color: #aaa;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: line-through;
}
.bonus-free-label {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ── Responsive: proof images ── */
@media (max-width: 640px) {
    .proof-images-grid {
        grid-template-columns: 1fr;
    }
    .top-testimonial-inner {
        flex-direction: column;
        gap: 8px;
    }
    .hero-cta-big {
        font-size: 1.2rem;
        padding: 20px 32px;
    }
}

/* ══════════════════════════════════════
   DARK THEME
══════════════════════════════════════ */
:root {
    --dk-bg:       #0d0f1a;
    --dk-surface:  #141829;
    --dk-card:     #1a1e30;
    --dk-card2:    #1f2438;
    --dk-border:   rgba(255,255,255,0.07);
    --dk-text:     #e8eaf0;
    --dk-muted:    #8892a4;
    --dk-blue:     #4da6ff;
    --dk-blue2:    #3390ee;
}

body {
    background: var(--dk-bg);
    color: var(--dk-text);
}

/* ── Sections ── */
section,
.hero,
.what-you-get,
.exclusive-bonuses,
.pricing-plans,
.testimonials-section,
.author-section,
.guarantee-section,
.faq-section,
.final-cta-section,
.top-testimonial-bar,
.visual-proof-section {
    background: var(--dk-bg) !important;
}

/* alternate sections slightly lighter */
.what-you-get,
.testimonials-section,
.faq-section {
    background: var(--dk-surface) !important;
}

/* ── Hero ── */
.hero::before { opacity: 0.04; }

.hero-title  { color: #ffffff !important; }
.hero-subtitle { color: var(--dk-muted) !important; }
.hero-subtitle strong { color: var(--dk-text) !important; }

.hero-blue { color: var(--dk-blue) !important; }

.hero-microcopy span { color: var(--dk-muted) !important; }
.hero-microcopy span::before { background: var(--dk-border) !important; }

/* ── Headings & text ── */
.section-title { color: #ffffff !important; }
.section-subtitle-sm { color: var(--dk-muted) !important; }
p { color: var(--dk-text); }

/* ── Top testimonial bar ── */
.top-testimonial-bar {
    background: var(--dk-surface) !important;
    border-bottom: 1px solid var(--dk-border) !important;
}
.top-testimonial-bar p,
.top-testimonial-bar strong { color: var(--dk-text) !important; }

/* ── Benefit cards ── */
.benefit-card {
    background: var(--dk-card) !important;
    border: 1px solid var(--dk-border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}
.benefit-card h3 { color: #ffffff !important; }
.benefit-card p  { color: var(--dk-muted) !important; }
.benefit-icon {
    color: #ffffff !important;
    background: linear-gradient(135deg, #1a56db 0%, #3B82F6 50%, #3b82f6 100%) !important;
    box-shadow: 0 6px 24px rgba(59,130,246,0.5) !important;
}

/* ── Bonus / Exclusive cards ── */
.exclusive-card,
.bonus-card {
    background: var(--dk-card) !important;
    border: 1px solid var(--dk-border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}
.exclusive-card h3,
.bonus-card h3,
.bonus-card-title { color: #ffffff !important; }
.exclusive-card p,
.bonus-card p,
.bonus-card-desc  { color: var(--dk-muted) !important; }

.bonus-free-seal { background: #10b981 !important; color: #fff !important; }
.bonus-value-row { color: var(--dk-muted) !important; }

/* ── Plan cards ── */
.plan-card,
.plan-card.basic,
.plan-card.popular,
.plan-card.premium {
    background: var(--dk-card) !important;
    border: 1px solid var(--dk-border) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}
.plan-card.popular,
.plan-card.premium.popular {
    background: var(--dk-card2) !important;
    border: 2px solid var(--dk-blue) !important;
}
.plan-card h3         { color: #ffffff !important; }
.new-price            { color: var(--dk-blue) !important; }
.old-price            { color: var(--dk-muted) !important; }
.period               { color: var(--dk-muted) !important; }
.savings-amount       { color: #4ade80 !important; background: rgba(74,222,128,0.12) !important; }
.plan-features li     { color: var(--dk-text) !important; border-bottom-color: var(--dk-border) !important; }
.plan-features li i.fa-check { color: var(--dk-blue) !important; }
.gold-item            { color: var(--dk-blue) !important; }
.bonus-item           { color: #fbbf24 !important; }
.plan-microcopy span  { color: var(--dk-muted) !important; }
.most-popular-badge   { background: var(--dk-blue) !important; color: #fff !important; }
.premium-social-proof p { color: var(--dk-muted) !important; }

/* ── Testimonial cards ── */
.testimonial-card {
    background: var(--dk-card) !important;
    border-left-color: var(--dk-blue) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}
.testimonial-text   { color: var(--dk-text) !important; }
.testimonial-highlight { color: var(--dk-blue) !important; }
.testimonial-author strong { color: #ffffff !important; }
.testimonial-author span   { color: var(--dk-muted) !important; }

/* ── Guarantee ── */
.guarantee-box,
.guarantee-card {
    background: var(--dk-card) !important;
    border-color: var(--dk-border) !important;
}
.guarantee-title { color: #ffffff !important; }
.guarantee-text  { color: var(--dk-muted) !important; }

/* ── Author ── */
.author-card,
.author-box {
    background: var(--dk-card) !important;
    border-color: var(--dk-border) !important;
}
.author-name { color: #ffffff !important; }
.author-bio,
.author-desc { color: var(--dk-muted) !important; }

/* ── FAQ ── */
.faq-item {
    background: var(--dk-card) !important;
    border-color: var(--dk-border) !important;
}
.faq-question { color: #ffffff !important; }
.faq-answer   { color: var(--dk-muted) !important; }

/* ── Proof badges ── */
.proof-badge {
    background: var(--dk-card) !important;
    border-color: var(--dk-blue) !important;
    color: var(--dk-blue) !important;
}

/* ── Misc text ── */
h1, h2, h3, h4 { color: #ffffff; }
.pricing-emotional-line { color: var(--dk-blue) !important; }
label, li, span { color: inherit; }

/* ══════════════════════════════════════
   CORPORATE THEME — NEW SECTIONS
══════════════════════════════════════ */

/* ── Hero Badge Top ── */
.hero-badge-top {
    display: inline-block;
    background: linear-gradient(135deg, #3B82F6, #3B82F6);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

/* ── Identification Section (Dores) ── */
.identification-section {
    background: #f0f5ff !important;
    padding: 80px 0;
    border-top: 4px solid #3B82F6;
}
.identification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.identification-item {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.08);
    border-left: 4px solid #3B82F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.identification-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.14);
}
.id-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}
.identification-item p {
    color: #333;
    font-size: 0.97rem;
    line-height: 1.55;
    margin: 0;
}
.identification-cta {
    text-align: center;
    margin-top: 10px;
}
.id-transition {
    font-size: 1.15rem;
    font-weight: 600;
    color: #3B82F6;
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .identification-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .identification-grid { grid-template-columns: 1fr; }
}

/* ── Solution Section ── */
.solution-section {
    background: #ffffff !important;
    padding: 100px 0;
}
.solution-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 50px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.solution-card {
    background: #f8faff;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37,99,235,0.06);
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.12);
    border-color: #93c5fd;
}
.solution-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #3B82F6, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
    transition: all 0.3s ease;
}
.solution-card:hover .solution-icon {
    transform: scale(1.08);
}
.solution-icon i {
    font-size: 1.8rem;
    color: #fff;
}
.solution-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.solution-card p {
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ── Visual Proof Section ── */
.visual-proof-section {
    background: #f7f9fc !important;
    padding: 100px 0;
    border-top: 1px solid #e2e8f0;
}
.visual-proof-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.05rem;
    margin-top: -40px;
    margin-bottom: 50px;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 60px;
}
.category-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}
.category-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.category-icon i {
    font-size: 1.4rem;
    color: #fff;
}
.category-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}
.proof-mockup {
    display: flex;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.mockup-document {
    flex: 1;
    min-width: 300px;
    max-width: 430px;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(37,99,235,0.12);
    border: 1.5px solid #dbeafe;
}
.mockup-doc-2 {
    border-color: #d1fae5;
    box-shadow: 0 8px 30px rgba(16,185,129,0.1);
}
.doc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f0f4f8;
    padding-bottom: 16px;
}
.doc-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3B82F6, #3B82F6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.doc-logo i { color: #fff; font-size: 1.1rem; }
.doc-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.doc-cat {
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 2px;
}
.doc-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.doc-tag {
    background: #eff6ff;
    color: #3B82F6;
    font-size: 0.77rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.doc-body { display: flex; flex-direction: column; gap: 10px; }
.doc-row {
    font-size: 0.88rem;
    color: #374151;
    background: #f8faff;
    border-radius: 8px;
    padding: 8px 12px;
    line-height: 1.45;
}
.doc-label {
    font-weight: 700;
    color: #3B82F6;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .proof-mockup { flex-direction: column; }
    .mockup-document { min-width: unset; }
}

/* ── Bonus Icon (without images) ── */
.bonus-icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3B82F6, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 16px;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.bonus-icon-large {
    font-size: 2.2rem;
    color: #fff;
}

/* ── Guarantee Checkmarks ── */
.guarantee-checkmarks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
    margin-top: 24px;
}
.guarantee-checkmarks span {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

/* ── Testimonial Avatar (initials) ── */
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #3B82F6);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid #3B82F6;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

/* ══════════════════════════════════════
   FORCE LIGHT MODE
══════════════════════════════════════ */
body { background: #ffffff !important; color: #3B82F6 !important; }

/* Hero */
.hero { background: #ffffff !important; color: #3B82F6 !important; }
.hero-title { color: #3B82F6 !important; }
.hero-subtitle { color: #555 !important; }
.hero-subtitle strong { color: #111111 !important; }
.hero-blue { color: #3B82F6 !important; }
.hero-microcopy span { color: #6B7280 !important; }

/* Section titles */
.section-title { color: #3B82F6 !important; }
h1, h2, h3, h4 { color: #3B82F6; }
p { color: #555; }

/* Section backgrounds */
.what-you-get { background: linear-gradient(180deg,#ffffff 0%,#f8f9fa 100%) !important; }
.testimonials-section { background: #f8f9fa !important; }
.text-testimonials-section { background: #ffffff !important; }
.faq { background: #f8fafc !important; }
.guarantee { background: #ffffff !important; }
.top-testimonial-bar { background: linear-gradient(135deg,#f0f5ff 0%,#e8f0fe 100%) !important; }
.top-testimonial-bar p, .top-author { color: #333 !important; }

/* Identification section */
.identification-section { background: #f0f5ff !important; }
.identification-item { background: #ffffff !important; }
.identification-item p { color: #333 !important; }
.id-transition { color: #3B82F6 !important; }

/* Solution section */
.solution-section { background: #ffffff !important; }
.solution-card { background: #f8faff !important; border-color: #dbeafe !important; }
.solution-card h3 { color: #1a1a1a !important; }
.solution-card p { color: #6b7280 !important; }
.solution-subtitle { color: #555 !important; }

/* Visual proof */
.visual-proof-section { background: #f7f9fc !important; }
.visual-proof-subtitle { color: #555 !important; }
.category-card { background: #ffffff !important; border-color: #e2e8f0 !important; }
.category-card span { color: #374151 !important; }
.mockup-document { background: #ffffff !important; border-color: #dbeafe !important; }
.doc-title { color: #1a1a1a !important; }
.doc-cat { color: #6b7280 !important; }
.doc-row { background: #f8faff !important; color: #374151 !important; }

/* Benefit & exclusive cards */
.benefit-card { background: #ffffff !important; border-color: rgba(0,0,0,0.06) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important; }
.benefit-card h3 { color: #1a1a1a !important; }
.benefit-card p { color: #6b7280 !important; }
.exclusive-card { background: #ffffff !important; }
.exclusive-card h3 { color: #1a1a1a !important; }
.exclusive-card p { color: #6b7280 !important; }

/* Bonus section */
.bonus-section { background: linear-gradient(135deg,#f8f9fa,#e9ecef) !important; }
.bonus-card { background: linear-gradient(180deg,#E6F2FF 0%,#ffffff 100%) !important; border-color: #00AAFF !important; box-shadow: 0 4px 15px rgba(0,102,255,0.15) !important; }
.bonus-card h3 { color: #3B82F6 !important; }
.bonus-card p { color: #666 !important; }

/* Plan cards */
.plan-card { background: #ffffff !important; border-color: #e9ecef !important; box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important; }
.plan-card.popular, .plan-card.premium.popular { background: linear-gradient(180deg,#E6F2FF 0%,#ffffff 100%) !important; border-color: #0066FF !important; }
.plan-card h3 { color: #3B82F6 !important; }
.new-price { color: #0066FF !important; }
.old-price { color: #999 !important; }
.period { color: #666 !important; }
.savings-amount { color: #0066FF !important; background: transparent !important; }
.plan-features li { color: #333 !important; }
.plan-microcopy span { color: #666 !important; }
.premium-social-proof p { color: #6c757d !important; }

/* Testimonials */
.testimonial-card { background: #ffffff !important; border-left-color: #0066FF !important; box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important; }
.testimonial-text { color: #444 !important; }
.testimonial-highlight { color: #0066FF !important; }
.testimonial-author strong { color: #1a1a2e !important; }
.testimonial-author span { color: #888 !important; }

/* FAQ */
.faq-item { background: #ffffff !important; border-color: rgba(0,0,0,0.1) !important; }
.faq-question { background: #ffffff !important; }
.faq-question h3 { color: #3B82F6 !important; }
.faq-answer p { color: #666 !important; }

/* Guarantee */
.guarantee-content { background: linear-gradient(180deg,#faf5ff 0%,#ffffff 100%) !important; border-color: #A855F7 !important; box-shadow: 0 10px 40px rgba(139,92,246,0.15) !important; }
.guarantee h2 { color: #3B82F6 !important; }
.guarantee p { color: #555 !important; }
.guarantee-checkmarks span { color: #374151 !important; }

/* Pricing section */
.pricing-plans { background: #f8fafc !important; }

/* Footer */
.footer { background: #0F3D5E !important; color: #fff !important; }
.footer p { color: rgba(255,255,255,0.75) !important; }

/* ══════════════════════════════════════
   CORPORATE IDENTITY — PREMIUM OVERRIDE
   Azul petróleo + Laranja CTA
══════════════════════════════════════ */

/* ── Global text reset ── */
body { font-family: 'Inter', Arial, sans-serif; color: #3B82F6 !important; }
h1, h2, h3, h4 { color: #3B82F6 !important; }
p { color: #555555; }

/* ── Urgency banner — green gradient ── */
.urgency-banner {
    background: linear-gradient(90deg, #B91C1C 0%, #DC2626 50%, #EF4444 100%) !important;
    box-shadow: 0 4px 20px rgba(220,38,38,0.4) !important;
}
.urgency-text { color: #ffffff !important; }
.date-highlight { color: #FCD34D !important; }

/* ── Section title ── */
.section-title::after { background: #3B82F6 !important; display: block !important; }
.section-title { color: #3B82F6 !important; }

/* ── Hero ── */
.hero-title { color: #3B82F6 !important; font-weight: 800 !important; }
.hero-blue { color: #3B82F6 !important; }
.hero-subtitle { color: #555555 !important; }
.hero-subtitle strong { color: #111111 !important; }
.hero-microcopy span { color: #6B7280 !important; }
.hero-badge-top {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8) !important;
    box-shadow: 0 4px 16px rgba(37,99,235,0.35) !important;
}

/* ── Top testimonial bar ── */
.top-testimonial-bar {
    background: #EFF6FF !important;
    border-top: 3px solid #3B82F6 !important;
    border-bottom: 3px solid #3B82F6 !important;
}
.top-testimonial-inner p { color: #3B82F6 !important; }
.top-author { color: #6B7280 !important; }
.top-stars { color: #F59E0B !important; }

/* ── CTA BUTTONS → GREEN ── */
.cta-button,
.hero-cta,
.guarantee-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    box-shadow: 0 6px 24px rgba(16,185,129,0.45) !important;
    color: #ffffff !important;
    border: none !important;
}
.cta-button:hover,
.hero-cta:hover,
.guarantee-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 10px 32px rgba(16,185,129,0.6) !important;
    transform: translateY(-3px) !important;
}

/* ── Plan buttons → AZUL HOSPITALAR ── */
.plan-button,
.basic-button,
.premium-button,
.upgrade-button {
    background: linear-gradient(135deg, #1B4D7A 0%, #0F3D5E 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(27,77,122,0.45) !important;
    border: none !important;
}
.plan-button:hover,
.basic-button:hover,
.premium-button:hover,
.upgrade-button:hover {
    background: linear-gradient(135deg, #0F3D5E 0%, #0a2d47 100%) !important;
    box-shadow: 0 10px 28px rgba(27,77,122,0.6) !important;
    transform: translateY(-3px) !important;
}
.plan-card.basic .plan-button {
    background: #089e6f !important;
    box-shadow: 0 6px 20px rgba(8,158,111,0.45) !important;
}
.plan-card.basic .plan-button:hover {
    background: #067a56 !important;
    box-shadow: 0 10px 28px rgba(8,158,111,0.6) !important;
}
.basic-button-clean,
.premium-button-clean {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(16,185,129,0.4) !important;
    border: none !important;
}
.basic-button-clean:hover,
.premium-button-clean:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 10px 28px rgba(16,185,129,0.5) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* ── Section backgrounds alternating ── */
.what-you-get { background: #F9FAFB !important; }
.solution-section { background: #ffffff !important; }
.visual-proof-section { background: #F3F4F6 !important; }
.bonus-section { background: #F9FAFB !important; }
.pricing-plans { background: #ffffff !important; }
.testimonials-section { background: #F3F4F6 !important; }
.faq { background: #ffffff !important; }
.guarantee { background: #F9FAFB !important; }
.identification-section { background: #EFF6FF !important; border-top: 4px solid #1B4D7A !important; }

/* ── Benefit icons → blue ── */
.benefit-icon {
    background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%) !important;
    box-shadow: 0 6px 20px rgba(37,99,235,0.35) !important;
    color: #ffffff !important;
}
.benefit-card:hover .benefit-icon {
    box-shadow: 0 8px 28px rgba(37,99,235,0.5) !important;
}
.benefit-card h3 { color: #3B82F6 !important; }
.benefit-card:hover h3 { color: #3B82F6 !important; }
.benefit-card p { color: #6B7280 !important; }

/* ── Benefit card hover border ── */
.benefit-card {
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
}
.benefit-card:hover {
    border-color: #93C5FD !important;
    box-shadow: 0 8px 28px rgba(27,77,122,0.1) !important;
}

/* ── Solution icons ── */
.solution-icon {
    background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%) !important;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3) !important;
}
.solution-card {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}
.solution-card:hover {
    border-color: #93C5FD !important;
    box-shadow: 0 10px 30px rgba(27,77,122,0.12) !important;
}
.solution-card h3 { color: #3B82F6 !important; }
.solution-card p { color: #6B7280 !important; }
.solution-subtitle { color: #6B7280 !important; }

/* ── Benefits grid 4 (2x2) ── */
.benefits-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 560px) {
    .benefits-grid-4 { grid-template-columns: 1fr !important; }
}

/* ── Receive cards (O que você vai receber) ── */
.receive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .receive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .receive-grid { grid-template-columns: 1fr; }
}
.receive-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    padding: 36px 28px 32px;
    text-align: center;
    border: 1px solid #F0F0F0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.receive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(27,77,122,0.13);
    border-color: #BFDBFE;
}
.receive-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B4D7A 0%, #3B82F6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 6px 20px rgba(27,77,122,0.28);
}
.receive-icon i {
    font-size: 28px;
    color: #ffffff;
}
.receive-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 10px;
    line-height: 1.35;
}
.receive-card p {
    font-size: 0.92rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* ── Identification cards ── */
.identification-item {
    border-left: 4px solid #1B4D7A !important;
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(27,77,122,0.08) !important;
}
.identification-item p { color: #374151 !important; }
.id-transition { color: #1B4D7A !important; }

/* ── Category cards ── */
.category-card {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
.category-card:hover {
    box-shadow: 0 8px 24px rgba(27,77,122,0.12) !important;
    border-color: #93C5FD !important;
}
.category-card span { color: #374151 !important; }

/* ── Mockup documents ── */
.mockup-document {
    background: #ffffff !important;
    border: 1.5px solid #DBEAFE !important;
    box-shadow: 0 8px 30px rgba(27,77,122,0.1) !important;
}
.doc-label { color: #1B4D7A !important; }
.doc-row { background: #F0F7FF !important; color: #374151 !important; }
.doc-tag { background: #EFF6FF !important; color: #1B4D7A !important; }
.doc-logo { background: linear-gradient(135deg, #0F3D5E, #1B4D7A) !important; }

/* ── Bonus cards ── */
.bonus-section { background: #F0F7FF !important; }
.bonus-card {
    background: #ffffff !important;
    border: 1.5px solid #DBEAFE !important;
    box-shadow: 0 4px 16px rgba(27,77,122,0.1) !important;
}
.bonus-card:hover {
    box-shadow: 0 12px 36px rgba(27,77,122,0.18) !important;
    border-color: #93C5FD !important;
}
.bonus-card h3 { color: #3B82F6 !important; }
.bonus-card p { color: #6B7280 !important; }
.bonus-icon-wrap {
    background: linear-gradient(135deg, #0F3D5E, #1B4D7A) !important;
    box-shadow: 0 6px 20px rgba(27,77,122,0.3) !important;
}
.total-bonus {
    background: linear-gradient(135deg, #0F3D5E 0%, #1B4D7A 100%) !important;
    box-shadow: 0 4px 20px rgba(27,77,122,0.4) !important;
}

/* ── Plan cards ── */
.plan-card {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
    border-radius: 16px !important;
}
.plan-card.popular,
.plan-card.premium.popular {
    background: #ffffff !important;
    border: 2px solid #1B4D7A !important;
    box-shadow: 0 8px 32px rgba(27,77,122,0.15) !important;
}
.popular-badge {
    background: linear-gradient(135deg, #0F3D5E, #1B4D7A) !important;
    box-shadow: 0 4px 16px rgba(27,77,122,0.4) !important;
}
.plan-card h3 { color: #3B82F6 !important; }
.new-price { color: #1B4D7A !important; }
.savings-amount { color: #1B4D7A !important; }
.plan-features li { color: #374151 !important; }
.plan-features i.fa-check { color: #1B4D7A !important; }
.gold-item { color: #1B4D7A !important; }
.gold-item i { color: #F59E0B !important; }
.bonus-item { color: #0F3D5E !important; }
.bonus-item i { color: #F97316 !important; }
.plans-timer {
    background: linear-gradient(135deg, #0F3D5E 0%, #1B4D7A 40%, #3B82F6 100%) !important;
    box-shadow: 0 6px 25px rgba(27,77,122,0.5) !important;
}
.countdown-plans .time-number { color: #1B4D7A !important; }
.pricing-emotional-line { color: #1B4D7A !important; }

/* ── Testimonial cards ── */
.testimonial-card {
    background: #ffffff !important;
    border-left: 4px solid #1B4D7A !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
    border-radius: 14px !important;
}
.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(27,77,122,0.1) !important;
    transform: translateY(-4px) !important;
}
.testimonial-text { color: #374151 !important; }
.testimonial-highlight { color: #1B4D7A !important; }
.testimonial-stars { color: #F59E0B !important; }
.testimonial-author strong { color: #3B82F6 !important; }
.testimonial-author span { color: #9CA3AF !important; }
.testimonial-avatar {
    background: linear-gradient(135deg, #0F3D5E, #1B4D7A) !important;
    border-color: #1B4D7A !important;
}

/* ── Testimonial real photos ── */
.testimonial-photo {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center top !important;
    flex-shrink: 0 !important;
    border: 3px solid #1B4D7A !important;
    box-shadow: 0 2px 10px rgba(27,77,122,0.25) !important;
    display: block !important;
}

/* ── FAQ ── */
.faq-item {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}
.faq-question h3 { color: #3B82F6 !important; }
.faq-question i { color: #1B4D7A !important; }
.faq-question:hover { background: #F9FAFB !important; }
.faq-answer p { color: #6B7280 !important; }

/* ── Guarantee ── */
.guarantee-content {
    background: #ffffff !important;
    border: 2px solid #1B4D7A !important;
    box-shadow: 0 10px 40px rgba(27,77,122,0.12) !important;
}
.guarantee h2 { color: #3B82F6 !important; }
.guarantee p { color: #374151 !important; }
.guarantee-badge i { color: #1B4D7A !important; filter: drop-shadow(0 4px 15px rgba(27,77,122,0.3)) !important; }
.guarantee-checkmarks span { color: #374151 !important; }

/* ── Plan microcopy & notification ── */
.plan-microcopy span { color: #6B7280 !important; }
.notification { border-color: #1B4D7A !important; }
.notification-icon { background: linear-gradient(135deg, #0F3D5E, #1B4D7A) !important; box-shadow: 0 3px 10px rgba(27,77,122,0.4) !important; }

/* ── Upgrade popup ── */
.upgrade-offer { background: linear-gradient(135deg, #0F3D5E 0%, #1B4D7A 100%) !important; }

/* ── Section title underline (identification) ── */
.identification-section .section-title::after { background: linear-gradient(90deg, #1B4D7A, #3B82F6) !important; }

/* ── Visual proof subtitle ── */
.visual-proof-subtitle { color: #6B7280 !important; }

/* ── Total bonus box → white ── */
.total-bonus {
    background: #ffffff !important;
    border: 2px solid #DBEAFE !important;
    box-shadow: 0 4px 16px rgba(27,77,122,0.1) !important;
    color: #3B82F6 !important;
}
.total-bonus h3 { color: #3B82F6 !important; }
.total-bonus p { color: #6B7280 !important; }
.total-bonus p span { color: #6B7280 !important; }

/* ── New bonus section styles ── */
.bonus-section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 1.05rem;
    margin-bottom: 40px;
}
.bonus-grid-new {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    margin-bottom: 36px;
}
@media (max-width: 640px) {
    .bonus-grid-new { grid-template-columns: 1fr !important; }
}
.bonus-card-new {
    background: #ffffff;
    border-radius: 18px;
    border: 1.5px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bonus-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(27,77,122,0.12);
    border-color: #BFDBFE;
}
.bonus-seal-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #16A34A;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.bonus-icon-new {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B4D7A 0%, #3B82F6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(27,77,122,0.28);
}
.bonus-icon-new i {
    font-size: 26px;
    color: #ffffff;
}
.bonus-value-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}
.bonus-was {
    font-size: 0.85rem;
    color: #9CA3AF;
    text-decoration: line-through;
}
.bonus-free-tag {
    background: #EFF6FF;
    color: #1B4D7A;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #BFDBFE;
}
.bonus-title-new {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #3B82F6 !important;
    margin-bottom: 10px !important;
    line-height: 1.35 !important;
}
.bonus-desc-new {
    font-size: 0.9rem !important;
    color: #6B7280 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ── Basic plan card → white ── */
.plan-card.basic {
    background: #ffffff !important;
    border: 2px solid #3B82F6 !important;
    box-shadow: 0 4px 32px rgba(37,99,235,0.13) !important;
    color: #3B82F6 !important;
}
.plan-card.basic h3 { color: #3B82F6 !important; }
.plan-card.basic .new-price { color: #3B82F6 !important; }
.plan-card.basic .period { color: #6B7280 !important; }
.plan-card.basic .plan-features li { color: #374151 !important; }

/* ══════════════════════════════════════
   PAIN SECTION — IDENTIFICAÇÃO DE DORES
══════════════════════════════════════ */
.identification-section {
    background: #EFF6FF !important;
    border-top: 4px solid #1B4D7A !important;
    border-bottom: 4px solid #1B4D7A !important;
    padding: 72px 0 !important;
}
.identification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0 36px;
}
@media (max-width: 900px) {
    .identification-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .identification-grid { grid-template-columns: 1fr; }
}
.identification-item {
    background: #ffffff !important;
    border-radius: 14px !important;
    border-left: 5px solid #1B4D7A !important;
    box-shadow: 0 3px 16px rgba(27,77,122,0.09) !important;
    padding: 24px 22px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.identification-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 28px rgba(27,77,122,0.15) !important;
}
.identification-item p {
    color: #374151 !important;
    font-size: 0.97rem !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}
.id-icon {
    font-size: 1.4rem !important;
    color: #1B4D7A !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}
.id-transition {
    text-align: center !important;
    font-size: 1.1rem !important;
    color: #374151 !important;
    margin-top: 8px !important;
}
.id-transition strong {
    color: #1B4D7A !important;
}

/* ── Receive grid → 2×2 on desktop ── */
.receive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 560px) {
    .receive-grid { grid-template-columns: 1fr !important; }
}

/* ── Green accent on bonus seal & checkmarks ── */
.bonus-seal-new { background: #059669 !important; }
.guarantee-checkmarks span { color: #1B4D7A !important; font-weight: 700 !important; }
.hero-microcopy span { color: #374151 !important; }

/* ── Bonus section background — soft blue-grey ── */
.bonus-section { background: #F0F7FF !important; }
.bonus-card-new {
    background: #ffffff !important;
    border: 1.5px solid #DBEAFE !important;
}
.bonus-card-new:hover { border-color: #1B4D7A !important; }

/* ── Bonus card images — mobile-first ── */
.bonus-img-wrap {
    width: 200px;
    height: 200px;
    margin: 4px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bonus-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(27,77,122,0.12));
    transition: transform 0.3s ease;
}
.bonus-card-new:hover .bonus-img {
    transform: scale(1.04);
}

/* Certificate — full image visible, no crop */
.bonus-img-wrap--cert {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0,0,0,0.14);
    background: #ffffff;
    padding: 0;
    box-sizing: border-box;
}
.bonus-img--cert {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* Mobile: single column, bigger cards */
@media (max-width: 640px) {
    .bonus-card-new {
        padding: 32px 24px 28px !important;
        text-align: center;
    }
    .bonus-img-wrap {
        width: 220px;
        height: 220px;
    }
    .bonus-img {
        width: 220px;
        height: 220px;
    }
    .bonus-img-wrap--cert {
        padding: 10px;
        border-radius: 14px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.16);
    }
    .bonus-title-new {
        font-size: 1.15rem !important;
    }
    .bonus-desc-new {
        font-size: 0.95rem !important;
    }
}

/* Desktop: 2 cols, slightly smaller images */
@media (min-width: 641px) {
    .bonus-img-wrap {
        width: 150px;
        height: 150px;
    }
    .bonus-img {
        width: 150px;
        height: 150px;
    }
    .bonus-img-wrap--cert {
        width: 100%;
        height: auto;
    }
}

/* ══════════════════════════════════════
   MOBILE PRIORITY — FULL PAGE POLISH
   Breakpoint: ≤480px (smartphone)
══════════════════════════════════════ */
@media (max-width: 480px) {

    /* ── Container padding ── */
    .container { padding: 0 18px !important; }

    /* ── Urgency banner ── */
    .urgency-banner { padding: 10px 12px !important; }
    .urgency-text { font-size: 0.78rem !important; line-height: 1.45 !important; }

    /* ── Hero ── */
    .hero { padding: 40px 0 32px !important; }
    .hero-badge-top { font-size: 0.72rem !important; padding: 8px 18px !important; margin-bottom: 18px !important; }
    .hero-title { font-size: 1.9rem !important; line-height: 1.25 !important; margin-bottom: 16px !important; }
    .hero-subtitle { font-size: 1rem !important; line-height: 1.6 !important; }
    .hero-cta-big { font-size: 1rem !important; padding: 16px 22px !important; }
    .hero-microcopy { gap: 8px !important; margin-top: 16px !important; }
    .hero-microcopy span { font-size: 0.82rem !important; }

    /* ── Section titles ── */
    .section-title { font-size: 1.55rem !important; line-height: 1.3 !important; margin-bottom: 28px !important; }

    /* ── Identification / pain section ── */
    .identification-section { padding: 48px 0 !important; }
    .identification-grid { gap: 14px !important; margin: 28px 0 24px !important; }
    .identification-item { padding: 18px 16px !important; gap: 12px !important; }
    .identification-item p { font-size: 0.92rem !important; }
    .id-icon { font-size: 1.2rem !important; }
    .id-transition { font-size: 1rem !important; }

    /* ── Receive cards ── */
    .solution-section { padding: 48px 0 !important; }
    .receive-grid { gap: 16px !important; margin-top: 28px !important; }
    .receive-card { padding: 28px 20px 24px !important; border-radius: 14px !important; }
    .receive-icon { width: 60px !important; height: 60px !important; margin-bottom: 16px !important; }
    .receive-icon i { font-size: 22px !important; }
    .receive-card h3 { font-size: 1rem !important; }
    .receive-card p { font-size: 0.88rem !important; }

    /* ── Benefits ── */
    .what-you-get { padding: 48px 0 !important; }
    .benefits-grid-4 { gap: 14px !important; }
    .benefit-card { padding: 24px 18px !important; }
    .benefit-icon { width: 58px !important; height: 58px !important; font-size: 1.6rem !important; margin-bottom: 14px !important; }
    .benefit-card h3 { font-size: 1rem !important; }
    .benefit-card p { font-size: 0.88rem !important; }

    /* ── Bonus section ── */
    .bonus-section { padding: 48px 0 !important; }
    .bonus-section-subtitle { font-size: 0.95rem !important; margin-bottom: 28px !important; }
    .bonus-grid-new { gap: 20px !important; }
    .bonus-card-new { padding: 28px 20px 24px !important; border-radius: 16px !important; }
    .bonus-seal-new { font-size: 0.65rem !important; padding: 3px 9px !important; top: 12px !important; right: 12px !important; }
    .bonus-img-wrap { width: 180px !important; height: 180px !important; margin-bottom: 16px !important; }
    .bonus-img { width: 180px !important; height: 180px !important; }
    .bonus-value-new { margin-bottom: 10px !important; }
    .bonus-title-new { font-size: 1.08rem !important; }
    .bonus-desc-new { font-size: 0.88rem !important; }
    .total-bonus { padding: 22px 18px !important; margin-top: 8px !important; }
    .total-bonus h3 { font-size: 1rem !important; }

    /* ── Pricing ── */
    .pricing-plans { padding: 48px 0 !important; }
    .plans-grid.two-plans { gap: 20px !important; }
    .plans-grid.three-plans { grid-template-columns: 1fr !important; max-width: 480px !important; }
    .plan-card { padding: 28px 20px !important; border-radius: 14px !important; }
    .plan-card h3 { font-size: 1.15rem !important; }
    .new-price { font-size: 2rem !important; }
    .plan-button { font-size: 0.9rem !important; padding: 14px 16px !important; }
    .plan-features li { font-size: 0.88rem !important; }
    .plan-microcopy { flex-direction: column !important; gap: 6px !important; align-items: center !important; }
    .plan-microcopy span { font-size: 0.8rem !important; }

    /* ── Testimonials ── */
    .testimonials-section { padding: 48px 0 !important; }
    .testimonials-grid { gap: 16px !important; }
    .testimonial-card { padding: 24px 18px !important; }
    .testimonial-text { font-size: 0.92rem !important; }
    .testimonial-avatar { width: 44px !important; height: 44px !important; font-size: 0.8rem !important; }

    /* ── FAQ ── */
    .faq { padding: 48px 0 !important; }
    .faq-list { gap: 10px !important; }
    .faq-question h3 { font-size: 0.95rem !important; }
    .faq-answer p { font-size: 0.88rem !important; }

    /* ── Guarantee ── */
    .guarantee { padding: 48px 0 !important; }
    .guarantee-content { padding: 32px 20px !important; }
    .guarantee h2 { font-size: 1.4rem !important; }
    .guarantee p { font-size: 0.92rem !important; }
    .guarantee-cta { font-size: 0.92rem !important; padding: 15px 18px !important; }
    .guarantee-checkmarks { gap: 10px 16px !important; }
    .guarantee-checkmarks span { font-size: 0.88rem !important; }

    /* ── Footer ── */
    .footer { padding: 24px 0 !important; }
    .footer p { font-size: 0.8rem !important; }
}

/* ══════════════════════════════════════
   TÍTULOS ESPECÍFICOS — PRETO
══════════════════════════════════════ */
.solution-section .section-title { color: #111111 !important; }
.bonus-section .section-title { color: #111111 !important; }

/* ══════════════════════════════════════
   SEÇÃO "O QUE MUDA NAS SUAS AULAS" — VERMELHO
══════════════════════════════════════ */
.what-you-get .section-title { color: #111111 !important; }
.what-you-get .benefit-icon {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%) !important;
    box-shadow: 0 6px 20px rgba(220,38,38,0.35) !important;
    color: #ffffff !important;
}
.what-you-get .benefit-card h3 { color: #DC2626 !important; }
.what-you-get .benefit-card:hover h3 { color: #B91C1C !important; }
.what-you-get .benefit-card p { color: #555555 !important; }
.what-you-get .benefit-card { border-color: #FECACA !important; }
.what-you-get .benefit-card:hover {
    border-color: #FCA5A5 !important;
    box-shadow: 0 8px 28px rgba(220,38,38,0.12) !important;
}

/* ===== UPSELL POPUP ===== */
.upsell-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}
.upsell-modal {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px 28px;
    max-width: 600px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.3s ease;
    margin: auto;
}
.upsell-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
}
.upsell-close:hover { color: #333; }
.upsell-badge {
    display: inline-block;
    background: #EF4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.upsell-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}
.upsell-subtitle {
    font-size: 1rem;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.6;
}
.upsell-compare {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.upsell-basic-col, .upsell-premium-col {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px 20px;
    flex: 1;
    min-width: 180px;
    text-align: left;
}
.upsell-premium-col {
    background: #EFF6FF;
    border: 2px solid #3B82F6;
}
.upsell-arrow {
    font-size: 1.8rem;
    color: #3B82F6;
    align-self: center;
    font-weight: 700;
}
.upsell-plan-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}
.upsell-premium-label { color: #3B82F6 !important; }
.upsell-old-price {
    display: block;
    font-size: 0.85rem;
    color: #aaa;
    text-decoration: line-through;
}
.upsell-plan-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}
.upsell-premium-price { color: #3B82F6 !important; }
.upsell-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: #444;
}
.upsell-features li { margin-bottom: 5px; }
.upsell-features .fa-check { color: #10B981; margin-right: 6px; }
.upsell-features .fa-gift { color: #3B82F6; margin-right: 6px; }
.upsell-no { color: #EF4444 !important; margin-right: 6px; }
.upsell-btn-premium {
    display: block;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 24px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.upsell-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59,130,246,0.4);
    color: #fff;
}
.upsell-btn-basic {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
}
.upsell-btn-basic:hover { color: #444; }
@media (max-width: 500px) {
    .upsell-modal { padding: 28px 18px 22px; }
    .upsell-title { font-size: 1.25rem; }
    .upsell-arrow { display: none; }
    .upsell-compare { flex-direction: column; }
}

/* Video depoimento background */
#video-depoimento {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Depoimentos em texto */
.text-testimonials-section {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 60px 0;
}
.text-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.text-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.text-testimonial-stars {
    color: #FBBF24;
    font-size: 18px;
    letter-spacing: 2px;
}
.text-testimonial-text {
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}
.text-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}
.text-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #E5E7EB;
}
.text-testimonial-author strong {
    display: block;
    color: #111827;
    font-size: 15px;
}
.text-testimonial-author span {
    color: #6B7280;
    font-size: 13px;
}
@media (max-width: 768px) {
    .text-testimonials-grid {
        grid-template-columns: 1fr;
    }
}
