/* style.css - Conteúdo Principal (Sem Navbar e Sem Footer) */

:root {
    --primary-cyan: #00f2ff;
    --primary-blue: #00A8FF;
    --deep-bg: #030b14;
    --card-bg: #0a101a;
    --gold: #FFD700;
    --glass-border: rgba(255, 255, 255, 0.08);
    --success: #00c851;
    --danger: #ff4444;
    --text-gray: #b0b8c4;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--deep-bg); color: #FFFFFF; margin: 0; padding: 0; overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
* { box-sizing: border-box; }

body.menu-open { overflow: hidden; }

/* --- HERO SECTION --- */
.lp-hero { padding: 180px 20px 100px; text-align: center; position: relative; background: radial-gradient(circle at center, #0f1c2e 0%, #030b14 100%); border-bottom: 1px solid var(--glass-border); }
.lp-hero::before { content: ''; position: absolute; 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: 40px 40px; pointer-events: none; }
.promo-tag { background: rgba(0, 242, 255, 0.1); border: 1px solid var(--primary-cyan); color: var(--primary-cyan); padding: 8px 16px; border-radius: 30px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: inline-block; margin-bottom: 25px; }
.lp-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem) !important; font-weight: 800; margin-bottom: 20px; letter-spacing: -2px; line-height: 1.1; background: linear-gradient(180deg, #fff 0%, #a5a5a5 100%) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; }
.lp-hero p.sub { font-size: clamp(1rem, 2vw, 1.25rem); max-width: 700px; margin: 0 auto 40px; font-weight: 300; }

.btn-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-primary { background: var(--primary-cyan); color: #000; padding: 18px 40px; border-radius: 50px; font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 0.95rem; transition: 0.3s; box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2); white-space: nowrap; }
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4); background: #fff; }
.btn-secondary { background: transparent; color: #fff; padding: 18px 40px; border-radius: 50px; font-weight: 600; text-decoration: none; text-transform: uppercase; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.2); transition: 0.3s; white-space: nowrap; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* --- AUTORIDADE --- */
.authority-section { border-bottom: 1px solid var(--glass-border); background: #02060b; }
.authority-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; margin: 0 auto; }
.auth-item { padding: 40px 20px; text-align: center; border-right: 1px solid var(--glass-border); transition: 0.3s; }
.auth-item:last-child { border-right: none; }
.auth-number { font-size: 2.5rem; font-weight: 800; color: #fff; display: block; margin-bottom: 5px; }
.auth-label { color: var(--text-gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.auth-icon { color: var(--primary-blue); font-size: 1.5rem; margin-bottom: 15px; display: block; opacity: 0.8; }

/* --- SOBRE NÓS --- */
.about-section { padding: 100px 20px; background: #050c16; overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.about-wrapper { display: flex; justify-content: center; align-items: center; text-align: center; }
.about-text { max-width: 800px; width: 100%; }
.section-label { color: var(--primary-cyan); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 15px; display: block; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 25px; color: #fff; letter-spacing: -1px; }

.feature-list { list-style: none; padding: 0; margin-top: 40px; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.feature-item { display: flex; gap: 20px; text-align: left; max-width: 350px; align-items: flex-start; }
.feature-icon { min-width: 50px; height: 50px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-cyan); font-size: 1.2rem; }
.feature-content h4 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; }
.feature-content p { font-size: 0.95rem; margin: 0; color: var(--text-gray); }

/* --- ECONOMIA --- */
.economy-section { padding: 100px 20px; background: #02060b; border-top: 1px solid var(--glass-border); }
.economy-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 50px; }
.eco-card { flex: 1; min-width: 280px; max-width: 500px; padding: 40px; border-radius: 24px; display: flex; flex-direction: column; justify-content: space-between; position: relative; }

.eco-card.bad { background: rgba(255, 59, 59, 0.05); border: 1px solid rgba(255, 59, 59, 0.2); }
.eco-title.bad { color: var(--danger); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

.eco-card.good { background: radial-gradient(circle at top right, rgba(0, 242, 255, 0.1), transparent); border: 1px solid var(--primary-cyan); transform: scale(1.05); box-shadow: 0 20px 50px rgba(0,0,0,0.5); z-index: 2; }
.eco-title.good { color: var(--primary-cyan); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

.eco-list li { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px dashed rgba(255,255,255,0.1); color: #ccc; font-size: 0.95rem; }
.eco-total { font-size: 2rem; font-weight: 800; margin-top: 20px; color: #fff; }
.eco-big-price { font-size: 4rem; color: #fff; font-weight: 800; line-height: 1; margin: 20px 0; }
.eco-big-price small { font-size: 1.5rem; vertical-align: super; margin-right: 3px; }
.eco-saving { color: var(--success); font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 20px; }

/* --- PRODUTOS --- */
.products-section { padding: 100px 20px; background: #030b14; text-align: center; }
.grid-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 60px; }
.prod-card { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 40px 30px; text-align: left; transition: 0.4s; height: 100%; position: relative; overflow: hidden; }
.prod-card:hover { transform: translateY(-10px); border-color: var(--primary-blue); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.prod-icon-box { width: 60px; height: 60px; background: rgba(0, 168, 255, 0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 25px; color: var(--primary-cyan); }
.prod-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 15px; }

/* --- SUPORTE --- */
.support-section { padding: 100px 20px; background: linear-gradient(to right, #030b14 0%, #061221 100%); border-top: 1px solid var(--glass-border); }
.support-wrapper { display: flex; align-items: center; gap: 60px; max-width: 1100px; margin: 0 auto; }
.support-content { flex: 1; }

.support-list { list-style: none; padding: 0; margin: 30px 0; }
.support-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; background: rgba(255,255,255,0.02); padding: 15px; border-radius: 12px; transition: 0.3s; }
.support-item:hover { background: rgba(255,255,255,0.05); transform: translateX(10px); }
.support-icon { color: var(--success); font-size: 1.2rem; min-width: 30px; text-align: center; }

.support-visual { flex: 1; display: flex; justify-content: center; }
.chat-interface { background: rgba(10, 20, 35, 0.95); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: relative; width: 100%; max-width: 400px; }
.chat-header-dots { display: flex; gap: 8px; margin-bottom: 25px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: #333; }
.dot:nth-child(1) { background: #ff5f56; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #27c93f; }

.chat-bubble { padding: 15px 20px; border-radius: 15px; margin-bottom: 15px; font-size: 0.9rem; line-height: 1.5; max-width: 85%; }
.chat-bubble.user { background: rgba(255,255,255,0.1); color: #ccc; border-bottom-left-radius: 2px; }
.chat-bubble.admin { background: rgba(0, 168, 255, 0.15); color: #fff; border: 1px solid rgba(0, 168, 255, 0.3); margin-left: auto; border-bottom-right-radius: 2px; }

/* --- FAQ --- */
.faq-section { padding: 80px 20px; background: #030b14; }
.faq-wrapper { max-width: 800px; margin: 0 auto; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-question { padding: 25px 0; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; font-size: 1.1rem; color: #fff; transition: 0.3s; }
.faq-question:hover { color: var(--primary-cyan); }
.faq-answer { padding-bottom: 25px; display: none; color: var(--text-gray); }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* --- MEDIA QUERIES (Restante do Site) --- */
@media (max-width: 992px) {
    .authority-grid { grid-template-columns: repeat(2, 1fr); }
    .auth-item:nth-child(2) { border-right: none; }
    .auth-item { border-bottom: 1px solid var(--glass-border); }
    .support-wrapper { flex-direction: column; }
    .eco-card.good { transform: scale(1); }
}

@media (max-width: 900px) {
    .lp-hero { padding: 140px 20px 60px; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; }
    .authority-grid { grid-template-columns: 1fr; }
    .auth-item { border-right: none; padding: 30px 20px; }
    .feature-list { flex-direction: column; align-items: center; }
    .feature-item { width: 100%; max-width: 100%; }
    .about-section, .products-section, .support-section, .economy-section { padding: 60px 20px; }
    .eco-card, .prod-card { min-width: 100%; }
    .chat-interface { padding: 20px; }
    .chat-bubble { max-width: 100%; }
}