/* style.css - Devcod Ultimate Responsive System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Space+Grotesk:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #020617;
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;
    --primary: #3b82f6;
    --accent: #8b5cf6;
    --success: #10b981;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --gradient-main: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-text: linear-gradient(to right, #60a5fa, #c084fc);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; margin-bottom: 15px; color: white; }
a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }

/* LAYOUT & CONTAINER */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
    z-index: 2; 
}
.section-padding { padding: 100px 0; }
.text-gradient { 
    background: var(--gradient-text); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: 800; 
}

/* HEADER RESPONSIVO */
header {
    position: fixed; top: 0; width: 100%;
    background: rgba(2, 6, 23, 0.95); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border); z-index: 1000; padding: 15px 0;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 22px; font-weight: 800; color: white; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px; }
.nav-links a:hover, .nav-links a.active { color: white; }
.cta-header {
    background: var(--gradient-main); color: white; padding: 10px 20px; border-radius: 50px;
    font-weight: 600; font-size: 12px; box-shadow: var(--shadow-glow); white-space: nowrap;
}

/* HERO SECTION */
.hero-full {
    min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 60%);
    padding: 120px 0 60px; position: relative;
}
.page-hero {
    padding: 140px 0 60px; text-align: center; 
    background: radial-gradient(circle at top, rgba(139, 92, 246, 0.1), transparent 50%);
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 700px; margin: 0 auto 30px; }

/* BENTO GRID (RESPONSIVO REAL) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px;
}
.bento-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 30px; border-radius: 20px; position: relative; overflow: hidden;
    transition: 0.4s; display: flex; flex-direction: column; justify-content: space-between;
}
.bento-card:hover { border-color: var(--primary); background: var(--bg-card-hover); transform: translateY(-5px); }
.bento-icon {
    width: 45px; height: 45px; background: rgba(59,130,246,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); margin-bottom: 20px;
}

/* LISTAS & FAQ */
.feature-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.95rem; }
.feature-list i { color: var(--success); flex-shrink: 0; }
.faq-item { background: var(--bg-card); margin-bottom: 15px; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.faq-question { padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.95rem; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.4s ease; color: var(--text-muted); font-size: 0.9rem; }
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }
.faq-item.active .faq-question { color: var(--primary); }

/* BOTÕES */
.btn-primary {
    background: white; color: var(--bg-dark); padding: 15px 30px; border-radius: 50px;
    font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 1rem; cursor: pointer; border: none; width: auto;
}
.btn-primary:hover { background: #cbd5e1; transform: translateY(-2px); }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 900px; background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px); border: 1px solid var(--border);
    padding: 20px; border-radius: 15px; z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center;
}
.cookie-banner.hidden { display: none; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; flex-wrap: wrap; }
.cookie-content p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-banner { width: 95%; bottom: 10px; }
}

/* LOGO MARQUEE */
.marquee-container {
    overflow: hidden; padding: 40px 0; background: #000;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative;
}
.marquee-track { display: flex; gap: 50px; width: max-content; animation: scroll 30s linear infinite; }
.brand-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-weight: 700; font-size: 1.2rem; opacity: 0.6; }
.brand-item i { font-size: 1.5rem; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FOOTER */
footer { background: #00020a; border-top: 1px solid var(--border); padding: 60px 0 30px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-links a { display: block; margin-bottom: 10px; color: var(--text-muted); font-size: 0.9rem; }

/* FORMULÁRIO */
.form-box { background: var(--bg-card); padding: 30px; border-radius: 20px; border: 1px solid var(--border); }
.form-control { width: 100%; padding: 15px; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 8px; color: white; margin-bottom: 15px; }
.btn-submit { width: 100%; padding: 15px; background: var(--success); color: white; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 1rem; }

/* MEDIA QUERIES (MOBILE) */
@media (max-width: 900px) {
    .nav-links {
        position: fixed; bottom: 0; left: 0; width: 100%;
        background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px);
        padding: 15px; overflow-x: auto; justify-content: flex-start;
        border-top: 1px solid var(--border); border-bottom: none; z-index: 999; gap: 15px;
    }
    .nav-links a { white-space: nowrap; background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 20px; }
    .cta-header { display: none; }
    .section-padding { padding: 60px 0; }
    .hero-full { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .btn-primary { width: 100%; }
}
