/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-serenity: #6A8CAF;
    --lavanda-suave: #B8A8D9;
    --dourado-acolhedor: #D8B26E;
    --branco: #FFFFFF;
    --cinza-claro: #ECEEF2;
    --cinza-texto: #A5A5A5;
    --sombra-suave: 0 10px 40px rgba(106, 140, 175, 0.1);
    --sombra-media: 0 15px 50px rgba(106, 140, 175, 0.15);
    --sombra-forte: 0 20px 60px rgba(106, 140, 175, 0.2);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    background: var(--branco);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* BARRA DE URGÊNCIA FIXA */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.urgency-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

.urgency-bar-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--branco);
    font-size: 1rem;
    font-weight: 600;
}

.urgency-bar-icon {
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

.urgency-bar-icon svg {
    color: var(--branco);
}

.urgency-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 2px;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 60px 20px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--azul-serenity) 0%, 
        var(--lavanda-suave) 50%, 
        var(--dourado-acolhedor) 100%);
    opacity: 0.08;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 168, 217, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(106, 140, 175, 0.2));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--azul-serenity);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cinza-texto);
    margin-bottom: 40px;
    line-height: 1.6;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(216, 178, 110, 0.15), rgba(184, 168, 217, 0.15));
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 2px solid var(--dourado-acolhedor);
}

.urgency-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dourado-acolhedor);
}

.bonus-text {
    margin-top: 12px;
    font-size: 1rem;
    color: var(--dourado-acolhedor);
    font-weight: 600;
}

/* BOTÕES */
.cta-button {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--sombra-suave);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--azul-serenity), var(--lavanda-suave));
    color: var(--branco);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-forte);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--lavanda-suave), var(--dourado-acolhedor));
    color: var(--branco);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-forte);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 22px 60px;
}

.price-text {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--cinza-texto);
    font-weight: 400;
}

/* CONTAINER E SEÇÕES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--azul-serenity);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

/* POR QUE ISSO É PARA VOCÊ */
.why-section {
    background: linear-gradient(180deg, var(--branco) 0%, var(--cinza-claro) 100%);
}

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

.why-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--sombra-suave);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(106, 140, 175, 0.1);
}

/* Faz o 4º card ocupar toda a largura no desktop */
.why-card:nth-child(4) {
    grid-column: 1 / -1;
    max-width: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-media);
}

.why-icon {
    margin-bottom: 24px;
    display: inline-flex;
    padding: 16px;
    background: linear-gradient(135deg, rgba(106, 140, 175, 0.1), rgba(184, 168, 217, 0.1));
    border-radius: 50%;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 1rem;
    color: var(--cinza-texto);
    line-height: 1.6;
}

/* O QUE VOCÊ RECEBE */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}

.benefit-card {
    background: var(--branco);
    padding: 50px 35px;
    border-radius: 28px;
    box-shadow: var(--sombra-suave);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 168, 217, 0.15);
}

/* Cards 1-3 ocupam 2 colunas cada (3 cards em linha) */
.benefit-card:nth-child(1) { grid-column: 1 / 3; }
.benefit-card:nth-child(2) { grid-column: 3 / 5; }
.benefit-card:nth-child(3) { grid-column: 5 / 7; }

/* Cards 4-5 ocupam 2 colunas cada, centralizados */
.benefit-card:nth-child(4) { grid-column: 2 / 4; }
.benefit-card:nth-child(5) { grid-column: 4 / 6; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--azul-serenity), var(--lavanda-suave), var(--dourado-acolhedor));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-forte);
}

.benefit-icon {
    margin-bottom: 28px;
    display: inline-flex;
    padding: 20px;
    background: linear-gradient(135deg, rgba(106, 140, 175, 0.08), rgba(184, 168, 217, 0.08));
    border-radius: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 1.05rem;
    color: var(--cinza-texto);
    line-height: 1.7;
}

/* EXEMPLO DE MENSAGEM */
.example-section {
    background: linear-gradient(180deg, var(--cinza-claro) 0%, var(--branco) 100%);
}

.example-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--branco);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--sombra-media);
    position: relative;
    overflow: hidden;
}

.example-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 168, 217, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.example-content {
    position: relative;
    z-index: 1;
}

.example-verse {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--azul-serenity);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 12px;
}

.example-reference {
    font-size: 1rem;
    color: var(--lavanda-suave);
    font-weight: 600;
    margin-bottom: 30px;
}

.example-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--lavanda-suave), var(--dourado-acolhedor));
    margin: 30px auto;
    border-radius: 2px;
}

.example-message {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 24px;
}

.example-signature {
    font-size: 1.1rem;
    color: var(--cinza-texto);
    font-style: italic;
    text-align: right;
}

/* DEPOIMENTOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.testimonial-card {
    background: var(--branco);
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: var(--sombra-suave);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(184, 168, 217, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-media);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lavanda-suave), var(--dourado-acolhedor));
    color: var(--branco);
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(184, 168, 217, 0.3);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--azul-serenity);
    font-weight: 600;
}

/* FAQ */
.faq-section {
    background: linear-gradient(180deg, var(--branco) 0%, var(--cinza-claro) 100%);
}

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

.faq-item {
    background: var(--branco);
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    border: 1px solid rgba(106, 140, 175, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--azul-serenity);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(106, 140, 175, 0.03);
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--lavanda-suave);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 24px;
}

.faq-answer p {
    font-size: 1.05rem;
    color: var(--cinza-texto);
    line-height: 1.7;
}

/* O QUE VOCÊ PERDE */
.losing-section {
    background: linear-gradient(180deg, var(--cinza-claro) 0%, var(--branco) 100%);
}

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

.losing-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--sombra-suave);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.losing-card:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

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

.losing-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 16px;
}

.losing-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.losing-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.losing-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-bottom: 32px;
}

.losing-timer {
    margin-top: 16px;
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
}

.losing-timer strong {
    font-size: 1.3rem;
    font-weight: 900;
}

/* ÚLTIMA CHAMADA / URGÊNCIA */
.urgency-section {
    background: linear-gradient(135deg, var(--azul-serenity), var(--lavanda-suave));
    padding: 80px 0;
}

.urgency-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--branco);
    padding: 60px 50px;
    border-radius: 32px;
    box-shadow: var(--sombra-forte);
    text-align: center;
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-serenity);
    margin-bottom: 24px;
    line-height: 1.3;
}

.urgency-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.urgency-benefits {
    margin: 40px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.urgency-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--lavanda-suave), var(--dourado-acolhedor));
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.urgency-final {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dourado-acolhedor);
    margin-top: 32px;
    line-height: 1.6;
}

/* FECHAMENTO */
.closing-section {
    background: linear-gradient(135deg, 
        rgba(106, 140, 175, 0.08) 0%, 
        rgba(184, 168, 217, 0.08) 50%, 
        rgba(216, 178, 110, 0.08) 100%);
    text-align: center;
}

.closing-content {
    max-width: 700px;
    margin: 0 auto;
}

.closing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--azul-serenity);
    margin-bottom: 24px;
    line-height: 1.3;
}

.closing-text {
    font-size: 1.35rem;
    color: var(--cinza-texto);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* FOOTER */
.footer {
    background: var(--azul-serenity);
    color: var(--branco);
    padding: 50px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* ANIMAÇÕES */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }

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

.section-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    section.hero {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero {
        min-height: 100vh !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 80px 20px 80px 20px !important;
        margin-top: 0 !important;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .urgency-badge {
        display: none !important;
    }
    
    .urgency-bar {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Remove posicionamento customizado no mobile/tablet */
    .why-card:nth-child(4),
    .benefit-card:nth-child(1),
    .benefit-card:nth-child(2),
    .benefit-card:nth-child(3),
    .benefit-card:nth-child(4),
    .benefit-card:nth-child(5) {
        grid-column: auto;
    }
    
    .example-card {
        padding: 40px 30px;
    }
    
    .example-verse {
        font-size: 1.2rem;
    }
    
    .closing-title {
        font-size: 2rem;
    }
    
    .closing-text {
        font-size: 1.15rem;
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    section {
        padding: 60px 0;
    }
    
    section.hero {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero {
        min-height: 100vh !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 60px 20px 60px 20px !important;
        margin-top: 0 !important;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .urgency-badge {
        display: none !important;
    }
    
    .urgency-bar {
        display: none !important;
    }
    
    .logo-container {
        margin-top: 0 !important;
        margin-bottom: 30px;
    }
    
    .logo {
        max-width: 140px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .why-card,
    .benefit-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .example-card {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
}

/* ===== NOVAS SEÇÕES ===== */

/* COMPARAÇÃO DE PREÇOS */
/* EXPLICAÇÃO DO CHAT */
.chat-explanation-section {
    background: linear-gradient(180deg, rgba(184, 168, 217, 0.05) 0%, var(--branco) 100%);
    padding: 80px 0;
}

.chat-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cinza-texto);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.chat-explanation-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--branco);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--sombra-media);
    border: 2px solid var(--lavanda-suave);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.chat-explanation-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--azul-serenity);
    margin-bottom: 20px;
    line-height: 1.3;
}

.chat-explanation-content p {
    font-size: 1.1rem;
    color: var(--cinza-texto);
    line-height: 1.8;
    margin-bottom: 20px;
}

.chat-explanation-content strong {
    color: var(--azul-serenity);
    font-weight: 600;
}

.chat-features-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.chat-features-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.chat-features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--dourado-acolhedor);
    font-size: 1.3rem;
    font-weight: 700;
}

.chat-analogy {
    background: linear-gradient(135deg, rgba(184, 168, 217, 0.1), rgba(216, 178, 110, 0.1));
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--dourado-acolhedor);
    margin: 30px 0;
}

.analogy-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--azul-serenity);
    line-height: 1.7;
    margin: 0;
}

.chat-guarantee {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dourado-acolhedor);
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(216, 178, 110, 0.1);
    border-radius: 12px;
}

.chat-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-illustration svg {
    filter: drop-shadow(0 10px 30px rgba(106, 140, 175, 0.2));
}

/* INVESTIMENTO SIMPLES */
.simple-pricing-section {
    background: linear-gradient(135deg, var(--azul-serenity), var(--lavanda-suave));
    padding: 100px 0;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--branco);
    margin: 16px auto 50px;
    max-width: 600px;
}

.simple-pricing-section .section-title {
    color: var(--branco);
}

.pricing-card-simple {
    max-width: 800px;
    margin: 0 auto;
    background: var(--branco);
    padding: 60px 50px;
    border-radius: 32px;
    box-shadow: var(--sombra-forte);
}

.pricing-value {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--cinza-claro);
}

.pricing-value h3 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--azul-serenity);
    margin-bottom: 12px;
}

.pricing-value h3 span {
    font-size: 1.8rem;
    font-weight: 500;
    color: #666;
}

.pricing-daily {
    font-size: 1.3rem;
    color: var(--dourado-acolhedor);
    font-weight: 600;
}

.pricing-includes {
    margin-bottom: 40px;
}

.pricing-includes h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azul-serenity);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-list li {
    padding: 14px 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid var(--cinza-claro);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list .bonus-highlight {
    color: var(--dourado-acolhedor);
    font-weight: 600;
}

.pricing-list .guarantee-highlight {
    color: var(--azul-serenity);
    font-weight: 600;
}

.pricing-comparison {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(184, 168, 217, 0.1), rgba(216, 178, 110, 0.1));
    border-radius: 16px;
    margin-bottom: 40px;
}

.comparison-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--azul-serenity);
    line-height: 1.7;
    margin: 0;
}

.pricing-note {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-top: 16px;
    font-style: italic;
}

/* COMPATIBILIDADE COM CÓDIGO ANTIGO */
.price-comparison-section {
    background: linear-gradient(180deg, var(--cinza-claro) 0%, var(--branco) 100%);
    padding: 80px 0;
}

.price-comparison-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--branco);
    padding: 50px;
    border-radius: 32px;
    box-shadow: var(--sombra-forte);
    border: 3px solid #e74c3c;
}

.price-comparison-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.price-comparison-title span {
    color: #c0392b;
    font-weight: 900;
}

.price-comparison-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
}

.price-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.price-column {
    background: var(--cinza-claro);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    border: 3px solid transparent;
}

.price-today {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
    border-color: #27ae60;
}

.price-tomorrow {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border-color: #e74c3c;
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: var(--branco);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-badge-expensive {
    background: #e74c3c;
}

.price-column h3 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin: 30px 0 24px;
}

.price-today h3 {
    color: #27ae60;
}

.price-tomorrow h3 {
    color: #e74c3c;
}

.price-column h3 span {
    font-size: 1.5rem;
    font-weight: 500;
    color: #666;
}

.price-benefits {
    list-style: none;
    margin-bottom: 24px;
}

.price-benefits li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-benefits li:last-child {
    border-bottom: none;
}

.price-benefits .bonus-highlight {
    color: #27ae60;
    font-weight: 600;
}

.price-benefits .removed {
    color: #e74c3c;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-total {
    text-align: center;
    font-size: 1.2rem;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    margin-top: 20px;
}

.price-total strong {
    font-size: 1.4rem;
    font-weight: 700;
}

.price-comparison-footer {
    text-align: center;
}

.price-difference {
    font-size: 1.3rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.6;
}

.price-difference strong {
    font-size: 1.6rem;
    font-weight: 900;
}

.scarcity-notice {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(211, 84, 0, 0.15));
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid #e67e22;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d35400;
}

.scarcity-icon {
    display: flex;
    align-items: center;
}

.scarcity-icon svg {
    color: #d35400;
}

/* BÔNUS ESPECIAL */
.bonus-section {
    background: linear-gradient(180deg, 
        var(--branco) 0%, 
        rgba(216, 178, 110, 0.05) 50%, 
        var(--branco) 100%);
}

.bonus-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-subtitle {
    font-size: 1.2rem;
    color: var(--cinza-texto);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.bonus-card {
    background: var(--branco);
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: var(--sombra-suave);
    border: 2px solid var(--dourado-acolhedor);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-forte);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--dourado-acolhedor), rgba(216, 178, 110, 0.8));
    color: var(--branco);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.bonus-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-bottom: 16px;
    line-height: 1.3;
}

.bonus-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dourado-acolhedor);
    margin-top: 20px;
}

.bonus-total {
    text-align: center;
    background: linear-gradient(135deg, rgba(216, 178, 110, 0.1), rgba(184, 168, 217, 0.1));
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.bonus-total-text {
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
}

.bonus-total-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dourado-acolhedor);
}

.bonus-total-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-top: 8px;
}

/* DEPOIMENTOS EM VÍDEO */
.video-testimonials-section {
    background: linear-gradient(180deg, var(--branco) 0%, var(--cinza-claro) 100%);
    padding: 100px 0;
}

.video-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cinza-texto);
    margin-bottom: 60px;
    line-height: 1.6;
}

.video-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
    padding: 0 60px;
}

.video-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.video-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.video-card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(106, 140, 175, 0.1), rgba(184, 168, 217, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid var(--lavanda-suave);
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-instructions {
    font-size: 1rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-bottom: 8px;
}

.video-tip {
    font-size: 0.85rem;
    color: var(--cinza-texto);
}

.video-author {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--azul-serenity);
    text-align: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--branco);
    border: 2px solid var(--lavanda-suave);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--lavanda-suave);
}

.carousel-arrow:hover {
    background: var(--lavanda-suave);
    color: var(--branco);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--sombra-media);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

/* CAROUSEL DOTS - Indicadores de slide */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cinza-claro);
    border: 2px solid var(--lavanda-suave);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--lavanda-suave);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--azul-serenity);
}

/* CAROUSEL INSTRUCTION - Texto de instrução */
.carousel-instruction {
    display: none; /* Escondido no desktop */
    text-align: center;
    font-size: 0.85rem;
    color: var(--cinza-texto);
    margin-top: 15px;
    font-style: italic;
}

/* PLATFORM VIDEO SECTION */
.platform-video-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--branco) 0%, rgba(184, 168, 217, 0.05) 100%);
}

.platform-video-section .section-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cinza-texto);
    text-align: center;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
    position: relative;
    padding-bottom: 20px;
}

.platform-video-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--lavanda-suave), var(--dourado-acolhedor));
    border-radius: 10px;
}

.platform-intro-text {
    font-size: 1.15rem;
    color: var(--cinza-texto);
    text-align: center;
    max-width: 720px;
    margin: 40px auto 30px;
    line-height: 1.8;
    font-weight: 400;
    padding: 0 20px;
}

.video-container {
    margin: 60px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(106, 140, 175, 0.2);
    background: var(--branco);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

/* Botão de play customizado */
.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.custom-play-button .play-btn-circle {
    width: 80px;
    height: 80px;
    background: rgba(106, 140, 175, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(106, 140, 175, 0.4);
    transition: all 0.3s ease;
}

.custom-play-button:hover .play-btn-circle {
    transform: scale(1.1);
    background: rgba(106, 140, 175, 1);
    box-shadow: 0 12px 32px rgba(106, 140, 175, 0.5);
}

.custom-play-button svg {
    width: 32px;
    height: 32px;
    fill: white;
    margin-left: 4px; /* Ajuste visual do ícone de play */
}

.custom-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper.playing .custom-play-button {
    opacity: 0;
    pointer-events: none;
}

/* Texto "aperte para assistir" */
.play-text {
    color: #6a8caf;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    display: block;
}

/* Texto no vídeo principal */
.custom-play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.custom-play-button .play-text {
    font-size: 1rem;
    margin-top: 0;
}

/* Texto nos vídeos de depoimento */
.video-play-btn .play-text {
    font-size: 0.85rem;
    margin-top: 0;
}

/* ===== VÍDEOS DE DEPOIMENTO - OVERLAY E BOTÃO ===== */
.video-card {
    position: relative;
}

.testimonial-video {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-card.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    pointer-events: auto;
}

.video-play-btn-circle {
    width: 60px;
    height: 60px;
    background: rgba(106, 140, 175, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(106, 140, 175, 0.4);
}

.video-play-btn:hover .video-play-btn-circle {
    transform: scale(1.1);
    background: rgba(106, 140, 175, 1);
    box-shadow: 0 12px 32px rgba(106, 140, 175, 0.5);
}

.video-play-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 3px;
}

/* Background para vídeos sem thumbnail (mobile) */
@media (max-width: 768px) {
    .video-play-overlay {
        background: linear-gradient(135deg, rgba(240, 237, 245, 0.98), rgba(232, 227, 240, 0.98));
    }
    
    .video-wrapper {
        background: linear-gradient(135deg, #f0edf5, #e8e3f0);
    }
}

/* ===== CUSTOMIZAÇÃO DOS CONTROLES DE VÍDEO ===== */

/* Barra de controles */
video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, transparent, rgba(106, 140, 175, 0.95));
}

/* Botão de play/pause */
video::-webkit-media-controls-play-button {
    background-color: rgba(184, 168, 217, 0.3);
    border-radius: 50%;
}

video::-webkit-media-controls-play-button:hover {
    background-color: rgba(184, 168, 217, 0.5);
}

/* Timeline/Barra de progresso */
video::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    height: 4px;
}

video::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background-color: var(--lavanda-suave);
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

/* Volume slider */
video::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    height: 4px;
}

video::-webkit-media-controls-volume-slider::-webkit-slider-thumb {
    background-color: var(--dourado-acolhedor);
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

/* Botão de volume */
video::-webkit-media-controls-mute-button {
    background-color: rgba(184, 168, 217, 0.2);
    border-radius: 4px;
}

video::-webkit-media-controls-mute-button:hover {
    background-color: rgba(184, 168, 217, 0.4);
}

/* OCULTAR ELEMENTOS INDESEJADOS */

/* Ocultar tempo de vídeo */
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    display: none;
}

/* Ocultar botão de download */
video::-internal-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-download-button {
    display: none;
}

/* Ocultar botão de overflow (três pontinhos) */
video::-webkit-media-controls-overflow-button {
    display: none;
}

/* Firefox - Customização */
video::-moz-media-controls-panel {
    background: linear-gradient(to bottom, transparent, rgba(106, 140, 175, 0.95));
}

/* Esconder controles ao pausar o vídeo de depoimento */
.testimonial-video:not([controls]) {
    pointer-events: none;
}

.platform-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(236, 238, 242, 0.5), rgba(184, 168, 217, 0.1));
    border: 3px dashed var(--lavanda-suave);
}

.platform-video-placeholder svg {
    margin-bottom: 20px;
    opacity: 0.8;
}

.platform-video-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-bottom: 8px;
}

.platform-video-placeholder span {
    font-size: 0.9rem;
    color: var(--cinza-texto);
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.highlight-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--branco);
    border-radius: 20px;
    box-shadow: var(--sombra-suave);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-media);
}

.highlight-item svg {
    margin-bottom: 20px;
}

.highlight-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-serenity);
    margin-bottom: 12px;
}

.highlight-item p {
    font-size: 1rem;
    color: var(--cinza-texto);
    line-height: 1.6;
}

/* IMAGINE SEU DIA */
.imagine-section {
    background: var(--branco);
}

.imagine-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.imagine-column {
    background: var(--branco);
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: var(--sombra-suave);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.imagine-column.imagine-before {
    border-color: rgba(165, 165, 165, 0.2);
}

.imagine-column.imagine-after {
    border-color: var(--dourado-acolhedor);
    background: linear-gradient(135deg, rgba(106, 140, 175, 0.03), rgba(184, 168, 217, 0.03));
}

.imagine-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.imagine-column-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.imagine-before .imagine-column-title {
    color: var(--cinza-texto);
}

.imagine-after .imagine-column-title {
    color: var(--azul-serenity);
}

.imagine-list {
    list-style: none;
}

.imagine-list li {
    padding: 16px 0 16px 40px;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(236, 238, 242, 0.8);
}

.imagine-list li:last-child {
    border-bottom: none;
}

.imagine-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.imagine-before .imagine-list li {
    color: #666;
}

.imagine-before .imagine-list li::before {
    background: rgba(165, 165, 165, 0.2);
    content: '✗';
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cinza-texto);
    font-size: 0.9rem;
}

.imagine-after .imagine-list li {
    color: #333;
    font-weight: 500;
}

.imagine-after .imagine-list li::before {
    background: linear-gradient(135deg, var(--lavanda-suave), var(--dourado-acolhedor));
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 0.9rem;
    font-weight: 700;
}

.imagine-bottom {
    text-align: center;
}

.imagine-highlight {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--azul-serenity);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* COMO FUNCIONA */
.how-section {
    background: linear-gradient(180deg, var(--cinza-claro) 0%, var(--branco) 100%);
}

.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.how-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--sombra-suave);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.how-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-media);
}

.how-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--azul-serenity), var(--lavanda-suave));
    color: var(--branco);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(106, 140, 175, 0.3);
}

.how-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-bottom: 12px;
}

.how-step p {
    font-size: 1.05rem;
    color: var(--cinza-texto);
    line-height: 1.7;
}

.how-arrow {
    font-size: 2.5rem;
    color: var(--lavanda-suave);
    font-weight: 300;
}

.how-bottom {
    text-align: center;
}

.how-note {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* PROVA SOCIAL */
.social-proof-section {
    background: linear-gradient(135deg, 
        rgba(106, 140, 175, 0.05) 0%, 
        rgba(184, 168, 217, 0.05) 50%, 
        rgba(216, 178, 110, 0.05) 100%);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--branco);
    border-radius: 20px;
    box-shadow: var(--sombra-suave);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--azul-serenity), var(--lavanda-suave));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--cinza-texto);
    line-height: 1.5;
}

.social-proof-text {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* VOCÊ NÃO PRECISA */
.no-need-section {
    background: var(--branco);
}

.no-need-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.no-need-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--cinza-claro);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.no-need-item:hover {
    background: rgba(236, 238, 242, 0.7);
    transform: translateX(5px);
}

.no-need-icon {
    font-size: 2rem;
    color: var(--cinza-texto);
    font-weight: 700;
    flex-shrink: 0;
}

.no-need-item p {
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
    line-height: 1.5;
}

.no-need-bottom {
    text-align: center;
}

.no-need-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--azul-serenity);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* GARANTIA */
.guarantee-section {
    background: linear-gradient(135deg, 
        rgba(216, 178, 110, 0.08) 0%, 
        rgba(184, 168, 217, 0.08) 100%);
}

.guarantee-card {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--branco);
    padding: 50px;
    border-radius: 32px;
    box-shadow: var(--sombra-media);
    border: 3px solid var(--dourado-acolhedor);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(216, 178, 110, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.guarantee-badge {
    position: relative;
    text-align: center;
    flex-shrink: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee-badge svg {
    width: 150px;
    height: 150px;
}

.guarantee-days {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dourado-acolhedor);
    margin: 0;
    line-height: 1;
}

.guarantee-content {
    position: relative;
    z-index: 1;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--azul-serenity);
    margin-bottom: 20px;
    line-height: 1.3;
}

.guarantee-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.guarantee-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dourado-acolhedor);
    margin-top: 20px;
}

/* NOTIFICAÇÕES DE PROVA SOCIAL */
.social-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--branco);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    max-width: 350px;
    border-left: 4px solid #27ae60;
}

.social-notification.show {
    transform: translateX(0);
}

.social-notification-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-notification-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lavanda-suave), var(--dourado-acolhedor));
    flex-shrink: 0;
}

.social-notification-text {
    flex: 1;
}

.social-notification-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.social-notification-action {
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 500;
}

/* RESPONSIVO - NOVAS SEÇÕES */
@media (max-width: 768px) {
    /* Video section responsive */
    .platform-video-section {
        padding: 60px 0;
    }
    
    .platform-video-section .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px 20px;
    }
    
    .platform-intro-text {
        font-size: 1rem;
        margin: 30px auto 20px;
        padding: 0 20px;
    }
    
    .video-highlights {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .highlight-item {
        padding: 24px 20px;
    }
    
    .price-comparison-card {
        padding: 30px 20px;
    }
    
    .price-comparison-title {
        font-size: 1.6rem;
    }
    
    .price-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-explanation-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    
    .chat-illustration {
        order: -1;
    }
    
    .chat-illustration svg {
        width: 150px;
        height: 150px;
    }
    
    .pricing-card-simple {
        padding: 40px 30px;
    }
    
    .pricing-value h3 {
        font-size: 3rem;
    }
    
    .price-column h3 {
        font-size: 2.5rem;
    }
    
    .losing-grid {
        grid-template-columns: 1fr;
    }
    
    .social-notification {
        left: 20px;
        bottom: 20px;
        max-width: calc(100% - 40px);
    }
    
    .video-carousel-wrapper {
        padding: 0 50px;
    }
    
    .video-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .imagine-content {
        grid-template-columns: 1fr;
    }
    
    .how-steps {
        flex-direction: column;
    }
    
    .how-arrow {
        transform: rotate(90deg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .guarantee-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    
    .guarantee-badge {
        width: 160px;
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .guarantee-badge svg {
        width: 130px;
        height: 130px;
    }
    
    .guarantee-days {
        font-size: 1.8rem;
    }
    
    .guarantee-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 140px;
    }
    
    .price-comparison-card {
        padding: 20px 15px;
    }
    
    .price-comparison-title {
        font-size: 1.3rem;
    }
    
    .price-comparison-subtitle {
        font-size: 1rem;
    }
    
    .price-column {
        padding: 30px 20px;
    }
    
    .price-column h3 {
        font-size: 2rem;
    }
    
    .price-benefits li {
        font-size: 0.95rem;
    }
    
    .scarcity-notice {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .losing-card {
        padding: 30px 20px;
    }
    
    .losing-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .losing-card h3 {
        font-size: 1.2rem;
    }
    
    .losing-question {
        font-size: 1.2rem;
    }
    
    .social-notification {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 12px 16px;
    }
    
    .social-notification-avatar {
        width: 35px;
        height: 35px;
    }
    
    .social-notification-name {
        font-size: 0.85rem;
    }
    
    .social-notification-action {
        font-size: 0.75rem;
    }
    
    .video-testimonials-section {
        padding: 60px 0;
    }
    
    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* VIDEO CAROUSEL MOBILE - Setas e dots embaixo */
    .video-carousel-wrapper {
        margin-bottom: 30px;
        padding: 0 20px 130px 20px;
        position: relative;
    }
    
    .video-carousel-track {
        gap: 0;
    }
    
    .video-card {
        flex: 0 0 100%;
        margin: 0;
    }
    
    .carousel-arrow {
        position: absolute;
        top: auto;
        bottom: 75px;
        transform: none;
        width: 50px;
        height: 50px;
    }
    
    .carousel-arrow-left {
        left: 50%;
        margin-left: -80px;
    }
    
    .carousel-arrow-right {
        right: 50%;
        margin-right: -80px;
    }
    
    .carousel-arrow:hover {
        transform: scale(1.1);
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-dots {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
    
    .carousel-instruction {
        display: block !important;
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        margin: 0;
    }
    
    .video-placeholder {
        aspect-ratio: 16 / 9;
        min-height: 250px;
    }
    
    .video-instructions {
        font-size: 0.9rem;
    }
    
    .video-author {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .imagine-column {
        padding: 30px 20px;
    }
    
    .imagine-highlight {
        font-size: 1.1rem;
    }
    
    .how-step {
        padding: 30px 20px;
    }
    
    .how-number {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .no-need-grid {
        grid-template-columns: 1fr;
    }
    
    .no-need-item {
        padding: 20px;
    }
    
    .guarantee-card {
        padding: 30px 20px;
    }
    
    .guarantee-badge {
        width: 140px;
        gap: 6px;
    }
    
    .guarantee-badge svg {
        width: 110px;
        height: 110px;
    }
    
    .guarantee-days {
        font-size: 1.6rem;
    }
    
    .guarantee-title {
        font-size: 1.4rem;
    }
    
    .urgency-badge {
        padding: 8px 16px;
    }
    
    .urgency-badge span {
        font-size: 0.85rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card {
        padding: 30px 20px;
    }
    
    .bonus-total-value {
        font-size: 1.6rem;
    }
    
    .urgency-card {
        padding: 40px 30px;
    }
    
    .urgency-title {
        font-size: 1.8rem;
    }
    
    .urgency-text {
        font-size: 1.05rem;
    }
    
    .urgency-benefit {
        font-size: 1rem;
    }
    
    .urgency-final {
        font-size: 1.2rem;
    }
}

