/* Variáveis alinhadas com o App */
:root {
    --bg-color: #050505;
    --card-bg: #0F0F0F;
    --border-color: #1F1F1F;
    
    /* Gradientes e Cores do App */
    --primary-gradient: linear-gradient(90deg, #FFE5F1 0%, #F042FF 50%, #7226FF 100%);
    --primary-glow: linear-gradient(41.06deg, #CC32FF 0%, #8B00FD 100%);
    --secondary-glow: linear-gradient(135deg, #FF8A00 0%, #FF6B00 100%);
    
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --text-muted: #666666;
    
    --font-main: 'Urbanist', sans-serif;
    
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --glass-blur: blur(24px);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    outline: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
    width: 100%;
}

img {
    max-width: 100%;
}

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

/* Utilitários */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.overline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800;
    color: #F042FF;
    margin-bottom: 16px;
    display: block;
}

.mt-4 { margin-top: 32px; }

/* Botões */
.btn-primary {
    background: var(--primary-gradient);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0px 10px 20px rgba(156, 78, 220, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #F042FF 0%, #7226FF 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-primary:hover {
    box-shadow: 0px 15px 30px rgba(156, 78, 220, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

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

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-buttons.large {
    justify-content: center;
}

.store-buttons.large-hero {
    justify-content: flex-start; /* Alinhado a esquerda no hero */
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #080808;
    border: 1px solid #222;
    padding: 12px 24px;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 160px;
}

.store-btn i {
    font-size: 28px;
}

.store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-btn .small { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
.store-btn .big { font-size: 16px; font-weight: 800; }

.store-btn:hover {
    background: #111;
    border-color: #7226FF;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(114, 38, 255, 0.15);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 54px; /* Aumentado conforme solicitado */
    display: block;
}

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

.nav-links a:not(.btn-primary) {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--text-primary);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-link-login {
    margin-right: 16px;
    font-weight: 700 !important;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139,0,253,0.12) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #F042FF;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #F042FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #F042FF;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 90%;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.users-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.users-preview span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

/* Hero Visual & Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1500px;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 48px;
    border: 8px solid #222;
    position: relative;
    box-shadow: 
        0 0 0 2px #333,
        0 30px 60px -15px rgba(0, 0, 0, 0.9), 
        0 0 50px rgba(114, 38, 255, 0.2);
    z-index: 2;
    overflow: hidden;
    transform: rotateY(-12deg) rotateX(8deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-frame:hover {
    transform: rotateY(0) rotateX(0) translateY(-10px);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #222;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    flex-direction: column;
    padding: 40px 16px 20px;
}

/* Mock App UI */
.app-header {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.app-logo-small {
    width: 90px;
}

.app-card-highlight {
    width: 100%;
    height: 220px;
    background-image: url('https://approle.com.br/app/images/3.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.app-card-highlight::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(to top, #000, transparent);
    border-radius: 0 0 20px 20px;
}
.app-card-highlight > * {
    position: relative;
    z-index: 2;
}
.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}
.app-card-highlight h3 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 800;
}
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #ddd;
}
.card-avatars { display: flex; }
.c-avatar { width: 24px; height: 24px; background: #333; border-radius: 50%; border: 1.5px solid #000; margin-left: -8px; }

.app-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.app-list { display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.app-list-item { 
    display: flex; gap: 12px; align-items: center; 
    background: #111; padding: 10px; border-radius: 12px;
}
.ali-img { width: 48px; height: 48px; border-radius: 10px; }
.ali-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ali-name { font-size: 14px; font-weight: 700; color: #fff; }
.ali-sub { font-size: 11px; color: #888; }

.app-nav-bar {
    margin-top: auto;
    height: 60px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    padding: 0 10px;
}
.anb-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
.anb-item i {
    font-size: 23px; /* Igual ao App */
    color: #fff;
}
.anb-item.active i { 
    color: transparent;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}
.anb-item.center img { 
    width: 26px; /* Igual ao App */
    height: 26px;
    border-radius: 50%;
    filter: drop-shadow(0 0 5px #F042FF); 
}

/* Floating Glass Cards */
.glass-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    z-index: 3;
    min-width: 220px;
}

.glass-card strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px;}
.glass-card span { font-size: 12px; color: #aaa; }

.card-1 {
    top: 12%;
    right: -40px;
    animation: float 6s ease-in-out infinite;
}
.card-2 {
    bottom: 12%;
    left: -40px;
    animation: float 6s ease-in-out infinite 2.5s;
}

.icon-box-check {
    width: 40px; height: 40px; background: rgba(143, 255, 102, 0.15);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: #8FFF66; font-size: 18px;
}
.icon-box-small {
    width: 40px; height: 40px; background: rgba(114, 38, 255, 0.2);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: #F042FF; font-size: 18px;
}

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

/* Marquee Section */
.marquee-section {
    padding: 24px 0;
    background: #000;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    user-select: none;
}

.marquee-content {
    display: inline-block;
    animation: marquee 60s linear infinite;
    font-weight: 800;
    font-size: 24px; /* Maior */
    letter-spacing: 4px;
    color: #333;
}

.marquee-content span { color: transparent; -webkit-text-stroke: 1px #444; }
.marquee-content .sep { color: #F042FF; margin: 0 40px; -webkit-text-stroke: 0; font-size: 16px; vertical-align: middle; }

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

/* Features */
.features {
    padding: 140px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

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

.glass-panel {
    background: #080808;
    border: 1px solid #1a1a1a;
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.glass-panel:hover {
    background: #0F0F0F;
    border-color: #333;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.featured-panel {
    background: linear-gradient(180deg, #120a1f 0%, #0a0a0a 100%);
    border-color: #331a5c;
}

.f-icon-bg {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.featured-panel .f-icon-bg {
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 10px 20px rgba(139,0,253,0.3);
}

.glass-panel h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.glass-panel p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Detailed Sections */
.detail-section {
    padding: 100px 0;
    background: #020202;
    position: relative;
    overflow: hidden; /* FIX: Evita que o glow e elementos flutuantes estourem a largura */
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.detail-image {
    position: relative;
    border-radius: 32px;
}

.detail-img-glow {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(114, 38, 255, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.glow-blue {
    background: radial-gradient(circle, rgba(0, 209, 255, 0.15) 0%, transparent 70%);
}

.rounded-img {
    width: 100%;
    border-radius: 32px;
    border: 1px solid #222;
    position: relative;
    z-index: 1;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    text-align: center;
}

.floating-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--secondary-glow);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.floating-stat span {
    font-size: 13px;
    color: #ccc;
    font-weight: 600;
}

.detail-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.detail-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #e0e0e0;
}

.check-list i {
    color: #8FFF66;
    background: rgba(143, 255, 102, 0.1);
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.reverse .detail-wrapper {
    direction: rtl; /* Hack rápido, melhor usar grid-template-areas */
}
.reverse .detail-wrapper > * {
    direction: ltr;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 140px 0;
    background: #050505;
}

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

.testimonial-card {
    padding: 40px 32px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.user-info img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info strong {
    display: block;
    font-size: 16px;
    color: #fff;
}

.user-info span {
    font-size: 14px;
    color: #888;
}

.testimonial-card p {
    font-size: 16px;
    color: #ccc;
    font-style: italic;
    margin-bottom: 24px;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

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

.faq-wrapper h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 16px;
}

.faq-item summary {
    padding: 24px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item details[open] summary i {
    transform: rotate(180deg);
}

.faq-item summary i {
    color: #7226FF;
    transition: transform 0.3s ease;
}

.faq-item p {
    color: var(--text-secondary);
    padding-bottom: 24px;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 140px 0;
}

.cta-box {
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    border: 1px solid var(--border-color);
    padding: 100px 40px;
    position: relative;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, #F042FF, transparent);
}

.cta-box h2 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 800;
    background: linear-gradient(180deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-box p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid #1a1a1a;
    background: #020202;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: #888;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #F042FF;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.brand-col p {
    font-size: 15px;
    color: #666;
    max-width: 280px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #F042FF;
    border-color: #F042FF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 66, 255, 0.3);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #111;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    align-items: center;
}

.footer-bottom-links a {
    color: #555;
    margin: 0 10px;
}
.footer-bottom-links a:hover { color: #888; }
.footer-bottom .sep { margin: 0 5px; }

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 56px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .detail-wrapper { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .detail-image { order: -1; max-width: 600px; margin: 0 auto; width: 100%; } /* Ajuste de width */
    .floating-stat { right: 0; }
    .reverse .detail-wrapper { direction: ltr; }
    .check-list li { justify-content: center; }
    .stats-row { display: block; }
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { margin: 0 auto; }
    .hero-visual { display: none; } 
    .cta-group { align-items: center; }
    .store-buttons.large-hero { justify-content: center; }
    .store-buttons { justify-content: center; }
    .users-preview { justify-content: center; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed; /* Fixado na tela inteira */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* Altura total */
        flex-direction: column;
        justify-content: center; /* Centraliza itens */
        background: rgba(5, 5, 5, 0.9); /* Fundo escuro com transparência */
        backdrop-filter: blur(24px); /* Blur forte */
        -webkit-backdrop-filter: blur(24px);
        padding: 40px;
        gap: 32px;
        text-align: center;
        z-index: -1; /* Fica atrás do header da navbar */
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 42px; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-col { align-items: center; display: flex; flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .brand-col p { margin: 0 auto; }
}