@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --secondary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --neon-blue: #00d4ff;
    --neon-purple: #b537f2;
    --neon-pink: #ff006e;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-gradient);
    color: white;
    /* Adicionado para impedir o scroll da página por baixo do menu mobile */
    overflow-x: hidden; /* Garante que não haja scroll horizontal */
    line-height: 1.6;
}
body.menu-open {
    overflow-y: hidden; /* Impede o scroll vertical quando o menu está aberto */
}

/* --- ANIMAÇÃO DE ROLAGEM --- */
.animated {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated.visible {
    opacity: 1;
    transform: translateY(0);
}


.text-content-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    margin-top: 40px;
    text-align: left;
}

.text-content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.text-content-section p, .text-content-section ul {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.8;
}

.text-content-section ul {
    padding-left: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--dark-gradient);
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(181, 55, 242, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Glassmorphism Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1010;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 1000px;
}

.header:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: var(--secondary-gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--neon-blue);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--neon-blue); }
    100% { box-shadow: 0 0 20px var(--neon-blue); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* 3D Dashboard Visualization */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.dashboard-3d {
    position: relative;
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite;
}

@keyframes float3d {
    0%, 100% { transform: translateY(0px) rotateX(5deg) rotateY(-10deg); }
    50% { transform: translateY(-20px) rotateX(10deg) rotateY(-15deg); }
}

.main-screen {
    width: 500px;
    height: 350px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.main-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(181, 55, 242, 0.1) 50%, 
        rgba(255, 0, 110, 0.1) 100%);
    border-radius: 25px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot.red { background: #ff5f56; animation-delay: 0s; }
.dot.yellow { background: #ffbd2e; animation-delay: 0.5s; }
.dot.green { background: #27ca3f; animation-delay: 1s; }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

.screen-title {
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.metric-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.progress-section {
    position: relative;
    z-index: 1;
}

.progress-item {
    margin: 15px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--secondary-gradient);
    border-radius: 10px;
    position: relative;
    animation: progressLoad 2s ease-out;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressLoad {
    0% { width: 0; }
    100% { width: var(--width, 85%); }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-size: 0.8rem;
    animation: floatCard 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 50px;
    right: -50px;
    animation-delay: -2s;
}

.card-2 {
    bottom: 100px;
    left: -80px;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

/* Modern Features Section & Legal Section*/
.features, .legal, .how-it-works, .faq-section {
    padding: 120px 20px;
    position: relative;
}

.features-container, .legal-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--neon-purple);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(181, 55, 242, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Innovative Testimonials */
.testimonials {
    padding: 120px 20px;
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.author-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--neon-blue);
    font-size: 0.9rem;
}

/* Futuristic CTA */
.cta-section {
    padding: 120px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Particle Animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
    opacity: 0.6;
}

.particle:nth-child(2n) {
    background: var(--neon-purple);
    animation-delay: -5s;
}

.particle:nth-child(3n) {
    background: var(--neon-pink);
    animation-delay: -10s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- ESTILOS PARA A SEÇÃO DE ACORDO DOS TERMOS --- */
#agreement-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    transition: opacity 0.5s ease;
}
.checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
#terms-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--neon-blue);
}
#terms-checkbox:disabled + label {
    opacity: 0.5;
    cursor: not-allowed;
}
#agree-button {
    font-size: 1rem;
    padding: 15px 35px;
}
#agree-button:disabled {
    background: var(--glass-bg);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.5;
    filter: grayscale(80%);
}

/* --- ESTILOS PARA A MENSAGEM DE CONFIRMAÇÃO E ANIMAÇÃO --- */
#confirmation-message {
    text-align: center;
    margin-top: 40px;
}
#confirmation-message h4 {
    color: #4CAF50;
    font-size: 1.8rem;
    margin: 20px 0 10px;
}
#confirmation-message p {
    font-size: 1.1rem;
}
.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: scale-in 0.4s ease-in-out 0.9s both;
}
.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: draw-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: draw-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
@keyframes scale-in { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* --- Rodapé do Site --- */
.site-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 80px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-container { max-width: 1400px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column { text-align: left; }
.footer-logo { margin-bottom: 20px; display: inline-block; }
.footer-description { color: rgba(255, 255, 255, 0.7); line-height: 1.7; }

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.footer-column ul { list-style: none; padding: 0; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.3s ease; }
.footer-column ul a:hover { color: var(--neon-blue); text-decoration: underline; }

.social-icons { display: flex; gap: 15px; }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.6);
}

/* --- NOVOS ESTILOS: COMO FUNCIONA --- */
.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--secondary-gradient);
    border: 2px solid var(--glass-border);
}

/* --- NOVOS ESTILOS: FAQ --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: background 0.3s ease;
}
.faq-item:hover { background: rgba(255, 255, 255, 0.15); }
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}
.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--neon-blue);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-answer p {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* --- ESTILOS PARA A SEÇÃO DE ACORDO INATIVA --- */
#agreement-section.inactive {
    opacity: 0.5;
    pointer-events: none;
}
#agreement-section.inactive * { cursor: not-allowed; }
#agreement-section { transition: opacity 0.5s ease; }

/* --- ESTILOS PARA OS SELOS DE CONFIANÇA v2.0 --- */
.trust-seals {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.seals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.seal-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.seal-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 40%);
    transition: transform 0.8s ease;
    transform: scale(0);
    transform-origin: center;
}

.seal-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.seal-item:hover::before { transform: scale(1); }

.seal-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(181, 55, 242, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.05);
}

.seal-item:hover .seal-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(181, 55, 242, 0.2));
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.5);
    transform: scale(1.1);
}

.seal-icon {
    font-size: 3rem;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.seal-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.seal-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


/* =================================================================== */
/* === RESPONSIVE DESIGN - MEDIA QUERIES === */
/* =================================================================== */

/* Esconde o menu desktop e mostra o toggle em telas menores que 1024px */
@media (max-width: 1024px) {
    .nav-menu {
        display: none; /* Esconde a navegação principal (versão desktop) */
    }
    .mobile-menu-toggle {
        display: block; /* Mostra o botão hambúrguer */
    }
    .desktop-cta {
        display: none; /* Esconde o botão CTA do desktop */
    }
    
    /* ESTILOS DO MENU MOBILE (QUANDO ATIVO) */
    .nav-menu.mobile-active {
        display: flex; /* Torna-o visível */
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Centraliza verticalmente */
        position: fixed; /* Fixado na viewport, cobrindo tudo */
        top: 0;
        left: 0;
        width: 100vw; /* 100% da largura da viewport */
        height: 100vh; /* 100% da altura da viewport */
        background: var(--dark-gradient); /* Fundo escuro */
        opacity: 1;
        pointer-events: auto;
        transition: opacity 0.3s ease;
        z-index: 1015; /* Garante que fique acima do conteúdo */
        gap: 1.5rem; /* Espaçamento maior entre os links */
    }

    .nav-menu.mobile-active li {
        width: 100%;
        text-align: center;
    }

    .nav-menu.mobile-active a {
        padding: 15px 0; /* Espaçamento vertical para os links */
        display: block;
        width: 100%;
        font-size: 1.8rem; /* Tamanho da fonte para mobile */
        color: rgba(255, 255, 255, 0.9); /* Cor mais vibrante */
    }
    
    .nav-menu.mobile-active a:hover {
        background: rgba(255, 255, 255, 0.08); /* Fundo sutil ao passar o mouse */
        text-shadow: 0 0 10px var(--neon-blue);
    }
}


@media (max-width: 768px) {
    /* Ajustes gerais para telas menores que 768px (celulares maiores e tablets) */
    .header {
        top: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        transform: none; /* ESSENCIAL: Remove a transformação que bugava o menu */
        padding: 12px 20px;
        border-radius: 25px;
    }

    .logo { font-size: 20px; }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 100px 15px 50px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.8rem; }
    
    .main-screen {
        width: 300px;
        height: 200px;
        padding: 15px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .metric-card { padding: 15px; }
    .metric-value { font-size: 1.4rem; }
    .metric-label { font-size: 0.7rem; }
    .screen-title { font-size: 0.9rem; }
    .floating-card { display: none; }

    .features,
    .testimonials,
    .cta-section,
    .legal,
    .how-it-works,
    .faq-section,
    .trust-seals {
        padding: 80px 15px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-subtitle { font-size: 1rem; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { padding: 30px 20px; }
    .feature-title { font-size: 1.2rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonial-card { padding: 25px; }
    .cta-title { font-size: 2.2rem; line-height: 1.2; }
    .cta-description { font-size: 1.1rem; }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    /* Ajustes para celulares pequenos */
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .main-screen {
        width: 280px;
        height: 180px;
        padding: 12px;
    }
    .metric-value { font-size: 1.2rem; }
    .section-title { font-size: 1.8rem; }
    .cta-title { font-size: 2rem; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .header { padding: 10px 15px; }
    .logo { font-size: 18px; }
    .cta-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
