:root {
    /* PALETA SISTEMA 1 - ALTA CONVERSÃO */
    --rosa-vibrante: #E91E63;
    --rosa-escuro: #C2185B;
    --rosa-claro: #FCE4EC;
    --rosa-neon: #FF4081;
    --dourado: #FFD700;
    --dourado-escuro: #FFA000;
    --preto: #0D0D0D;
    --preto-suave: #1A1A1A;
    --branco: #FFFFFF;
    --cinza: #888888;
    --verde-sucesso: #00C853;
    --verde-escuro: #2E7D32;
    --vermelho-urgencia: #FF1744;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--preto);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
}

/* BARRA DE URGÊNCIA - VERMELHO PULSANTE */
.urgency-bar {
    background: linear-gradient(90deg, var(--vermelho-urgencia), #D50000, var(--vermelho-urgencia));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
    padding: 14px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.urgency-bar span {
    color: var(--dourado);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.urgency-bar .timer {
    display: inline-block;
    background: rgba(0,0,0,0.3);
    padding: 3px 12px;
    border-radius: 4px;
    margin-left: 10px;
    font-family: monospace;
    font-size: 16px;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px 80px;
    background: 
        radial-gradient(ellipse at top, rgba(233, 30, 99, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        var(--preto);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* BADGES ANIMADOS */
.badge-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
    animation: fadeInDown 0.6s ease-out;
}

.badge {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid var(--rosa-vibrante);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--branco);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(233, 30, 99, 0.3); }
    to { box-shadow: 0 0 20px rgba(233, 30, 99, 0.6); }
}

.badge strong {
    color: var(--dourado);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pre-headline {
    font-size: 14px;
    color: var(--rosa-vibrante);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out 0.1s both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--dourado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .underline {
    position: relative;
    display: inline-block;
}

.hero h1 .underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--rosa-vibrante);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: 18px;
    color: #CCCCCC;
    max-width: 650px;
    margin: 0 auto 20px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-subtext {
    font-size: 15px;
    color: var(--rosa-vibrante);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.35s both;
}

.hero-subtext strong {
    color: var(--dourado);
}

/* VIDEO CONTAINER */
.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, var(--preto-suave), var(--preto));
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--rosa-vibrante);
    box-shadow: 
        0 0 60px rgba(233, 30, 99, 0.4),
        0 20px 60px rgba(0,0,0,0.5);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(255, 215, 0, 0.05));
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--rosa-escuro));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(233, 30, 99, 0.6);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(233, 30, 99, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(233, 30, 99, 0.8); }
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 40px;
    height: 40px;
    fill: white;
    margin-left: 5px;
}

.video-cta-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--branco);
}

.video-cta-text span {
    color: var(--rosa-vibrante);
}

/* CTA PRINCIPAL */
.cta-container {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--rosa-neon), var(--rosa-vibrante));
    background-size: 200% 100%;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 22px 60px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 40px rgba(233, 30, 99, 0.5),
        0 0 0 0 rgba(233, 30, 99, 0.7);
    animation: ctaPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(233, 30, 99, 0.5), 0 0 0 0 rgba(233, 30, 99, 0.7); }
    50% { box-shadow: 0 15px 50px rgba(233, 30, 99, 0.7), 0 0 0 10px rgba(233, 30, 99, 0); }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.7);
}

.cta-price {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.cta-subtitle {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-subtitle span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-subtitle svg {
    width: 18px;
    height: 18px;
}

.cta-subtitle .check {
    fill: var(--verde-sucesso);
}

/* PROVA SOCIAL */
.social-proof-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeIn 0.8s ease-out 0.7s both;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--dourado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SEÇÃO: O QUE VOCÊ VAI APRENDER */
.benefits-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--preto) 0%, var(--preto-suave) 100%);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    text-align: center;
    font-size: 13px;
    color: var(--rosa-vibrante);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--rosa-vibrante);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(255, 215, 0, 0.03));
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--rosa-vibrante), var(--dourado));
}

.benefit-card:hover {
    transform: translateY(-5px) translateX(5px);
    border-color: var(--rosa-vibrante);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.2);
}

.benefit-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--rosa-vibrante);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 20px;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--branco);
}

.benefit-card p {
    color: #AAA;
    font-size: 15px;
    line-height: 1.7;
}

/* SEÇÃO: FORMATO DO CURSO */
.format-section {
    padding: 100px 20px;
    background: var(--preto);
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.format-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.format-card:hover {
    border-color: var(--rosa-vibrante);
    transform: translateY(-5px);
}

.format-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.format-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.format-card p {
    color: #AAA;
    font-size: 15px;
}

.format-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--rosa-escuro));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
}

/* SEÇÃO: TRANSFORMAÇÃO */
.transformation-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--preto-suave) 0%, var(--preto) 100%);
    position: relative;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 30px;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}

.transformation-box {
    padding: 40px;
    border-radius: 16px;
    position: relative;
}

.transformation-box.before {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.15), rgba(255, 23, 68, 0.05));
    border: 2px solid rgba(255, 23, 68, 0.4);
}

.transformation-box.after {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
    border: 2px solid rgba(0, 200, 83, 0.4);
}

.transformation-label {
    position: absolute;
    top: -14px;
    left: 30px;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before .transformation-label {
    background: var(--vermelho-urgencia);
}

.after .transformation-label {
    background: var(--verde-sucesso);
}

.transformation-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.transformation-box ul {
    list-style: none;
}

.transformation-box li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #CCC;
    font-size: 15px;
}

.transformation-box.before li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--vermelho-urgencia);
    font-weight: bold;
}

.transformation-box.after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde-sucesso);
    font-weight: bold;
}

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

.arrow-center svg {
    width: 50px;
    height: 50px;
    fill: var(--rosa-vibrante);
    animation: bounceRight 1.5s infinite;
    filter: drop-shadow(0 0 10px rgba(233, 30, 99, 0.5));
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* DEPOIMENTOS */
.testimonials-section {
    padding: 100px 20px;
    background: var(--preto);
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), transparent);
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 16px;
    padding: 35px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    position: absolute;
    top: 10px;
    left: 25px;
    color: var(--rosa-vibrante);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #CCC;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--dourado));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 13px;
    color: #888;
}

.author-result {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.1));
    color: var(--verde-sucesso);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    display: inline-block;
}

/* SEÇÃO: PREÇO */
.pricing-section {
    padding: 100px 20px;
    background: 
        radial-gradient(ellipse at top, rgba(233, 30, 99, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        var(--preto-suave);
}

.pricing-container {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 3px solid var(--rosa-vibrante);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(233, 30, 99, 0.3),
        0 30px 60px rgba(0,0,0,0.4);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--rosa-vibrante), var(--dourado), var(--rosa-vibrante));
}

.launch-badge {
    position: absolute;
    top: 25px;
    right: -40px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: var(--preto);
    padding: 10px 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: #888;
    margin-bottom: 30px;
    font-size: 15px;
}

.price-anchor {
    font-size: 20px;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--dourado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 40px rgba(233, 30, 99, 0.3);
}

.price-main small {
    font-size: 28px;
    vertical-align: super;
}

.price-installment {
    font-size: 18px;
    color: #CCC;
    margin-top: 10px;
    margin-bottom: 30px;
}

.price-installment strong {
    color: var(--dourado);
    font-size: 22px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
    list-style: none;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #CCC;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde-sucesso);
    font-weight: bold;
    font-size: 16px;
}

.pricing-cta {
    width: 100%;
    padding: 22px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--rosa-neon), var(--rosa-vibrante));
    background-size: 200% 100%;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.5);
    animation: ctaPulse 2s ease-in-out infinite;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.7);
}

.pricing-guarantee {
    margin-top: 20px;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-guarantee svg {
    width: 18px;
    height: 18px;
    fill: var(--verde-sucesso);
}

/* GARANTIA */
.guarantee-section {
    padding: 80px 20px;
    background: var(--preto);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.02));
    border: 2px solid rgba(0, 200, 83, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.guarantee-badge {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--verde-sucesso), var(--verde-escuro));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.4);
}

.guarantee-badge span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.guarantee-badge span:last-child {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--verde-sucesso);
}

.guarantee-content p {
    color: #CCC;
    line-height: 1.8;
    font-size: 15px;
}

/* FAQ */
.faq-section {
    padding: 100px 20px;
    background: var(--preto-suave);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--branco);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--rosa-vibrante);
}

.faq-question span {
    font-size: 24px;
    color: var(--rosa-vibrante);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #AAA;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 20px;
}

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

/* CTA FINAL */
.final-cta-section {
    padding: 120px 20px;
    background: 
        radial-gradient(ellipse at center, rgba(233, 30, 99, 0.25) 0%, transparent 60%),
        linear-gradient(180deg, var(--preto), var(--preto-suave));
    text-align: center;
}

.final-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 46px);
    margin-bottom: 20px;
}

.final-cta-section h2 span {
    color: var(--rosa-vibrante);
}

.final-cta-section p {
    font-size: 18px;
    color: #AAA;
    max-width: 600px;
    margin: 0 auto 40px;
}

.final-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--rosa-neon), var(--rosa-vibrante));
    background-size: 200% 100%;
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 25px 70px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.5);
    animation: ctaPulse 2s ease-in-out infinite;
}

.final-cta-button:hover {
    transform: scale(1.05);
}

.final-cta-price {
    display: block;
    font-size: 16px;
    margin-top: 8px;
    opacity: 0.9;
}

/* FOOTER */
footer {
    padding: 40px 20px;
    background: var(--preto);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #666;
    font-size: 13px;
}

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

/* FLOATING CTA MOBILE */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--rosa-vibrante);
    z-index: 999;
}

.floating-cta a {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--rosa-vibrante), var(--rosa-neon));
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 1px;
}

.floating-cta small {
    display: block;
    text-align: center;
    margin-top: 8px;
    color: #888;
    font-size: 12px;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* RESPONSIVO */
@media (max-width: 768px) {
    .urgency-bar {
        font-size: 12px;
        padding: 12px 15px;
    }

    .urgency-bar .timer {
        display: block;
        margin: 8px auto 0;
    }

    .badge-container {
        gap: 10px;
    }

    .badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .social-proof-bar {
        gap: 25px;
    }

    .proof-number {
        font-size: 32px;
    }

    .format-grid {
        grid-template-columns: 1fr;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .arrow-center {
        transform: rotate(90deg);
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .floating-cta.is-visible {
        display: block;
    }

    .hero {
        padding-bottom: 120px;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .price-main {
        font-size: 56px;
    }

    .launch-badge {
        font-size: 9px;
        padding: 8px 40px;
        right: -45px;
        top: 20px;
    }
}

/* ==========================================================================
   AJUSTES WORDPRESS + ACESSIBILIDADE
   (bloco adicionado na conversao — nao existia no HTML original)
   ========================================================================== */

/* Barra de admin do WP nao pode cobrir a barra de urgencia */
.admin-bar .urgency-bar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .urgency-bar {
        top: 46px;
    }
}

/* Ancoras (#preco) nao podem parar embaixo da barra fixa */
section[id] {
    scroll-margin-top: 90px;
}

/* Video real injetado pelo JS */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Foco visivel no teclado */
a:focus-visible,
button:focus-visible,
.faq-question:focus-visible {
    outline: 3px solid var(--dourado);
    outline-offset: 3px;
    border-radius: 4px;
}

.faq-question {
    cursor: pointer;
}

/* CTA flutuante: entra suave */
.floating-cta {
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.floating-cta.is-visible {
    transform: translateY(0);
}

/* Respeita "reduzir movimento" do sistema operacional */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Utilitario para leitores de tela */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Botao de compra virou <a> (link real, rastreavel e indexavel) */
a.pricing-cta {
    display: block;
    text-align: center;
    text-decoration: none;
}

/* Avatar do depoimento quando for foto real */
img.author-avatar {
    object-fit: cover;
    flex-shrink: 0;
}

/* Caixa de ancoragem de ROI — antes estava em style inline no HTML */
.roi-box {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
    border: 2px solid rgba(0, 200, 83, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.roi-box .roi-line-1 {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.roi-box .roi-line-2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--verde-sucesso);
    margin-bottom: 5px;
    line-height: 1.2;
}

.roi-box .roi-line-3 {
    font-size: 15px;
    color: #CCC;
}

.roi-box .roi-line-3 strong {
    color: var(--dourado);
}

/* Capa do video (definida no painel) */
.video-placeholder.has-poster {
    background-size: cover;
    background-position: center;
}

.video-placeholder.has-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.45);
}

.video-placeholder.has-poster > * {
    position: relative;
    z-index: 1;
}

/* Logo do rodape */
.footer-logo {
    max-height: 60px;
    width: auto;
    margin: 0 auto 6px;
    display: block;
}
