/* COMPUTERE - Glassmorphism Dark Theme */
/* Cores: Azul #202A45 | Laranja #FF4E00 */

:root {
    --azul: #202A45;
    --laranja: #FF4E00;
    --laranja-light: #ff7b3d;
    --glass: rgba(255,255,255,0.05);
    --glass-hover: rgba(255,255,255,0.1);
    --glass-border: rgba(255,255,255,0.1);
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.6);
    --bg-dark: #0a0a0f;
    --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    --success: #4ade80;
    --danger: #f87171;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,78,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32,42,69,0.3) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255,78,0,0.05) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* Topbar */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: linear-gradient(135deg, var(--laranja), var(--laranja-light));
    color: #fff;
    z-index: 1001;
    padding: 12px 0;
    font-size: 0.9rem;
}
.topbar-content { display: flex; align-items: center; justify-content: center; gap: 10px; }
.topbar-close { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; margin-left: 20px; opacity: 0.8; }
body.has-topbar .header { top: 60px; }
body.has-topbar .hero { padding-top: 180px; }

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 15px 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}
.header.scrolled { background: rgba(10,10,15,0.95); }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-size: 1.4rem; font-weight: 700; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--laranja), var(--laranja-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.logo .accent, .accent { color: var(--laranja); }

.nav-menu { display: flex; gap: 8px; list-style: none; }
.nav-menu a { color: var(--text-muted); text-decoration: none; padding: 10px 18px; border-radius: 12px; transition: all 0.3s; font-weight: 500; }
.nav-menu a:hover { color: var(--text); background: var(--glass); }

.header-right { display: flex; align-items: center; gap: 15px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 25px; height: 3px; background: var(--text); border-radius: 3px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 14px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; font-family: inherit; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: linear-gradient(135deg, var(--laranja), var(--laranja-light)); color: white; box-shadow: 0 10px 40px rgba(255,78,0,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(255,78,0,0.4); }
.btn-glass { background: var(--glass); border: 1px solid var(--glass-border); color: white; backdrop-filter: blur(10px); }
.btn-glass:hover { background: var(--glass-hover); transform: translateY(-3px); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #20ba59); color: white; }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; position: relative; z-index: 1; }
.hero-content { max-width: 600px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 30px; font-size: 0.9rem; margin-bottom: 30px; color: var(--text-muted); }
.hero-badge i { color: var(--laranja); }
.hero h1 { font-size: 3.8rem; font-weight: 700; line-height: 1.1; margin-bottom: 25px; }
.hero h1 span { background: linear-gradient(135deg, var(--laranja), var(--laranja-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 35px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-visual { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; }
.float-card { position: absolute; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 25px; animation: float 6s ease-in-out infinite; }
.float-card:nth-child(1) { top: 0; right: 0; }
.float-card:nth-child(2) { top: 150px; right: 180px; animation-delay: 2s; }
.float-card:nth-child(3) { top: 280px; right: 40px; animation-delay: 4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.float-card-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--laranja), var(--laranja-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 15px; }
.float-card h4 { font-size: 1rem; margin-bottom: 5px; }
.float-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* Sections */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* Diferenciais */
.section-diferenciais { padding: 80px 0; background: rgba(255,78,0,0.03); }
.diferenciais-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.diferencial-item { text-align: center; padding: 40px 30px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; transition: all 0.3s; }
.diferencial-item:hover { transform: translateY(-10px); border-color: rgba(255,78,0,0.3); }
.diferencial-icon { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(255,78,0,0.2), rgba(255,78,0,0.1)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--laranja); margin: 0 auto 20px; }
.diferencial-item h4 { font-size: 1.15rem; margin-bottom: 10px; }
.diferencial-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* Stats */
.section-stats { padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 30px 20px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; transition: all 0.3s; }
.stat-item:hover { transform: translateY(-5px); border-color: rgba(255,78,0,0.3); }
.stat-number { font-family: 'Space Mono', monospace; font-size: 2.5rem; font-weight: 700; color: var(--laranja); margin-bottom: 8px; }
.stat-item h4 { font-size: 1rem; margin-bottom: 5px; }
.stat-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.card { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; transition: all 0.4s; position: relative; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--laranja), var(--laranja-light)); opacity: 0; transition: opacity 0.3s; }
.card:hover { transform: translateY(-10px); border-color: rgba(255,78,0,0.3); }
.card:hover::before { opacity: 1; }
.card-image { width: 100%; height: 180px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-image img { transform: scale(1.1); }
.card-body { padding: 25px; }
.card-date { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 15px; }
.card-link { color: var(--laranja); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.card-link:hover { gap: 12px; }
.card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(255,78,0,0.2), rgba(255,78,0,0.1)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--laranja); margin: 25px auto 0; }
.card-icon-large { width: 100%; height: 150px; background: linear-gradient(135deg, rgba(255,78,0,0.1), rgba(255,78,0,0.05)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--laranja); }

/* Carrossel */
.carrossel-wrapper { position: relative; overflow: hidden; padding: 20px 0; }
.carrossel { display: flex; gap: 25px; transition: transform 0.15s ease-out; }
.carrossel.centralizado { justify-content: center; }
.carrossel-item { flex: 0 0 320px; min-width: 320px; }
.carrossel-item .card { height: 100%; }
.carrossel-hint { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: 0.85rem; }

/* Depoimentos */
.section-depoimentos { background: rgba(255,78,0,0.03); }
.depoimentos-carrossel { position: relative; overflow: hidden; padding: 20px 50px; }
.depoimentos-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.depoimento-card { flex: 0 0 calc(33.333% - 16px); min-width: 300px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px; }
.depoimento-stars { margin-bottom: 15px; }
.depoimento-stars i { color: #333; font-size: 1rem; margin-right: 2px; }
.depoimento-stars i.active { color: #fbbf24; }
.depoimento-texto { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }
.depoimento-autor { display: flex; align-items: center; gap: 15px; }
.depoimento-avatar { width: 50px; height: 50px; background: var(--glass); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--laranja); }
.depoimento-avatar img { width: 100%; height: 100%; object-fit: cover; }
.depoimento-autor strong { display: block; font-size: 1rem; }
.depoimento-autor span { font-size: 0.85rem; color: var(--text-muted); }
.dep-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text); transition: all 0.3s; z-index: 10; }
.dep-nav:hover { background: var(--laranja); border-color: var(--laranja); }
.dep-prev { left: 0; }
.dep-next { right: 0; }
.depoimentos-placeholder { display: flex; justify-content: center; }
.depoimentos-placeholder .depoimento-card { max-width: 500px; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--text); text-align: left; transition: all 0.3s; font-family: inherit; }
.faq-question:hover { background: var(--glass-hover); }
.faq-question i { transition: transform 0.3s; color: var(--laranja); }
.faq-item.active .faq-question { border-radius: 14px 14px 0 0; background: var(--glass-hover); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 20px 25px; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-top: none; border-radius: 0 0 14px 14px; color: var(--text-muted); line-height: 1.8; }

/* Orçamento */
.section-orcamento { background: rgba(255,78,0,0.03); }
.orcamento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.orcamento-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.orcamento-info > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; }
.orcamento-contatos { display: flex; flex-direction: column; gap: 20px; }
.orcamento-contato-item { display: flex; align-items: center; gap: 15px; padding: 20px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px; }
.orcamento-contato-item i { font-size: 1.5rem; color: var(--laranja); width: 30px; }
.orcamento-contato-item strong { display: block; margin-bottom: 3px; }
.orcamento-contato-item span { color: var(--text-muted); font-size: 0.9rem; }
.orcamento-form { padding: 35px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text); }
.form-control { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 12px; font-size: 1rem; color: var(--text); transition: all 0.3s; font-family: inherit; }
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { outline: none; border-color: var(--laranja); background: rgba(255,255,255,0.08); }
select.form-control { cursor: pointer; }
select.form-control option { background: #1a1a2e; color: var(--text); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: start; }
.glass-card { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px; }
.glass-card p { color: var(--text-muted); margin-bottom: 15px; line-height: 1.8; }
.glass-card strong { color: var(--text); }
.about-card { text-align: center; }
.about-card-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--laranja), var(--laranja-light)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; }
.about-card h4 { font-size: 1.1rem; margin-bottom: 15px; }
.about-card p { font-size: 0.9rem; margin-bottom: 8px; }

/* Map */
.map-container { padding: 15px; overflow: hidden; }
.map-container iframe { border-radius: 12px; }

/* Footer */
.footer { padding: 60px 0 30px; border-top: 1px solid var(--glass-border); position: relative; z-index: 1; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 30px; }
.footer-logo .logo-text { font-size: 1.5rem; font-weight: 700; }
.footer-logo p { color: var(--text-muted); margin-top: 8px; font-size: 0.9rem; }
.footer-links { display: flex; gap: 25px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--laranja); }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 45px; height: 45px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text); text-decoration: none; transition: all 0.3s; }
.footer-social a:hover { background: var(--laranja); border-color: var(--laranja); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--glass-border); }
.footer-bottom p { color: var(--text-muted); font-size: 0.9rem; }

/* WhatsApp Widget */
.whatsapp-widget { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.whatsapp-btn { width: 60px; height: 60px; background: linear-gradient(135deg, #25D366, #20ba59); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; border: none; cursor: pointer; box-shadow: 0 10px 40px rgba(37,211,102,0.4); transition: all 0.3s; position: relative; }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-status-dot { position: absolute; top: 5px; right: 5px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid #0a0a0f; }
.whatsapp-widget.online .whatsapp-status-dot { background: var(--success); animation: pulse-green 2s infinite; }
.whatsapp-widget.offline .whatsapp-status-dot { background: var(--danger); }
@keyframes pulse-green { 0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); } 50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } }

.whatsapp-tooltip { position: absolute; bottom: 75px; right: 0; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 12px; padding: 12px 18px; white-space: nowrap; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; }
.whatsapp-tooltip.show { opacity: 1; visibility: visible; transform: translateY(0); }
.whatsapp-tooltip::after { content: ''; position: absolute; bottom: -8px; right: 20px; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid var(--glass-border); }
.tooltip-status { display: block; font-weight: 600; margin-bottom: 3px; }
.tooltip-status.online { color: var(--success); }
.tooltip-status.offline { color: var(--danger); }

/* WhatsApp Modal */
.whatsapp-modal { position: fixed; bottom: 100px; right: 30px; z-index: 998; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.9); transition: all 0.3s; }
.whatsapp-modal.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.whatsapp-modal-content { width: 350px; padding: 0; overflow: hidden; }
.whatsapp-modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; z-index: 10; }
.whatsapp-modal-header { background: linear-gradient(135deg, #25D366, #20ba59); padding: 20px; display: flex; align-items: center; gap: 15px; }
.whatsapp-modal-avatar { width: 50px; height: 50px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.whatsapp-modal-header h4 { margin: 0; font-size: 1.1rem; }
.whatsapp-modal-header span { font-size: 0.85rem; opacity: 0.9; }
.whatsapp-modal-header span.offline { opacity: 0.8; }
.whatsapp-modal-form { padding: 20px; }
.whatsapp-modal-form .form-group { margin-bottom: 15px; }
.whatsapp-modal-form .form-control { padding: 12px 15px; font-size: 0.95rem; }

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-40 { margin-top: 40px; }

/* Pages */
.materia-page, .materias-page { padding-top: 120px; padding-bottom: 60px; min-height: 100vh; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; font-size: 0.9rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--laranja); }
.breadcrumb .current { color: var(--text); }
.page-header { text-align: center; margin-bottom: 40px; }
.page-header h1 { font-size: 2.2rem; margin-bottom: 10px; }
.page-nav { margin-top: 40px; text-align: center; }

.materia-header { margin-bottom: 30px; }
.materia-header h1 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.3; }
.materia-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.9rem; flex-wrap: wrap; }
.materia-image-container { margin-bottom: 30px; border-radius: 20px; overflow: hidden; }
.materia-image { width: 100%; max-height: 450px; object-fit: cover; display: block; }
.materia-content { padding: 30px; margin-bottom: 30px; }
.materia-content p { margin-bottom: 20px; line-height: 2; color: var(--text-muted); text-align: justify; font-size: 1.05rem; }
.materia-content strong { color: var(--text); font-weight: 600; }
.materia-content a { color: var(--laranja); }
.materia-fonte { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--glass-border); font-size: 0.9rem; }
.materia-nav { display: flex; gap: 15px; flex-wrap: wrap; }

/* Share */
.share-box { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; padding: 25px; margin-bottom: 30px; }
.share-label { font-weight: 600; display: flex; align-items: center; gap: 8px; }
.share-buttons { display: flex; gap: 10px; }
.share-btn { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; transition: all 0.3s; border: none; cursor: pointer; text-decoration: none; }
.share-btn:hover { transform: translateY(-3px); }
.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000; }
.share-btn.telegram { background: #0088cc; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.copy { background: #666; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual { display: none; }
    .about-grid, .orcamento-grid { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .depoimento-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
    body.has-topbar .header { top: 50px; }
    .header { top: 10px; width: calc(100% - 20px); padding: 12px 15px; border-radius: 16px; }
    .nav-menu { position: fixed; top: 70px; left: 10px; right: 10px; background: rgba(10,10,15,0.98); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 16px; flex-direction: column; padding: 20px; gap: 5px; transform: translateY(-200%); opacity: 0; transition: all 0.3s; z-index: 999; }
    .nav-menu.active { transform: translateY(0); opacity: 1; }
    .nav-menu a { padding: 14px 20px; }
    .nav-toggle { display: flex; }
    .header-right .btn { display: none; }
    
    .hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 1.8rem; }
    
    .diferenciais-grid { grid-template-columns: 1fr; gap: 20px; }
    .diferencial-item { padding: 30px 20px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 20px 15px; }
    .stat-number { font-size: 1.8rem; }
    
    .cards-grid { grid-template-columns: 1fr; }
    
    .carrossel { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 10px 0 20px; margin: 0 -20px; padding-left: 20px; }
    .carrossel-item { scroll-snap-align: start; flex: 0 0 85vw; min-width: 85vw; max-width: 300px; }
    .carrossel-hint { display: none; }
    
    .depoimentos-carrossel { padding: 20px 0; }
    .depoimentos-track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .depoimento-card { flex: 0 0 90vw; min-width: 280px; scroll-snap-align: center; }
    .dep-nav { display: none; }
    
    .faq-question { padding: 15px 20px; font-size: 0.95rem; }
    .faq-answer p { padding: 15px 20px; }
    
    .form-row { grid-template-columns: 1fr; }
    .orcamento-form { padding: 25px; }
    
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    
    .whatsapp-widget { bottom: 20px; right: 20px; }
    .whatsapp-btn { width: 55px; height: 55px; }
    .whatsapp-modal { right: 10px; left: 10px; bottom: 90px; }
    .whatsapp-modal-content { width: 100%; }
    
    .materia-page, .materias-page { padding-top: 90px; }
    .materia-header h1, .page-header h1 { font-size: 1.6rem; }
    .materia-content { padding: 20px; }
    .materia-nav { flex-direction: column; }
    .materia-nav .btn { width: 100%; justify-content: center; }
}

/* Admin Styles */
.admin-wrap { display: flex; min-height: 100vh; background: #f0f2f5; }
.admin-sidebar { width: 260px; background: var(--azul); color: #fff; padding: 20px 0; position: fixed; height: 100vh; overflow-y: auto; }
.admin-sidebar h2 { padding: 0 20px; font-size: 1.3rem; margin-bottom: 30px; color: #fff; }
.admin-sidebar ul { list-style: none; }
.admin-sidebar a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: rgba(255,255,255,.8); text-decoration: none; transition: .3s; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.1); color: #fff; border-left: 3px solid var(--laranja); }
.admin-sidebar i { width: 20px; }
.admin-content { flex: 1; margin-left: 260px; padding: 30px; }
.admin-header { margin-bottom: 30px; }
.admin-header h1 { font-size: 1.8rem; color: var(--azul); display: flex; align-items: center; gap: 12px; }
.admin-card { background: #fff; border-radius: 12px; padding: 25px; margin-bottom: 25px; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.admin-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--azul); font-size: 1.2rem; }
.admin-card p, .admin-card span, .admin-card label { color: #444; }
.admin-card h4 { color: var(--azul); }
.alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.admin-form .form-control { background: #fff; border: 2px solid #e0e0e0; color: #333; }
.admin-form .form-control:focus { border-color: var(--laranja); }

/* Garantir textos visíveis no admin */
.admin-content, .admin-content * { color: #333; }
.admin-content h1, .admin-content h2, .admin-content h3, .admin-content h4 { color: var(--azul); }
.admin-content .btn { color: #fff; }
.admin-content .btn-glass { color: var(--azul); }
.admin-content a.btn { color: #fff; }
.admin-content .form-control { color: #333; background: #fff; }
.admin-content .form-control::placeholder { color: #999; }
.admin-content select.form-control { color: #333; }
.admin-content textarea.form-control { color: #333; }
.admin-content input[type="text"], 
.admin-content input[type="email"], 
.admin-content input[type="password"],
.admin-content input[type="tel"],
.admin-content input[type="number"],
.admin-content input[type="date"],
.admin-content input[type="time"],
.admin-content textarea,
.admin-content select { color: #333 !important; background: #fff !important; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; color: #333; }
th { background: #f8f9fa; font-weight: 600; color: var(--azul); }
td { color: #444; }
tr:hover { background: rgba(255,78,0,.05); }
table a { color: var(--azul); }
table td:first-child { color: #222; font-weight: 500; }
.badge { padding: 4px 10px; border-radius: 20px; font-size: .8rem; font-weight: 500; }
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-danger { background: #f8d7da; color: #721c24; }

.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-gradient); }
.login-box { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.3); width: 100%; max-width: 400px; }
.login-box h2 { text-align: center; margin-bottom: 30px; color: var(--azul); }
.login-box .logo-text { text-align: center; font-size: 2rem; margin-bottom: 20px; display: block; color: var(--azul); }

@media (max-width: 768px) {
    .admin-sidebar { width: 100%; height: auto; position: relative; }
    .admin-content { margin-left: 0; }
    .admin-wrap { flex-direction: column; }
}
