/* 
  Paraguai 360 - Ultra Modern Landing Page Styles
  Theme: Premium, Fintech/Startup (Deep Black, White, Gold)
*/

:root {
    /* Color Palette */
    --bg-dark: #050505;
    --bg-darker: #000000;
    
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    
    --gold-primary: #D4AF37;
    --gold-light: #F9E596;
    --gold-dark: #997A15;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    --gold-gradient-text: linear-gradient(to right, var(--gold-light), var(--gold-primary));
    --glass-bg: rgba(20, 20, 20, 0.4);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Borders */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold-glass: 1px solid rgba(212, 175, 55, 0.2);
    
    /* Shadows */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.4);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
}

.center {
    text-align: center;
}

/* Typography Utilities */
.text-gold {
    color: var(--gold-primary);
}

.gradient-text {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-kicker {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.section-description {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--gold-primary);
}

.blob-2 {
    bottom: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--gold-dark);
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-glass);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--text-main);
}

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

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 24px;
}

.close-menu-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.mobile-cta-btn {
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .nav-links, .desktop-only {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo-img {
        height: 52px; /* Reduzido no mobile para não quebrar o layout */
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    text-align: center;
}

.btn-outline-gold {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold);
}

.btn-primary-gold {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border: none;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--gold-dark));
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.btn-primary-gold:hover::before {
    opacity: 1;
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(212, 175, 55, 0.6);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.25rem;
}

.hero-btn {
    flex-direction: column;
    gap: 4px;
}

.hero-btn span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-subtext {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 600;
    font-family: var(--font-body);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Bar */
.stats-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(90deg, transparent, rgba(20, 20, 20, 0.6), transparent);
    padding: 40px 0;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-main);
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 32px;
    }
    .stat-divider {
        width: 100px;
        height: 1px;
    }
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--text-main);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* Problem Section */
.problem-header {
    margin-bottom: 64px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.problem-card {
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

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

.problem-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-main);
    margin-bottom: 40px;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-list h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.solution-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Glass Card & Nodes (Visual Element) */
.glass-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 450px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02), 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.glass-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.dots {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.glass-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.network-nodes {
    position: relative;
    height: calc(100% - 60px);
    width: 100%;
}

.network-lines {
    position: absolute;
    top: 0; left: 0;
    z-index: 0;
}

.network-lines line {
    stroke: rgba(212, 175, 55, 0.2);
    stroke-width: 2;
    stroke-dasharray: 4;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: 100; }
}

.node {
    position: absolute;
    padding: 10px 18px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.node-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border: none;
    font-size: 1.1rem;
    z-index: 10;
}

/* Floating animation for nodes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.node-floating {
    animation: float 6s ease-in-out infinite;
}

.node-1 { top: 15%; left: 20%; animation-delay: 0s; }
.node-2 { top: 25%; right: 20%; animation-delay: 1s; }
.node-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.node-4 { bottom: 25%; right: 15%; animation-delay: 3s; }
.node-5 { bottom: 15%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }

@media (max-width: 992px) {
    .solution-content {
        grid-template-columns: 1fr;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.feature-item {
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    color: var(--gold-primary);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}

.feature-item h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-muted);
}

/* Positioning & Vision */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.positioning-box, .vision-box {
    padding: clamp(32px, 5vw, 48px);
    height: 100%;
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.positioning-box h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
}

.positioning-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.positioning-box strong {
    color: var(--text-main);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 24px;
}

.vision-main {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.vision-box p:not(.vision-main) {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.highlight-text {
    color: var(--text-main) !important;
    font-weight: 700;
    font-size: 1.3rem !important;
}

/* Authority Section */
.authority-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    padding: clamp(32px, 6vw, 64px);
}

.authority-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.authority-desc strong {
    color: var(--text-main);
}

.authority-logo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
}

.authority-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0,0,0,0.5));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gold-primary);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.authority-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    100% { left: 200%; }
}

.authority-image-placeholder span {
    font-size: 1rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .authority-content {
        grid-template-columns: 1fr;
    }
    .authority-image-placeholder {
        aspect-ratio: 16/9;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-item.active {
    border-color: var(--gold-primary);
    background: rgba(20, 20, 20, 0.8);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
    font-weight: 500;
}

.faq-question i {
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px; /* Arbitrary large max height for transition */
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Final CTA Section */
.cta-section {
    padding: 80px 0 120px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
    border: var(--border-gold-glass);
    border-radius: 32px;
    padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.cta-card-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-card h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(1.8rem, 4vw, 3rem);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.3;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-guarantee i {
    color: var(--gold-primary);
}

/* Floating Sticky CTA Mobile */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366; /* WhatsApp Green */
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.floating-cta i {
    font-size: 1.5rem;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta:hover {
    background: #1ebe5d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

@media (min-width: 769px) {
    .floating-cta {
        display: none; /* Only show on mobile */
    }
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px;
    background: rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    height: 120px;
    margin-bottom: 16px;
}

.footer-slogan {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-logo-img {
        height: 90px; /* Menor no mobile */
    }
}

/* Animations & Reveal */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, visibility;
}

.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1);
}

.fade-up { transform: translateY(40px); }
.fade-right { transform: translateX(-40px); }
.fade-left { transform: translateX(40px); }
.zoom-in { transform: scale(0.95); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Pulse Animation */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.pulse-animation {
    animation: pulse-gold 2s infinite;
}

.pulse-gold {
    animation: pulse-gold-inner 2s infinite;
}

@keyframes pulse-gold-inner {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 15px 5px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
}

/* Mobile Specific Optimizations */
@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .btn-lg {
        width: 100%;
        padding: 16px;
    }
    .node {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}
