@charset "UTF-8";

/* Hero interno (Sobre, Serviços, Contato, LGPD) */
.page-hero-v2 {
    position: relative;
    padding: calc(var(--header-h) + 2.75rem) 0 3rem;
    background: linear-gradient(145deg, var(--brand-blue-dark) 0%, #1a3578 50%, var(--brand-blue) 100%);
    color: var(--brand-white);
    overflow: hidden;
}

.page-hero-v2__mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 15%, rgba(255, 212, 0, 0.14) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: auto, 40px 40px, 40px 40px;
    pointer-events: none;
}

.page-hero-v2 .container {
    position: relative;
    z-index: 1;
}

.page-hero-v2__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 212, 0, 0.15);
    border: 1px solid rgba(255, 212, 0, 0.35);
    color: var(--brand-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-hero-v2__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.page-hero-v2__subtitle {
    margin: 0;
    max-width: 58ch;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

/* Bloco de conteúdo */
.page-block {
    padding: 4.5rem 0;
}

.page-block--muted {
    background: var(--surface-muted);
}

.page-block--white {
    background: var(--surface);
}

/* Card moderno (sobre, contato, lgpd) */
.mod-card {
    height: 100%;
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.mod-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.mod-card--dark {
    background: linear-gradient(160deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
    border: none;
    color: #ffffff;
}

.mod-card--dark p,
.mod-card--dark h2,
.mod-card--dark h3 {
    color: #ffffff;
}

.mod-card--dark p {
    color: rgba(255, 255, 255, 0.92);
}

.mod-card--dark h2,
.mod-card--dark h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.mod-card--accent {
    background: linear-gradient(135deg, #fff9e0 0%, var(--surface) 100%);
    border-color: rgba(255, 212, 0, 0.45);
}

.mod-card__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--surface-blue);
    color: var(--brand-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.mod-card--dark .mod-card__icon {
    background: rgba(255, 212, 0, 0.2);
    color: var(--brand-yellow);
}

.mod-card:not(.mod-card--dark) h2,
.mod-card:not(.mod-card--dark) h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 0.65rem;
}

.mod-card:not(.mod-card--dark) p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* História / prosa */
.prose-panel {
    padding: 2rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.prose-panel p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.prose-panel p:last-child {
    margin-bottom: 0;
}

/* Serviços — intro */
.servicos-hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .servicos-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.servicos-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.servicos-checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
}

.servicos-checklist i {
    color: var(--brand-blue);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sed-visual {
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--brand-blue-dark), var(--brand-blue));
    color: #ffffff;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.sed-visual__title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
}

.sed-visual p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.sed-visual__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sed-visual__badge {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 212, 0, 0.2);
    color: var(--brand-yellow);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Accordion serviços */
.servicos-mod {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--surface-muted) 0%, var(--surface) 100%);
}

.servicos-mod .servico-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 16px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--surface);
}

.servicos-mod .accordion-button {
    font-weight: 600;
    color: var(--brand-blue-dark);
    background: var(--surface);
    padding: 1.1rem 1.25rem;
}

.servicos-mod .accordion-button:not(.collapsed) {
    background: var(--surface-blue);
    color: var(--brand-blue);
    box-shadow: none;
}

.servicos-mod .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(33, 64, 154, 0.25);
}

.servicos-mod .accordion-body {
    color: var(--text-muted);
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
}

/* Contato — grid de canais */
.contact-bento {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .contact-bento {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-tile {
    padding: 1.75rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-tile--highlight {
    background: linear-gradient(160deg, var(--brand-blue-dark), var(--brand-blue));
    border: none;
    color: #ffffff;
}

.contact-tile--highlight h2,
.contact-tile--highlight p,
.contact-tile--highlight address,
.contact-tile--highlight a {
    color: #ffffff;
}

.contact-tile--highlight a:hover {
    color: var(--brand-yellow);
}

.contact-tile--highlight h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-tile__icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--surface-blue);
    color: var(--brand-blue);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.contact-tile--highlight .contact-tile__icon {
    background: rgba(255, 212, 0, 0.2);
    color: var(--brand-yellow);
}

.contact-tile:not(.contact-tile--highlight) h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 0.75rem;
}

.contact-tile:not(.contact-tile--highlight) address {
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.9375rem;
}

.map-panel {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-panel h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 1rem;
}

/* LGPD */
.lgpd-layout {
    padding: 3rem 0 4.5rem;
}

.lgpd-layout__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .lgpd-layout__grid {
        grid-template-columns: 260px 1fr;
        align-items: start;
    }
}

.lgpd-nav {
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}

.lgpd-nav__title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
}

.lgpd-nav a {
    display: block;
    padding: 0.45rem 0;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
}

.lgpd-nav a:hover,
.lgpd-nav a:focus-visible {
    color: var(--brand-blue);
}

.lgpd-article {
    padding: 2rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(33, 64, 154, 0.04);
}

.lgpd-article h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    margin-bottom: 0.75rem;
}

.lgpd-article p {
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    text-align: justify;
}

.lgpd-article a {
    font-weight: 600;
}

/* CTA reutilizável em páginas internas */
.page-cta {
    padding: 3rem 0 4.5rem;
}

.page-cta .cta-home__box {
    margin: 0;
}

/* Stats + CTA compartilhados com a home */
.stats-band {
    padding: 4.5rem 0;
    background: var(--brand-blue-dark);
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
}

.stats-band::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--brand-yellow);
    opacity: 0.06;
    border-radius: 50%;
    right: -120px;
    bottom: -160px;
}

.stats-band .section-label {
    color: var(--brand-yellow);
}

.stats-band .section-title {
    color: var(--brand-white);
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-band__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-glass {
    text-align: center;
    padding: 1.75rem 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-glass__value {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--brand-yellow);
    line-height: 1.1;
}

.stat-glass__label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0.35rem;
}

.stat-glass__icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-home__box {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 24px;
    background: linear-gradient(120deg, var(--brand-blue) 0%, var(--brand-blue-dark) 70%);
    color: var(--brand-white);
    overflow: hidden;
    position: relative;
}

.cta-home__box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: var(--brand-yellow);
    opacity: 0.12;
    border-radius: 50%;
    top: -100px;
    right: -60px;
    pointer-events: none;
}

.cta-home__box > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-home__box {
        grid-template-columns: 1fr auto;
    }
}

.cta-home__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    color: #ffffff;
}

.cta-home__text {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
}

.section-cobertura .mapa-wrap {
    border: none;
    box-shadow: 0 24px 60px rgba(33, 64, 154, 0.12);
}
