:root {
    --bg-dark: #080b12; 
    --bg-card: #111625;
    --primary-blue: #0066ff;
    --bright-blue: #3b82f6;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --gradient-main: linear-gradient(135deg, #0066ff 0%, #00c6ff 100%);
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.blue-text { color: var(--bright-blue); }

/* --- WhatsApp Flutuante --- */
.floating-wpp {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px; background-color: #25D366; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 32px; box-shadow: 0 4px 15px rgba(0,0,0,0.4); z-index: 1000;
    transition: 0.3s; animation: wpp-pulse 3s infinite; text-decoration: none;
}
.floating-wpp:hover { transform: scale(1.1); background-color: #1ebc57; }
@keyframes wpp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Nav */
.navbar { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(8,11,18,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 45px; }
.nav-links a { color: var(--text-gray); margin-left: 30px; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: white; }
.btn-sm { border: 1px solid var(--primary-blue); padding: 8px 20px; border-radius: 4px; color: var(--bright-blue) !important; text-decoration: none; }
.btn-sm:hover { background: var(--primary-blue); color: white !important; }

/* Hero */
.hero { padding: 100px 0; text-align: center; position: relative; overflow: hidden; min-height: 80vh; display: flex; align-items: center; }
.hero-content { z-index: 2; position: relative; }
.badge-pill { background: rgba(59, 130, 246, 0.1); color: var(--bright-blue); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; display: inline-block; margin-bottom: 20px; border: 1px solid rgba(59, 130, 246, 0.2); }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
.hero p { max-width: 700px; margin: 0 auto 40px; color: var(--text-gray); font-size: 1.2rem; }
.gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.btn-main { background: var(--primary-blue); color: white; padding: 18px 40px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 1.1rem; display: inline-block; transition: 0.3s; box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3); border: none; cursor: pointer; }
.btn-main:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5); }
.tech-subtext { display: block; margin-top: 15px; color: #555; font-size: 0.9rem; }
.hero-bg-effect { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, rgba(0,0,0,0) 70%); z-index: 1; pointer-events: none; }

/* --- Carrossel de Logos (Ajustado para logos menores) --- */
.partners-section { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 50px 0; background: #0c101a; overflow: hidden; }
.partners-title { text-align: center; color: #666; font-size: 0.9rem; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.slider { height: 80px; margin: auto; overflow: hidden; position: relative; width: 100%; }
.slider::before, .slider::after { background: linear-gradient(to right, #0c101a 0%, rgba(12, 16, 26, 0) 100%); content: ""; height: 80px; position: absolute; width: 150px; z-index: 2; }
.slider::after { right: 0; top: 0; transform: rotateZ(180deg); } .slider::before { left: 0; top: 0; }
/* Ajuste de largura: 180px * 24 slides = 4320px */
.slide-track { animation: scroll 35s linear infinite; display: flex; width: calc(180px * 24); }
.slide { height: 80px; width: 180px; display: flex; align-items: center; justify-content: center; padding: 0 20px; }
.slide img { width: 100%; max-height: 50px; object-fit: contain; filter: grayscale(100%) opacity(0.5); transition: 0.5s; cursor: pointer; }
.slide img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-180px * 12)); } }

/* --- Seção de Vídeo Vertical --- */
.video-section { padding: 100px 0; background: linear-gradient(to bottom, #0c101a, var(--bg-dark)); }
.video-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.video-text h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.video-text p { color: var(--text-gray); margin-bottom: 30px; font-size: 1.1rem; }
.check-benefits { list-style: none; }
.check-benefits li { margin-bottom: 10px; font-size: 1.1rem; color: #ccc; }
.check-benefits i { color: var(--primary-blue); margin-right: 10px; }

/* Moldura de Celular */
.phone-frame {
    max-width: 350px; /* Largura típica de celular */
    margin: 0 auto;
    border: 8px solid #222;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/16; /* Proporção Vertical */
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    position: relative;
}
.phone-frame video { width: 100%; height: 100%; object-fit: cover; }

/* Services */
.services-section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-card); padding: 40px 30px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.service-card:hover { border-color: var(--primary-blue); transform: translateY(-10px); }
.active-card { border-color: rgba(0, 102, 255, 0.3); background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0,102,255,0.05) 100%); }
.icon-box { font-size: 2rem; color: var(--primary-blue); margin-bottom: 25px; }

/* --- Formulário de Aplicação (Grid) --- */
.form-section { padding: 100px 0; background: linear-gradient(to top, var(--bg-dark), #0d121f); }
.form-intro-center { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.form-intro-center h2 { font-size: 2.5rem; margin-bottom: 15px; }
.form-intro-center p { color: var(--text-gray); font-size: 1.1rem; }

.form-wrapper-wide { max-width: 900px; margin: 0 auto; }
.glass-form-grid {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas */
    gap: 25px;
}
.full-width { grid-column: 1 / -1; } /* Faz o campo ocupar a linha inteira */

.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 600; color: #ccc; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
    padding: 12px; border-radius: 6px; color: white; font-family: var(--font-body); font-size: 0.95rem; transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary-blue); background: rgba(0,0,0,0.6);
}
.btn-block { width: 100%; padding: 15px; font-size: 1.1rem; }
.privacy { text-align: center; margin-top: 15px; font-size: 0.8rem; color: #555; }

/* Footer */
footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 0 30px; background: #05070a; color: #666; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 0.5fr; gap: 40px; }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.contact-list { list-style: none; }
.contact-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: #94a3b8; font-size: 0.9rem; }
.contact-list i { color: var(--primary-blue); }
.social-icons { display: flex; gap: 15px; }
.social-icons a { color: white; font-size: 1.5rem; transition: 0.3s; }
.social-icons a:hover { color: var(--primary-blue); }
.copyright { text-align: center; font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; margin-top: 50px; }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .video-layout { grid-template-columns: 1fr; text-align: center; }
    .nav-links { display: none; }
    .floating-wpp { width: 50px; height: 50px; font-size: 26px; bottom: 20px; right: 20px; }
    .glass-form-grid { grid-template-columns: 1fr; padding: 30px; } /* Formulário vira 1 coluna no mobile */
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .contact-list li { justify-content: center; }
    .social-icons { justify-content: center; }
}