/* ==========================================================================
   Bode das Finanças - Premium Landing Page CSS
   ========================================================================== */

/* --- CSS VARIABLES & DESIGN SYSTEM --- */
:root {
    --primary-green: #0A4F35;
    --primary-green-dark: #063624;
    --primary-green-light: #E8F5EE;
    --primary-green-rgb: 10, 79, 53;
    
    --accent-gold: #DFB15B;
    --accent-gold-dark: #B58A38;
    --accent-gold-light: #FCF6E8;
    --accent-gold-rgb: 223, 177, 91;
    
    --bg-white: #FFFFFF;
    --bg-cream: #FAF9F6;
    --bg-dark: #071711;
    
    --text-dark: #111827;
    --text-gray: #4B5563;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-dark: rgba(255, 255, 255, 0.08);
    
    --shadow-sm: 0 2px 4px rgba(10, 79, 53, 0.03);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px rgba(10, 79, 53, 0.06);
    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.12);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 79, 53, 0.15);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-green);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    padding: 14px;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green) 20%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- UTILITY / BADGE --- */
.section-tag {
    display: inline-block;
    color: var(--primary-green);
    background-color: var(--primary-green-light);
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* --- HEADER & NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* --- MOBILE MENU DRAWER --- */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 200;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, var(--primary-green-light) 0%, rgba(255, 255, 255, 0) 50%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.benefit-icon {
    color: var(--primary-green);
    width: 18px;
    height: 18px;
}

/* --- HERO VISUAL / MASCOT CARD --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mascot-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    z-index: 2;
}

.mascot-card {
    background-color: var(--bg-dark);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--primary-green);
    padding: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
}

.mascot-img {
    height: 90%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* Floating interface elements on Hero */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.fb-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-icon img {
    width: 20px;
    height: auto;
}

.user-icon {
    background-color: var(--primary-green-light);
    color: var(--primary-green);
}

.bot-icon {
    background-color: var(--accent-gold-light);
    border: 1px solid var(--accent-gold);
}

.stats-icon {
    background-color: #DEF7EC;
    color: #03543F;
}

.fb-content {
    display: flex;
    flex-direction: column;
}

.fb-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
}

.fb-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.fb-meta {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-gray);
}

.fb-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-green);
}

/* Placement of floaters */
.fb-1 {
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.fb-2 {
    bottom: 15%;
    right: -15%;
    animation-delay: 2s;
}

.fb-3 {
    top: 50%;
    left: -20%;
    animation-delay: 4s;
}

.circle-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.glow-1 {
    background-color: rgba(10, 79, 53, 0.15);
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.glow-2 {
    background-color: rgba(223, 177, 91, 0.15);
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
}

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

/* --- COMO FUNCIONA SECTION --- */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(10, 79, 53, 0.08);
}

.step-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* --- WHATSAPP SIMULATION SECTION --- */
.simulation-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.simulation-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.simulation-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.sim-feat-item {
    display: flex;
    gap: 16px;
}

.sim-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sim-feat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.sim-feat-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.replay-action-wrapper {
    margin-top: 16px;
}

/* Phone Mockup Frame */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 680px;
    background: #111827;
    border: 12px solid #374151;
    border-radius: 40px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #000000;
    border-radius: var(--border-radius-full);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 20px);
    margin-top: 10px;
    background: #f0f2f5;
    position: relative;
    overflow: hidden;
}

.phone-home-indicator {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    z-index: 10;
}

/* WhatsApp Layout */
.whatsapp-chat {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wa-header {
    background-color: #075E54;
    color: #ffffff;
    padding: 24px 12px 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-back {
    width: 20px;
    height: 20px;
    opacity: 0.85;
}

.wa-avatar-container {
    position: relative;
}

.wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-white);
    object-fit: cover;
}

.wa-avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #4ade80;
    border: 1.5px solid #075E54;
    border-radius: 50%;
}

.wa-profile-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.wa-status {
    font-size: 0.7rem;
    opacity: 0.85;
}

.wa-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wa-icon {
    width: 18px;
    height: 18px;
    opacity: 0.85;
    cursor: pointer;
}

.wa-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px;
    background-color: #efeae2;
    background-image: radial-gradient(#d5cbb8 1px, transparent 0), radial-gradient(#d5cbb8 1px, transparent 0);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Phone Body */
.wa-body::-webkit-scrollbar {
    width: 4px;
}
.wa-body::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
    border-radius: 2px;
}

.wa-date-divider {
    text-align: center;
    margin: 8px 0;
}

.wa-date-divider span {
    background-color: rgba(255, 255, 255, 0.85);
    color: #54656f;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.wa-encryption-info {
    background-color: #ffe596;
    color: #54656f;
    font-size: 0.72rem;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.wa-encryption-info i {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Message Bubbles */
.wa-message {
    max-width: 80%;
    padding: 8px 12px 14px 12px;
    font-size: 0.88rem;
    position: relative;
    box-shadow: 0 1px 1.5px rgba(0,0,0,0.12);
    animation: bubbleEntrance 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
    line-height: 1.4;
}

.wa-message.sent {
    background-color: #d9fdd3;
    color: #111827;
    align-self: flex-end;
    border-radius: 12px 12px 0 12px;
}

.wa-message.received {
    background-color: #ffffff;
    color: #111827;
    align-self: flex-start;
    border-radius: 12px 12px 12px 0;
}

.wa-time {
    position: absolute;
    bottom: 2px;
    right: 8px;
    font-size: 0.65rem;
    color: #667781;
}

.wa-message.sent .wa-time {
    display: flex;
    align-items: center;
    gap: 2px;
}

.wa-message-ticks {
    color: #53bdeb;
    width: 14px;
    height: 14px;
}

/* Simulated Audio Message */
.wa-audio-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 220px;
    padding: 4px 0;
}

.wa-audio-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #54656f;
}

.wa-audio-btn i {
    width: 18px;
    height: 18px;
}

.wa-audio-wave {
    flex-grow: 1;
    height: 20px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.wa-audio-wave span {
    width: 3px;
    background-color: #8696a0;
    border-radius: 1px;
}

.wa-audio-meta {
    font-size: 0.7rem;
    color: #667781;
    display: flex;
    flex-direction: column;
}

/* Typing indicator */
.wa-message.received.typing-indicator {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background-color: #8696a0;
    border-radius: 50%;
    animation: dotPulse 1.2s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Chat Footer / Input */
.wa-footer {
    background-color: #f0f2f5;
    padding: 10px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-input-container {
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 22px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-input-icon {
    width: 20px;
    height: 20px;
    color: #54656f;
    cursor: pointer;
}

.wa-input-field {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 0.88rem;
    background: none;
    color: #111827;
}

.wa-mic-container {
    width: 38px;
    height: 38px;
    background-color: #00a884;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-mic-icon {
    width: 18px;
    height: 18px;
}

@keyframes bubbleEntrance {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- BENTO GRID / FEATURES --- */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.bento-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.bento-item.bento-large {
    grid-column: span 2;
}

.bento-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.bento-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.bento-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    max-width: 480px;
}

.bento-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
}

/* Feature Mock Message display in Bento Card */
.bento-visual {
    position: absolute;
    right: 24px;
    bottom: -15px;
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: rotate(-3deg);
    opacity: 0.85;
    pointer-events: none;
}

.bento-mock-msg {
    padding: 8px 12px;
    font-size: 0.78rem;
    box-shadow: var(--shadow-md);
    border-radius: 10px;
    max-width: 90%;
}

.bento-mock-msg.user {
    background-color: #d9fdd3;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.bento-mock-msg.bot {
    background-color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 0;
    border: 1px solid var(--border-color);
}

.bento-visual-horizontal {
    margin-top: 16px;
    width: 100%;
}

.goal-progress-card {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.goal-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(0,0,0,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
    border-radius: 4px;
}

.goal-footer {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* --- COMPARISON SECTION --- */
.comparison-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table thead th:first-child {
    width: 35%;
}

.comparison-table thead th {
    width: 32.5%;
}

.comparison-table .highlight-column {
    background-color: var(--primary-green-light);
    border-left: 2px solid var(--primary-green);
    border-right: 2px solid var(--primary-green);
    text-align: center;
}

.comparison-table thead th.highlight-column {
    border-top: 4px solid var(--primary-green);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.th-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
}

.td-content {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.comparison-table td.highlight-column .td-content {
    justify-content: center;
}

.td-content i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.table-logo {
    height: 48px;
    width: auto;
}

.comparison-table tbody td.highlight-column {
    font-weight: 600;
    color: var(--primary-green-dark);
}

.comparison-table tbody tr:last-child td.highlight-column {
    border-bottom: 2px solid var(--primary-green);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.feature-name {
    font-weight: 600;
    color: var(--text-dark);
}

.icon-success {
    color: #057a55;
}

.icon-danger {
    color: #e02424;
}

.icon-warning {
    color: #b43e00;
}

/* --- BENEFITS SECTION --- */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.benefit-card-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.25rem;
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- CTA FINAL SECTION --- */
.cta-final-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.cta-final-container {
    background: radial-gradient(circle at 10% 20%, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.cta-final-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.cta-title {
    color: var(--bg-white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-cta-whatsapp {
    background-color: #25d366;
    color: var(--bg-white);
    border: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-cta-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
}

.cta-disclaimer {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(223, 177, 91, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--bg-dark);
    color: #a0aec0;
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-color-dark);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo-text {
    color: var(--bg-white);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h4 {
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color-dark);
    padding-top: 32px;
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    background-color: var(--primary-green);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* --- SCROLL REVEAL ELEMENT ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.desktop-only {
    display: inline;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Desktop & Notebooks (up to 1200px) */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .steps-grid {
        gap: 20px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .bento-item.bento-large {
        grid-column: span 2;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablets (up to 768px) - Mobile First styling adapts here */
@media (max-width: 768px) {
    .navbar-container {
        height: 64px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .navbar-container .btn {
        display: none; /* Hide top CTA on smaller screens, drawer handles it */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        padding: 120px 0 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .desktop-only {
        display: none;
    }
    
    .fb-1 { left: -5%; }
    .fb-2 { right: -5%; }
    .fb-3 { left: -10%; }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .simulation-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Active full screen width WhatsApp simulation in mobile */
    .phone-mockup {
        width: 100%;
        max-width: 100%;
        height: 600px;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .phone-speaker, .phone-home-indicator {
        display: none;
    }
    
    .phone-screen {
        margin-top: 0;
        height: 100%;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .bento-item {
        height: auto;
        min-height: 220px;
        gap: 24px;
    }
    
    .bento-item.bento-large {
        grid-column: span 1;
    }
    
    .bento-visual, .bento-visual-horizontal {
        position: relative;
        transform: none;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 16px;
        opacity: 1;
    }
    
    .bento-mock-msg {
        max-width: 100%;
    }
    
    .comparison-table-wrapper {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .cta-final-container {
        padding: 48px 24px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Small mobile screens (up to 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .fb-1, .fb-2, .fb-3 {
        display: none; /* Hide floating cards on very small phones to reduce clutter */
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
