/* --- CONFIGURAÇÕES GERAIS --- */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #475569;
    --border: #e2e8f0;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f1f5f9;
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVEGAÇÃO --- */
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-mini {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark);
}

.logo-mini span { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links a.active { color: var(--primary); }

.btn-contato-nav {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

/* --- HEADER --- */
.header-main {
    text-align: center;
    padding: 60px 0;
}

.header-main h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* --- GRIDS E CARDS --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.card:hover { transform: translateY(-10px); }

.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.price-area {
    margin: 30px 0;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.features i {
    color: var(--primary);
    margin-right: 10px;
}

.btn-action {
    display: block;
    background: var(--dark);
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-action:hover { background: var(--primary); }

/* --- DETALHAMENTO DE SERVIÇOS --- */
.detalhamento-servicos {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.detalhe-item {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.detalhe-item:hover { transform: translateX(10px); border-color: var(--primary); }

.detalhe-icon {
    width: 60px; height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}

.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.tags span {
    background: #eef2ff; color: var(--primary);
    padding: 5px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}

/* --- TABELA COMPARATIVA --- */
.table-wrapper {
    overflow-x: auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
    margin: 40px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

th, td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

th { color: var(--dark); }
td i.fa-check { color: var(--accent, #22c55e); }
td i.fa-times { color: #f43f5e; }

/* --- MANUTENÇÃO (CARDS ESCUROS) --- */
.card-dark {
    background: var(--dark);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.card-dark .price { color: white; }
.btn-outline {
    display: inline-block;
    border: 1px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
}

/* --- INFO BOX E FOOTER --- */
.info-box {
    background: #fff;
    border-left: 5px solid var(--primary);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 60px 0;
}

.footer {
    text-align: center;
    padding: 40px;
    color: var(--text);
    font-size: 0.9rem;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .detalhe-item { flex-direction: column; text-align: center; }
    .detalhe-icon { margin: 0 auto; }
}
:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --text: #475569;
    --bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Background decorativo */
.glass-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 40%);
    z-index: -1;
}

/* Navbar */
.navbar { padding: 20px 0; background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.4rem; color: var(--dark); }
.logo span { color: var(--primary); }
.nav-menu { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; }
.nav-btn { background: var(--dark); color: white !important; padding: 10px 20px; border-radius: 10px; }

/* Hero */
.hero-section { text-align: center; padding: 60px 0; }
.top-tag { background: white; padding: 6px 15px; border-radius: 50px; color: var(--primary); font-size: 0.75rem; font-weight: 800; box-shadow: var(--shadow); }
.hero-section h1 { font-size: 3rem; color: var(--dark); margin: 20px 0; letter-spacing: -1.5px; }
.hero-section h1 span { color: var(--primary); }

/* Pricing Cards */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 60px; }
.price-card { background: white; border-radius: 25px; padding: 10px; border: 1px solid rgba(0,0,0,0.05); transition: 0.4s; }
.price-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.card-inner { padding: 30px; }
.card-icon { width: 50px; height: 50px; background: #f1f5f9; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.3rem; margin-bottom: 20px; }
.card-desc { font-size: 0.9rem; margin-bottom: 15px; }
.main-price { font-size: 2.8rem; font-weight: 800; color: var(--dark); margin-bottom: 25px; }
.main-price span { font-size: 1rem; vertical-align: super; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li { font-size: 0.9rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.check-list i { color: #22c55e; }
.btn-card { display: block; text-align: center; text-decoration: none; padding: 15px; border-radius: 12px; background: #f1f5f9; color: var(--dark); font-weight: 700; transition: 0.3s; }

/* Featured Card */
.featured { background: var(--dark); color: white; position: relative; }
.featured .main-price, .featured h3 { color: white; }
.featured .btn-premium { background: var(--primary); color: white; }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #22c55e; color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.7rem; font-weight: 800; }

/* Detalhamento */
.details-section { padding: 40px 0; }
.sub-title { text-align: center; margin-bottom: 40px; color: var(--dark); }
.detail-row { background: white; padding: 30px; border-radius: 20px; margin-bottom: 15px; border: 1px solid rgba(0,0,0,0.05); transition: 0.3s; }
.detail-row:hover { border-color: var(--primary); transform: scale(1.01); }
.tag-group { margin-top: 15px; display: flex; gap: 10px; }
.tag-group span { background: #eef2ff; color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }

/* Tabela */
.table-container { background: white; padding: 20px; border-radius: 20px; overflow-x: auto; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; text-align: center; }
th, td { padding: 20px; border-bottom: 1px solid #f1f5f9; }
td i.fa-check { color: #22c55e; }
td i.fa-times { color: #f43f5e; }

/* Manutenção */
.maintenance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.m-card { background: white; padding: 40px; border-radius: 20px; text-align: center; border: 1px solid rgba(0,0,0,0.05); }
.m-price { font-size: 2rem; font-weight: 800; color: var(--dark); margin: 15px 0; }
.m-price span { font-size: 0.9rem; color: var(--text); }
.btn-m { display: inline-block; text-decoration: none; padding: 12px 30px; border: 1px solid var(--dark); color: var(--dark); border-radius: 10px; font-weight: 700; margin-top: 15px; }
.vip { background: var(--dark); color: white; position: relative; }
.vip .m-price, .vip h3 { color: white; }
.vip .btn-v { border-color: var(--primary); background: var(--primary); color: white; }
.vip-tag { position: absolute; top: 15px; right: 20px; color: var(--primary); font-weight: 800; font-size: 0.7rem; }

/* Garantia e Footer */
.guarantee-box { background: #fff; padding: 30px; border-radius: 20px; display: flex; align-items: center; gap: 20px; margin: 60px 0; border-left: 5px solid var(--primary); }
.footer { text-align: center; padding: 40px 0; font-size: 0.8rem; border-top: 1px solid rgba(0,0,0,0.05); }

/* Mobile */
@media (max-width: 768px) {
    .nav-menu, .vip-tag { display: none; }
    .hero-section h1 { font-size: 2.2rem; }
    .maintenance-grid { grid-template-columns: 1fr; }
}