/* ==========================================================
   V3 - THE ULTIMATE CONVERSION & SEO CSS
========================================================== */

:root {
    --brand-dark: #0f172a;
    /* Fundo forte, elegância */
    --brand-main: #3b82f6;
    /* Confiança médica/dermatológica */
    --brand-accent: #10b981;
    /* O verde do botão de compra/COD */
    --brand-accent-hover: #059669;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-page: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;

    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-success: 0 10px 25px -5px rgba(16, 185, 129, 0.4);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 99px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.5;
    padding-bottom: 80px;
    /* Espaço pro botão sticky mobile */
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-dark);
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.mt-40 {
    margin-top: 40px;
}

/* GRADIENT TEXT */
.text-gradient {
    background: linear-gradient(135deg, var(--brand-main), #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ================== URGENCY TOP BAR ================== */
.urgency-banner {
    background: #ef4444;
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.container-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-white 1.5s infinite;
}

@keyframes pulse-white {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ================== HERO V3 ================== */
.v3-hero {
    background: linear-gradient(180deg, var(--bg-white) 0%, #eef2ff 100%);
    padding: 60px 0 80px;
    border-bottom: 1px solid var(--border-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #b45309;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.trust-badge i {
    color: #f59e0b;
}

.seo-h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-paragraph {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

/* COD BOX IN HERO - Maximum Conversion */
.cod-hero-box {
    background: var(--bg-white);
    border: 2px solid var(--brand-accent);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.cod-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--brand-accent);
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cod-header i {
    font-size: 1.4rem;
}

.cod-benefits {
    list-style: none;
}

.cod-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-main);
}

.cod-benefits i {
    color: var(--brand-accent);
}

/* BOTOES GERAIS */
.action-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-mega {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--brand-accent);
    color: white;
    text-decoration: none;
    padding: 24px 30px;
    border-radius: var(--radius-md);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-success);
    transition: all 0.2s ease;
    width: 100%;
}

.btn-mega:hover {
    background: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.5);
}

.btn-mega i {
    font-size: 1.5rem;
}

.glow-btn {
    animation: gentle-green-pulse 2s infinite;
}

@keyframes gentle-green-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.safe-checkout-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Video Hero Visual */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.deluxe-shadow {
    position: relative;
    border-radius: 30px;
    box-shadow: var(--shadow-float);
    background: black;
    aspect-ratio: 9/16;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    /* Limita a largura, altura será ajustada pelo aspect-ratio */
    margin: 0 auto;
    border: 8px solid white;
    display: flex;
    /* Garante alinhamento interno sem quebras */
}

.hero-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-badge-bottom {
    position: absolute;
    bottom: -15px;
    right: -20px;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-float);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.floating-badge-bottom strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brand-dark);
}

.floating-badge-bottom span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================== SEO BENEFITS GRID ================== */
.seo-benefits-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.seo-benefits-section h2 {
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.seo-benefits-section .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--bg-page);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.2s;
    border: 1px solid var(--border-light);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feat-icon {
    width: 70px;
    height: 70px;
    background: #eff6ff;
    color: var(--brand-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-muted);
}

/* ================== UGC VIDEOS (Provas) ================== */
.ugc-videos {
    padding: 80px 0;
    background: var(--brand-dark);
    color: white;
}

.title-block {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-inline: auto;
}

.title-block h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.title-block p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.ugc-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ugc-video-wrapper video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    background: #000;
}

.ugc-info {
    padding: 20px;
}

.ugc-info strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.ugc-info span {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* ================== GUARANTEE / COD SPLIT ================== */
.guarantee-cod-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.split-cod {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cod-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cod-left>p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cod-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cod-steps li {
    display: flex;
    gap: 20px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    color: var(--brand-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-txt h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.step-txt p {
    color: var(--text-muted);
}

.cod-right {
    display: flex;
    justify-content: center;
}

.shield-card {
    background: var(--brand-main);
    color: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.seal-icon {
    font-size: 5rem;
    color: #fbbf24;
    margin-bottom: 24px;
}

.shield-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

/* ================== REVIEWS V3 ================== */
.reviews-v3 {
    padding: 80px 0;
    background: #f1f5f9;
}

.stars-big {
    font-size: 2rem;
    color: #fbbf24;
    margin: 10px 0 40px;
    font-weight: bold;
}

.stars-big span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: normal;
    font-family: 'Inter';
}

.reviews-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.review-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.user-header img {
    border-radius: 50%;
}

.user-name {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
}

.ver-badge {
    font-size: 0.8rem;
    color: var(--brand-accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.user-rating {
    color: #fbbf24;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-box p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

.rev-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ================== SEO FAQ ================== */
.seo-faq {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-head {
    text-align: center;
    margin-bottom: 50px;
}

.faq-head h2 {
    font-size: 2.2rem;
}

.faq-head p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.acc-item {
    border-bottom: 1px solid var(--border-light);
}

.acc-title {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-size: 1.15rem;
    font-weight: 600;
    background: none;
    border: none;
    color: var(--brand-dark);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-right: 30px;
}

.acc-title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.acc-item.active .acc-title::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.acc-item.active .acc-body {
    max-height: 400px;
}

.acc-body p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

/* ================== FOOTER ================== */
.footer-v3 {
    background: white;
    border-top: 1px solid var(--border-light);
    padding: 60px 0 100px;
    /* espaco pra sticky cta no mobile */
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.f-col strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.f-col p,
.f-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.f-col a:hover {
    color: var(--brand-main);
}

.copyr {
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ================== STICKY MOBILE CTA (THE CONVERSION MONSTER) ================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.price-st span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.price-st strong {
    display: block;
    font-size: 1.25rem;
    font-family: 'Montserrat';
    color: var(--brand-dark);
}

.btn-st {
    background: var(--brand-accent);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-family: 'Montserrat';
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    flex: 1;
    max-width: 200px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-success);
}

/* Media Queries */
@media (max-width: 900px) {

    .hero-grid,
    .split-cod {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .cod-hero-box {
        max-width: 400px;
        margin: 0 auto 30px;
        text-align: left;
    }

    .hero-paragraph {
        margin: 0 auto 30px;
    }

    .floating-badge-bottom {
        right: 10px;
        transform: scale(0.9);
    }

    .cod-steps li {
        text-align: left;
    }
}

@media (min-width: 901px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .hero-media {
        justify-content: flex-end;
    }

    .deluxe-shadow {
        margin: 0;
        margin-left: auto;
    }
}

@media (min-width: 769px) {

    /* Esconde o Sticky no Desktop pois o Hero e CTA fixo ja servem bem */
    .mobile-sticky-cta {
        display: none !important;
    }
}