
:root {
    --azul-escuro: #0D47A1;
    --azul-medio: #1976D2;
    --azul-claro: #E3F2FD;
    --texto: #1f2933;
    --branco: #ffffff;
    --cinza: #f5f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background-color: var(--cinza);
    color: var(--texto);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(13,71,161,0.9);
    color: var(--branco);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--azul-medio), var(--azul-escuro));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-weight: 600;
    font-size: 18px;
}

.logo-text span:last-child {
    font-size: 12px;
    opacity: 0.8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
    background: transparent;
    color: var(--branco);
    transition: 0.2s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
}

.btn-whats-header {
    border-radius: 999px;
    padding: 7px 16px;
    border: none;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.btn-whats-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* ===== HERO / BANNER COMPLETO ===== */
.hero {
    background: radial-gradient(circle at top left, #42A5F5 0, var(--azul-escuro) 40%, #020817 100%);
    color: var(--branco);
    padding: 60px 16px 70px;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15,23,42,0.5);
    font-size: 11px;
    margin-bottom: 14px;
}

.hero-badge span {
    background: #22c55e;
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-title strong {
    color: #BBDEFB;
}

.hero-subtitle {
    font-size: 14px;
    opacity: 0.9;
    max-width: 460px;
    margin-bottom: 22px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-primary {
    border-radius: 999px;
    padding: 12px 22px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 14px 30px rgba(34,197,94,0.4);
    transition: 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 35px rgba(34,197,94,0.55);
}

.btn-secondary {
    border-radius: 999px;
    padding: 11px 20px;
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 14px;
    background: transparent;
    color: var(--branco);
    transition: 0.2s;
}

.btn-secondary:hover {
    background: rgba(15,23,42,0.4);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    opacity: 0.9;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-info-item span.icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* HERO “BANNER” VISUAL */
.hero-banner {
    background: rgba(15,23,42,0.7);
    border-radius: 22px;
    padding: 18px 18px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(0,0,0,0.35);
}

.hero-banner-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59,130,246,0.7), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.hero-banner-content {
    position: relative;
    z-index: 1;
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.banner-title {
    font-size: 14px;
    font-weight: 500;
}

.banner-pill {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(37,99,235,0.35);
}

.banner-main {
    background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(15,23,42,0.3));
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12px;
}

.banner-main h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.banner-main p {
    font-size: 12px;
    opacity: 0.9;
}

.banner-tag {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.banner-tag span.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
}

.banner-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
}

.banner-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15,23,42,0.6);
    border-radius: 10px;
    padding: 6px 9px;
}

.badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(56,189,248,0.15);
}

.banner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    margin-top: 6px;
}

.banner-footer strong {
    font-size: 14px;
}

.banner-footer span.label {
    opacity: 0.8;
    font-size: 10px;
}

/* ===== SEÇÕES GERAIS ===== */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px 10px;
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 13px;
    color: #6b7280;
}

/* SOBRE */
.sobre-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 26px;
}

.sobre-text p {
    font-size: 14px;
    margin-bottom: 10px;
}

.sobre-lista {
    list-style: none;
    margin-top: 8px;
}

.sobre-lista li {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.sobre-lista span.bullet {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(37,99,235,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #1d4ed8;
}

.sobre-card {
    background: var(--branco);
    border-radius: 18px;
    padding: 16px 16px 18px;
    box-shadow: 0 10px 25px rgba(15,23,42,0.08);
    font-size: 13px;
}

.sobre-card strong {
    display: block;
    margin-bottom: 6px;
}

/* SERVIÇOS */
.servicos-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.servico-card {
    background: var(--branco);
    border-radius: 16px;
    padding: 16px 14px 18px;
    box-shadow: 0 8px 22px rgba(15,23,42,0.06);
    font-size: 13px;
}

.servico-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #0f172a;
}

.servico-preco {
    font-size: 13px;
    margin-top: 10px;
    color: #16a34a;
    font-weight: 600;
}

/* CONTATO */
.contato-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.contato-info {
    font-size: 14px;
}

.contato-dados {
    margin-top: 12px;
    font-size: 13px;
}

.contato-dados p {
    margin-bottom: 6px;
}

.contato-dados span.label {
    font-weight: 600;
    color: #0f172a;
}

.contato-card {
    background: var(--branco);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 10px 25px rgba(15,23,42,0.1);
    font-size: 13px;
}

.contato-card small {
    font-size: 11px;
    color: #6b7280;
}

input, textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 9px 10px;
    font-size: 13px;
    margin-top: 4px;
}

textarea {
    resize: vertical;
    min-height: 70px;
}

.form-group {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    margin-top: 50px;
    padding: 18px 16px 24px;
    background: #020617;
    color: #e5e7eb;
    font-size: 11px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content:center;
    text-align: center;
}

.footer-inner a {
    color: #93c5fd;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-banner {
        margin-top: 8px;
    }

    .sobre-grid,
    .servicos-grid,
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .servicos-grid {
        gap: 14px;
    }

    header {
        position: static;
    }
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: row;
        gap: 8px;
    }

    .logo-text span:first-child {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}
