/* ==========================================
   PROTOCOLO INVEST START - CSS
   Landing Page Moderna e Futurista
========================================== */

/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIÁVEIS CSS */
:root {
    /* Cores Principais */
    --green-primary: #00ff88;
    --green-dark: #00cc6e;
    --green-light: #33ffaa;
    
    /* Backgrounds */
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #131824;
    
    /* Textos */
    --text-white: #ffffff;
    --text-light: #b8c5d6;
    --text-muted: #7a8ba0;
    
    /* Acentos */
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --red: #ef4444;
    
    /* Fontes */
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    
    /* Espaçamentos */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Outros */
    --radius: 16px;
    --transition: all 0.3s ease;
}

/* BASE */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TIPOGRAFIA */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* UTILIDADES */
.text-center {
    text-align: center;
}

.text-highlight-blue {
    color: var(--blue);
}

.text-highlight-green {
    color: var(--green-primary);
}

.text-green {
    color: var(--green-primary);
}

.text-emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.text-bold {
    font-weight: 700;
    color: var(--text-white);
}

.hide-mobile {
    display: inline;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green-primary), transparent);
    top: -200px;
    right: -200px;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple), transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -40px); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 2rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* VSL */
.vsl-wrapper {
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vsl-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 255, 136, 0.2);
}

.vsl-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #1a1f35 0%, #0a0e1a 100%);
    cursor: pointer;
    transition: var(--transition);
}

.vsl-placeholder:hover {
    transform: scale(1.01);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    z-index: 2;
}

.vsl-placeholder:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon i {
    font-size: 2rem;
    color: var(--bg-dark);
    margin-left: 5px;
}

.vsl-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.vsl-overlay-text p {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* BOTÕES CTA */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-cta-secondary {
    background: rgba(0, 255, 136, 0.1);
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

.btn-cta-secondary:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--green-primary);
    font-size: 1.2rem;
}

/* SCROLL DOWN */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--green-primary);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ==========================================
   SEÇÕES GERAIS
========================================== */
.section-header {
    margin-bottom: 4rem;
}

.label-text {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   PAIN SECTION
========================================== */
.pain-section {
    padding: var(--space-xl) 0;
    background: var(--bg-darker);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.3);
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pain-icon i {
    font-size: 1.8rem;
    color: var(--red);
}

.pain-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pain-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.pain-insight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius);
    padding: 2rem;
}

.insight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.insight-content i {
    font-size: 3rem;
    color: var(--green-primary);
    flex-shrink: 0;
}

.insight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.insight-content p {
    font-size: 1.1rem;
    margin: 0;
}

/* ==========================================
   BELIEF SECTION
========================================== */
.belief-section {
    padding: var(--space-xl) 0;
    background: var(--bg-dark);
}

.belief-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: var(--green-primary);
    margin: 1.5rem 0;
}

.belief-content {
    margin-top: 2rem;
}

.belief-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quote-box {
    background: rgba(0, 255, 136, 0.05);
    border-left: 4px solid var(--green-primary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.quote-box i {
    color: var(--green-primary);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.quote-box p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.stats-box {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 255, 136, 0.1);
    margin-bottom: 2rem;
}

.stat-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-light);
}

.insight-mini {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.insight-mini i {
    font-size: 2rem;
    color: var(--green-primary);
}

.insight-mini p {
    margin: 0;
    font-size: 1rem;
}

/* ==========================================
   METHOD SECTION
========================================== */
.method-section {
    padding: var(--space-xl) 0;
    background: var(--bg-darker);
}

.method-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--green-primary);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-box p {
    font-size: 1rem;
}

.protocol-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    min-width: 150px;
    transition: var(--transition);
}

.step-item:hover {
    background: rgba(0, 255, 136, 0.05);
}

.step-active {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--green-primary);
}

.step-num {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-primary);
}

.step-info h4 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.step-info p {
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.step-arrow {
    color: var(--green-primary);
    font-size: 1.5rem;
}

/* ==========================================
   LEARNING SECTION
========================================== */
.learning-section {
    padding: var(--space-xl) 0;
    background: var(--bg-dark);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.learning-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
}

.learning-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.2);
}

.card-featured {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--green-primary);
}

.learning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.learning-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-benefits {
    list-style: none;
    margin-top: 1.5rem;
}

.card-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.card-benefits i {
    color: var(--green-primary);
    margin-top: 0.2rem;
}

.cta-wrapper {
    margin: 3rem 0;
}

/* ==========================================
   AUDIENCE SECTION
========================================== */
.audience-section {
    padding: var(--space-xl) 0;
    background: var(--bg-darker);
}

.audience-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.audience-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.box-for {
    border-color: rgba(0, 255, 136, 0.3);
}

.box-for:hover {
    border-color: rgba(0, 255, 136, 0.5);
}

.box-not {
    border-color: rgba(239, 68, 68, 0.3);
}

.box-not:hover {
    border-color: rgba(239, 68, 68, 0.5);
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.audience-header i {
    font-size: 2.5rem;
}

.box-for .audience-header i {
    color: var(--green-primary);
}

.box-not .audience-header i {
    color: var(--red);
}

.audience-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

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

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.audience-list i {
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.box-for .audience-list i {
    color: var(--green-primary);
}

.box-not .audience-list i {
    color: var(--red);
}

.warning-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-message i {
    color: var(--red);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.warning-message p {
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================
   DELIVERY SECTION
========================================== */
.delivery-section {
    padding: var(--space-xl) 0;
    background: var(--bg-dark);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.delivery-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.delivery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.2);
}

.card-main {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    border: 2px solid rgba(0, 255, 136, 0.3);
    position: relative;
}

.product-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-primary);
    color: var(--bg-dark);
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-icon i {
    font-size: 2.5rem;
    color: var(--green-primary);
}

.delivery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.product-list {
    list-style: none;
    text-align: left;
}

.product-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-list i {
    color: var(--green-primary);
}

.guarantee-box-mini {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.guarantee-mini-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.guarantee-mini-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-mini-icon i {
    font-size: 3rem;
    color: var(--green-primary);
}

.guarantee-mini-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.guarantee-mini-content p {
    font-size: 1.05rem;
    margin: 0;
}

/* ==========================================
   GUARANTEE SECTION
========================================== */
.guarantee-section {
    padding: var(--space-xl) 0;
    background: var(--bg-darker);
}

.guarantee-wrapper {
    background: var(--bg-card);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.guarantee-seal {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.guarantee-seal i {
    font-size: 3rem;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}

.guarantee-seal span {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--bg-dark);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-intro {
    font-size: 1.2rem;
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.guarantee-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.text-highlight-box {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--green-primary);
}

.guarantee-why {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.guarantee-why h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--green-primary);
}

.guarantee-cta-box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-message {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

/* ==========================================
   OFFER SECTION
========================================== */
.offer-section {
    padding: var(--space-xl) 0;
    background: var(--bg-dark);
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

.offer-header {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    padding: 2.5rem;
    text-align: center;
}

.offer-header h3 {
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}

.offer-header p {
    color: rgba(10, 14, 26, 0.8);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.offer-body {
    padding: 3rem;
}

.price-compare {
    margin-bottom: 2rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-label {
    color: var(--text-light);
    font-size: 1rem;
}

.price-old {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.price-divider::before,
.price-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(0, 255, 136, 0.3);
}

.price-divider::before { left: 0; }
.price-divider::after { right: 0; }

.price-divider span {
    background: var(--bg-card);
    padding: 0 1rem;
    color: var(--green-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.price-box {
    text-align: center;
    margin: 3rem 0;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 2rem;
    color: var(--green-primary);
    font-weight: 700;
    margin-top: 0.5rem;
}

.price-value {
    font-size: 5rem;
    color: var(--green-primary);
    font-weight: 900;
    line-height: 1;
}

.price-cents {
    font-size: 2rem;
    color: var(--green-primary);
    font-weight: 700;
    margin-top: 0.5rem;
}

.price-info {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.payment-item i {
    color: var(--green-primary);
}

.offer-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.offer-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.offer-badge-item i {
    color: var(--green-primary);
}

.offer-why {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--green-primary);
}

.offer-why h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--green-primary);
}

.offer-why p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.text-small-emphasis {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.security-seals {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.03);
    border-radius: 0 0 20px 20px;
    margin: 2rem -3rem -3rem;
}

.seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.seal-item i {
    font-size: 2rem;
    color: var(--green-primary);
}

.seal-item span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.3;
}

/* ==========================================
   FAQ SECTION
========================================== */
.faq-section {
    padding: var(--space-xl) 0;
    background: var(--bg-darker);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--green-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer p:not(:last-child) {
    margin-bottom: 1rem;
}

/* ==========================================
   FINAL CTA SECTION
========================================== */
.final-cta-section {
    padding: var(--space-xl) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

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

.final-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.final-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.transformation-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.transformation-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.col-before h3 {
    color: var(--red);
}

.col-after h3 {
    color: var(--green-primary);
}

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

.transformation-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.col-before ul li i {
    color: var(--red);
    margin-top: 0.2rem;
}

.col-after ul li i {
    color: var(--green-primary);
    margin-top: 0.2rem;
}

.transformation-arrow {
    font-size: 3rem;
    color: var(--green-primary);
}

.final-message {
    margin: 3rem 0;
}

.emphasis-text {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.emphasis-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 1rem;
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.final-note {
    font-size: 1.1rem;
    color: var(--green-primary);
    font-weight: 600;
    margin-top: 2rem;
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--green-primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    font-style: italic;
}

/* ==========================================
   RESPONSIVIDADE
========================================== */
@media (max-width: 1024px) {
    .belief-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .protocol-steps {
        padding: 2rem;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .pain-grid,
    .learning-grid,
    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .audience-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guarantee-wrapper {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .guarantee-seal {
        width: 120px;
        height: 120px;
    }

    .offer-body {
        padding: 2rem;
    }

    .transformation-box {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

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

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .btn-cta {
        width: 100%;
    }

    .security-seals {
        gap: 1.5rem;
    }

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

    .insight-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1.25rem 2rem;
        font-size: 1.05rem;
    }

    .price-value {
        font-size: 3.5rem;
    }
}