/* =======================
   VARIABLES & RESET - ALIGNMENT FIX
   ======================= */

:root {
    /* Primary Colors */
    --primary-blue: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    
    /* Accent Colors */
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-gold: #f59e0b;
    
    /* Neutral Colors */
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-text: #f8fafc;
    --light-bg: #ffffff;
    --light-text: #334155;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 5rem 0;
    --card-padding: 2rem;
    
    /* Borders & Shadows */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--light-text);
    background: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max) !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: none;
    transition: all var(--transition-normal);
    margin: 0;
    padding: 0;
}

.header-fixed.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 68px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta-nav {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.btn-cta-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-600);
    transition: all var(--transition-fast);
}

/* =======================
   HERO SECTION
   ======================= */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    margin-top: 0;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.4) brightness(1.15) saturate(1.2) sharpen(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 13, 56, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-animation {
    animation: heroFadeIn 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.highlight {
    color: var(--accent-gold);
    position: relative;
}

.highlight-mini {
    color: rgb(55, 255, 0);
}

/* Efeito rainbow dourado/laranja para "GRATUITA" */
.pulse-gold {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700, #ff8c00, #ff4500, #ff6347, #ff1493, #ff69b4, #ff6b35);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowGratuita 2s linear infinite;
    font-weight: 800;
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    text-shadow: none !important;
}

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



.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.05rem;
}

.feature-item i {
    color: rgb(55, 255, 0);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-primary-hero {
    /* Container neutro */
    padding: 4px;
    border-radius: calc(var(--border-radius-lg) + 4px);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-normal);
    position: relative;
}

.btn-primary-hero::before {
    /* Camada 1: Efeito colorido esfumaçado (fundo) */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        #ff6b35, #f7931e, #ffd700, #48ff00, 
        #00ffd5, #002bff, #7a00ff, #ff00c8, 
        #ff6b35, #f7931e, #ffd700, #48ff00);
    background-size: 400% 400%;
    animation: gradientMove 3s ease-in-out infinite;
    border-radius: calc(var(--border-radius-lg) + 4px);
    filter: blur(1px);
    z-index: -1;
}

.btn-content {
    /* Camada 2: Botão sólido por cima (centralizado) */
    background: linear-gradient(135deg, #020d38 0%, #010a2e 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    
    /* Posicionamento centralizado dentro do container */
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(2, 13, 56, 0.4);
}

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

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-left: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* =======================
   MARKET TICKER
   ======================= */

.market-ticker {
    background: #000000;
    color: white;
    padding: 0;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.tradingview-widget-container {
    width: 100%;
    height: 50px;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
}

.tradingview-widget-container__widget {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.tradingview-widget-container * {
    margin: 0 !important;
    border: none !important;
}

/* Forçar remoção de qualquer espaçamento do widget */
.market-ticker iframe {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.navbar {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

/* =======================
   SECTIONS
   ======================= */

.about-section,
.benefits-section,
.content-section,
.success-section,
.routine-section,
.final-cta-section,
.contact-section {
    padding: var(--section-padding);
}

/* Fundo de gráfico real para a seção About */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/d1c44fd08119d10be21e3402c561e264');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =======================
   ABOUT SECTION
   ======================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.mobile-newsletter {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.image-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* =======================
   BENEFITS SECTION
   ======================= */

.benefits-section {
    background: var(--gray-100);
}

.comparison-container {
    margin: 3rem 0 4rem;
    text-align: center;
}

.comparison-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.comparison-left,
.comparison-right {
    position: relative;
}

.comparison-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.comparison-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-label.negative {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.comparison-label.positive {
    background: linear-gradient(135deg, rgb(55, 255, 0), #22c55e);
    color: white;
}

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

.benefit-card {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transition: left var(--transition-slow);
}

.benefit-card:hover::before {
    left: 0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-green), #059669);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* =======================
   CONTENT SECTION
   ======================= */

.content-layout {
    display: grid;
    grid-template-columns: 1fr 464px;
    gap: 3rem;
    align-items: start;
}

.content-visual {
    align-self: start !important;
    justify-self: start;
}

.content-text {
    padding-right: 120px;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
}

.content-list * {
    list-style: none !important;
}

.list-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    list-style: none !important;
}

.list-item::before {
    display: none !important;
}

.item-number {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.item-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.newsletter-preview {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    align-self: flex-start;
    margin-top: 0;
}

.preview-chart {
    width: 464px;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    image-rendering: auto;
}

.preview-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.preview-badge {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* =======================
   CTA INTERMEDIATE SECTION
   ======================= */

.cta-intermediate {
    background-image: url('../images/cta-site2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    position: relative;
}

.cta-intermediate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 13, 56, 0.8);
    z-index: 1;
}

.cta-intermediate .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    margin-top: 1.5rem;
}

/* =======================
   SUCCESS SECTION
   ======================= */

.success-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
}

.success-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: center;
}

.success-image {
    position: relative;
}

.success-trader {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.success-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: fit-content;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.success-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* =======================
   POWER SECTION
   ======================= */

.power-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    color: white;
    text-align: center;
}

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

.power-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.power-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(30, 64, 175, 0.8) 100%
    );
}

.power-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.power-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.power-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.btn-power {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d97706 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-power:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
}

/* =======================
   ROUTINE SECTION
   ======================= */

.routine-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: center;
}

.routine-image {
    position: relative;
}

.morning-routine {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.routine-time {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.routine-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.routine-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.routine-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: white;
    font-size: 1.2rem;
}

.step-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* =======================
   FINAL CTA SECTION
   ======================= */

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0 !important;
}

.final-cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.cta-header {
    margin: 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.benefits-icons {
    margin: 3rem 0;
}

.benefits-visual {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    opacity: 0.9;
}

.final-cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-check i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.btn-final-cta {
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
    margin-bottom: 1rem;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.cta-guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* =======================
   CONTACT SECTION
   ======================= */

.contact-section {
    background: var(--gray-100);
}

.contact-content {
    display: grid;
    grid-template-columns: 350px 1fr 350px;
    gap: 3rem;
    align-items: start !important;
}

.contact-content > * {
    align-self: start !important;
}

.contact-image {
    position: relative;
}

.contact-support {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 350px;
}

.contact-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: fit-content;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
}

.contact-text {
    text-align: left;
    align-self: start;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-info {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.contact-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-purposes {
    text-align: left;
}

.contact-purposes h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.contact-purposes ul {
    list-style: none;
    padding-left: 0;
}

.contact-purposes li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.contact-purposes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* =======================
   FOOTER
   ======================= */

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 51px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.btn-footer {
    background: var(--accent-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-footer:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* =======================
   FLOATING CTA
   ======================= */

.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all var(--transition-normal);
}

.floating-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transition: all var(--transition-normal);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* =======================
   ANIMATIONS
   ======================= */

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

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

/* =======================
   HERO CODES - Efeito Fade Sequencial
   ======================= */

.hero-codes {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0.4;
    pointer-events: none;
}

.code-item {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.98);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 80px;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInOut 12s ease-in-out infinite;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Delays escalonados para cada código */
.code-item:nth-child(1) { animation-delay: 0s; }
.code-item:nth-child(2) { animation-delay: 2s; }
.code-item:nth-child(3) { animation-delay: 4s; }
.code-item:nth-child(4) { animation-delay: 6s; }
.code-item:nth-child(5) { animation-delay: 8s; }
.code-item:nth-child(6) { animation-delay: 10s; }

@keyframes fadeInOut {
    0%, 90%, 100% {
        opacity: 0;
        transform: scale(0.9);
    }
    10%, 80% {
        opacity: 1;
        transform: scale(1);
    }
}



.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =======================
   BUTTONS
   ======================= */

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
}

/* =======================
   RESPONSIVE DESIGN
   ======================= */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-codes {
        display: none;
    }
    
    .about-content,
    .content-layout,
    .success-content,
    .routine-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .success-content {
        grid-template-columns: 1fr;
    }
    
    .success-image {
        order: -1;
    }
    
    .routine-image {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --card-padding: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding-top: 140px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .tradingview-widget-container {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary-hero,
    .btn-final-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .power-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* =======================
   UTILITIES
   ======================= */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }