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

:root {
    --bg-dark: #030408; 
    --glass-bg: rgba(20, 25, 35, 0.45); 
    --glass-border: rgba(255, 255, 255, 0.1); 
    --primary: #0a58ff; 
    --primary-glow: rgba(10, 88, 255, 0.4);
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html, body { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
* { box-sizing: border-box; }

body { background-color: var(--bg-dark); color: var(--text-white); position: relative; }

/* CÉU ESTRELADO REALISTA */
.stars-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -3; background-image: radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.9) 0%, transparent 100%), radial-gradient(3px 3px at 30% 50%, rgba(255,255,255,0.8) 0%, transparent 100%), radial-gradient(2px 2px at 80% 10%, rgba(255,255,255,0.6) 0%, transparent 100%), radial-gradient(2.5px 2.5px at 60% 80%, rgba(255,255,255,0.9) 0%, transparent 100%), radial-gradient(3px 3px at 90% 90%, rgba(255,255,255,0.7) 0%, transparent 100%), radial-gradient(2px 2px at 40% 15%, rgba(255,255,255,0.5) 0%, transparent 100%); background-size: 300px 300px; opacity: 0.7; }
.shooting-star { position: absolute; height: 2px; width: 120px; background: linear-gradient(to right, transparent 0%, rgba(10,88,255,0.6) 60%, rgba(255,255,255,1) 100%); border-radius: 999px; filter: drop-shadow(0 0 8px rgba(10,88,255,0.8)); animation: shooting 7s linear infinite; opacity: 0; z-index: -2; }
.shooting-star:nth-child(1) { top: 10%; left: 10%; animation-delay: 1s; }
.shooting-star:nth-child(2) { top: 30%; left: 40%; animation-delay: 5s; }
.shooting-star:nth-child(3) { top: 5%; left: 70%; animation-delay: 9s; }
@keyframes shooting { 0% { transform: translate(0, 0) rotate(35deg); opacity: 0; } 5% { opacity: 1; } 15% { transform: translate(500px, 350px) rotate(35deg); opacity: 0; } 100% { opacity: 0; } }

#mouse-glow { position: fixed; width: 400px; height: 400px; background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%); border-radius: 50%; pointer-events: none; z-index: -1; filter: blur(40px); transform: translate(-50%, -50%); transition: opacity 0.3s; opacity: 0.4; mix-blend-mode: screen; }
.cosmic-anomaly { position: absolute; width: 800px; height: 800px; background: radial-gradient(circle, rgba(10,88,255,0.05) 0%, transparent 60%); border-radius: 50%; filter: blur(60px); z-index: -2; animation: pulseAnomaly 10s alternate infinite; }
@keyframes pulseAnomaly { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.2); opacity: 0.8; } }

/* CABEÇALHO (Agora perfeitamente centralizado usando absolute) */
header { position: fixed; top: 0; left: 0; width: 100%; z-index: 9999; padding: 25px 5%; transition: var(--transition); pointer-events: none; }
.header-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; pointer-events: auto; }

.logo img { height: 40px; transition: var(--transition); position: relative; z-index: 10; }

/* Desktop Nav 100% no meio da tela */
.desktop-nav { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 32px; background: rgba(255,255,255,0.03); padding: 12px 32px; border-radius: 100px; border: 1px solid var(--glass-border); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: var(--transition); z-index: 10; }
.nav-link { color: var(--text-gray); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--text-white); }

.header-actions { display: flex; gap: 15px; align-items: center; position: relative; z-index: 10; }
.mobile-toggle { display: none; background: transparent; border: none; color: white; font-size: 1.8rem; cursor: pointer; }

header.scrolled { padding: 15px 5%; top: 10px; }
header.scrolled .header-content { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); padding: 10px 30px; border-radius: 100px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
header.scrolled .desktop-nav { background: transparent; border: none; padding: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none;}
header.scrolled .logo img { height: 32px; }

/* MENU MOBILE */
.mobile-menu { position: fixed; top: 0; left: 100%; width: 100vw; height: 100vh; background: rgba(3,4,8,0.95); backdrop-filter: blur(15px); z-index: 9998; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px; transition: var(--transition); }
.mobile-menu.active { left: 0; }
.mobile-menu a { color: white; font-size: 1.5rem; text-decoration: none; font-weight: 600; }

.btn { padding: 14px 28px; border-radius: 100px; font-size: 0.95rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 0 20px var(--primary-glow); }
.btn-primary:hover { box-shadow: 0 0 40px var(--primary-glow); transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,0.05); color: white; border-color: var(--glass-border); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* HERO E ESTRUTURA */
section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;}
.hero-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding-top: 150px; position: relative; width: 100%; overflow: hidden; }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 10; max-width: 900px; width: 100%; }

.glass-panel { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px; box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3); transition: var(--transition); }
.glass-panel:hover { border-color: rgba(10, 88, 255, 0.4); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }

.badge { display: inline-block; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 100px; color: var(--text-gray); font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; }
h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px; color: var(--text-white); text-align: center; }
h2 { font-size: 3rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; line-height: 1.2; }
p { font-size: 1.15rem; color: var(--text-gray); line-height: 1.6; text-align: center; }
.text-blue { color: var(--primary); }

/* Ícones Flutuantes */
.floating-badge { position: absolute; background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 12px 20px; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 1; animation: float3D 6s ease-in-out infinite; }
.badge-1 { top: 45%; left: 3vw; animation-delay: 0s; }
.badge-2 { top: 60%; right: 3vw; animation-delay: 2s; }
.badge-3 { top: 18%; right: 8vw; animation-delay: 4s; }
@keyframes float3D { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* BENTO GRID */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-top: 40px; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-8 { grid-column: span 8; }
.bento-col-12 { grid-column: span 12; }
.bento-icon { font-size: 2rem; color: var(--primary); margin-bottom: 24px; background: rgba(10, 88, 255, 0.1); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 16px; border: 1px solid rgba(10, 88, 255, 0.2); }
.glass-panel h3 { font-size: 1.5rem; margin-bottom: 12px; }
.bento-img-wrap { width: 100%; height: 280px; border-radius: 16px; overflow: hidden; margin-top: 20px; border: 1px solid var(--glass-border); position: relative; }
.bento-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.glass-panel:hover .bento-img-wrap img { transform: scale(1.05); }

/* DASHBOARD & TRACKING */
.holo-dashboard { background: var(--bg-dark); border-radius: 20px; border: 1px solid var(--glass-border); padding: 30px; position: relative; overflow: hidden; box-shadow: inset 0 0 40px rgba(0,0,0,0.8); display: flex; flex-direction: column; gap: 20px; }
.holo-line { display: flex; justify-content: space-between; align-items: center; padding: 15px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; }
.holo-line span { font-family: monospace; font-size: 0.9rem; color: var(--text-gray); }
.holo-status { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #27c93f; }
.holo-status .dot { width: 8px; height: 8px; background: #27c93f; border-radius: 50%; box-shadow: 0 0 10px #27c93f; animation: blink 1s infinite alternate; }
.holo-circle { width: 100px; height: 100px; margin: 0 auto; border-radius: 50%; border: 4px dashed var(--primary); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: var(--primary); animation: spinCircle 10s linear infinite; box-shadow: 0 0 30px var(--primary-glow); }
.holo-circle span { animation: spinCircle 10s linear infinite reverse; }
@keyframes blink { 0% { opacity: 0.3; } 100% { opacity: 1; } }
@keyframes spinCircle { 100% { transform: rotate(360deg); } }

/* CALENDÁRIO MODAL */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.8); z-index: 10000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { width: 95%; max-width: 500px; max-height: 90vh; overflow-y: auto; padding: 40px; position: relative; background: var(--bg-dark); }
.close-modal { position: absolute; top: 20px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; transition: 0.2s; }
.close-modal:hover { color: #ff5f56; }
.modal-input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 14px; border-radius: 8px; color: white; margin-bottom: 15px; font-family: 'Inter'; outline: none; transition: 0.3s; font-size: 1rem; }
.modal-input:focus { border-color: var(--primary); }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin: 20px 0; font-weight: bold; }
.cal-header button { background: rgba(255,255,255,0.1); border: none; color: white; padding: 5px 12px; border-radius: 5px; cursor: pointer; transition: 0.2s; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.8rem; color: var(--text-gray); margin-bottom: 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; }
.cal-day { padding: 10px 0; border-radius: 8px; cursor: pointer; background: rgba(255,255,255,0.03); transition: 0.2s; font-size: 0.9rem; }
.cal-day:hover:not(.disabled) { background: var(--primary); color: white; }
.cal-day.disabled { opacity: 0.2; cursor: not-allowed; background: transparent; }
.selected-date-box { background: rgba(10, 88, 255, 0.1); border: 1px solid var(--primary); padding: 15px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; margin-top: 15px; }
.selected-date-box button { background: none; border: none; color: var(--primary); cursor: pointer; font-weight: bold; text-decoration: underline; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.time-slot { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 12px; border-radius: 8px; text-align: center; cursor: pointer; transition: 0.2s; font-size: 0.9rem; }
.time-slot:hover:not(.disabled) { border-color: var(--primary); }
.time-slot.selected { background: var(--primary); border-color: var(--primary); font-weight: bold; }
.time-slot.disabled { opacity: 0.4; cursor: not-allowed; border-color: transparent; }
.time-busy-text { display: block; font-size: 0.65rem; color: #ff5f56; margin-top: 5px; }
.hidden { display: none !important; }

/* MARQUEE CORRIGIDO PARA NÃO SOBREPOR ÍCONES */
.anti-wp-container { position: relative; display: inline-block; margin-bottom: 30px; }
.anti-wp-container .fa-wordpress { font-size: 8rem; color: var(--text-gray); }
.anti-wp-container .fa-ban { font-size: 11rem; color: #ff5f56; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.9; filter: drop-shadow(0 0 20px rgba(255,0,0,0.3)); }
.marquee-wrapper { width: 100%; position: relative; overflow: hidden; padding: 40px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: var(--glass-bg); backdrop-filter: blur(10px); }
.marquee { display: flex; width: max-content; animation: scrollMarquee 30s linear infinite; }
.marquee-content { display: flex; align-items: center; justify-content: center; gap: 60px; padding: 0 30px; flex-shrink: 0; }
.marquee i { font-size: 3.5rem; color: var(--text-gray); transition: 0.3s; }
.marquee i:hover { color: var(--primary); transform: scale(1.1); filter: drop-shadow(0 0 10px var(--primary-glow)); }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* RODAPÉ RESTAURADO (4 COLUNAS GRID) */
footer { border-top: 1px solid var(--glass-border); padding: 80px 5% 40px 5%; margin-top: 80px; position: relative; z-index: 2; background: rgba(0,0,0,0.5); backdrop-filter: blur(20px); }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; }
.footer-brand p { margin-top: 16px; font-size: 0.95rem; text-align: left; }
.footer-links h4 { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-white); }
.footer-links a { display: block; color: var(--text-gray); text-decoration: none; margin-bottom: 12px; transition: 0.3s; }
.footer-links a:hover { color: var(--text-white); }
.footer-bottom { max-width: 1200px; margin: 60px auto 0 auto; padding-top: 24px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; color: var(--text-gray); font-size: 0.85rem; }

/* =========================================
   OTIMIZAÇÃO MOBILE (CELULARES E TABLETS)
========================================= */
@media (max-width: 992px) { 
    .bento-col-4, .bento-col-6, .bento-col-8 { grid-column: span 12; } 
    .footer-container { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 3.5rem; } 
    .hero-section { min-height: 80vh; padding-top: 120px; }
    #hero-mockup-container { width: 90% !important; max-width: 90% !important; margin-top: 40px !important; }
}

@media (max-width: 768px) { 
    .desktop-nav, .floating-badge { display: none !important; } 
    .mobile-toggle { display: block; }
    .header-actions .btn { display: none; }
    
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 2rem; }
    section { padding: 60px 5%; }
    .glass-panel { padding: 25px; }
    
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    
    .time-grid { grid-template-columns: repeat(2, 1fr); }
    .cal-day { font-size: 0.8rem; padding: 6px 0; }
    
    #hero-mockup-container { width: 95% !important; max-width: 95% !important; }
    .marquee-content { gap: 30px; padding: 0 15px; }
    .marquee i { font-size: 2.5rem; }
}