/* Identidade visual — contraste WCAG AA */
:root {
    --secondary-accessible: #00524f;
    --secondary-hover: #004542;
}


main {
    margin-top: 115px;
}

.brand-lockup {
    text-decoration: none;
    color: inherit;
}

/* .brand-monogram {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #0d2b45 0%, #006a66 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(13, 43, 69, 0.2);
} */

.brand-monogram img {
    width: 180px;
    height: 80px;
}

footer .brand-monogram img {
    width: auto;
    height: 100px;
    margin-bottom: 20px;
}

/* Botões e links teal com contraste AA */
.btn-secondary,
.bg-secondary.text-on-secondary {
    background-color: #006a66 !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
.bg-secondary.text-on-secondary:hover {
    background-color: var(--secondary-hover) !important;
}

.btn-secondary:focus-visible,
.bg-secondary.text-on-secondary:focus-visible {
    outline: 2px solid #0d2b45;
    outline-offset: 2px;
}

a.text-secondary,
.text-secondary.link-accessible {
    color: var(--secondary-accessible) !important;
}

a.text-secondary:hover {
    color: var(--secondary-hover) !important;
}

/* Mídia CDN — evita CLS e padroniza responsividade */
.cdn-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #e0e3e5;
}

.cdn-media--hero {
    aspect-ratio: 2 / 3;
}

@media (min-width: 768px) {
    .cdn-media--hero {
        aspect-ratio: 2 / 3;
    }
}

.cdn-media--4-5 {
    aspect-ratio: 4 / 5;
}

.cdn-media--16-9 {
    aspect-ratio: 16 / 9;
}

.cdn-media--map {
    min-height: 400px;
    aspect-ratio: auto;
    position: relative;
}

.cdn-media--map .cdn-media__img {
    position: absolute;
    inset: 0;
}

.cdn-media picture,
.cdn-media__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cdn-media__img.is-fallback {
    object-fit: cover;
    filter: saturate(0.92);
}

/* Hero interno padronizado */
.page-hero {
    position: relative;
    width: 100%;
    background-color: #0d2b45;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    pointer-events: none;
}

.page-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 43, 69, 0.55) 0%, rgba(13, 43, 69, 0.92) 100%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .page-hero__inner {
        padding-left: 120px;
        padding-right: 120px;
    }
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.page-breadcrumb a:hover {
    color: #ffffff;
}

.page-breadcrumb [aria-current="page"] {
    color: #ffffff;
    font-weight: 600;
}

.page-hero__title {
    font-family: Manrope, sans-serif;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Textos sobre fundo azul-marinho — contraste AA */
.bg-primary-container .text-white\/90,
.bg-primary-container p {
    color: rgba(255, 255, 255, 0.92);
}

.bg-primary-container .text-white\/70 {
    color: rgba(255, 255, 255, 0.78);
}

/* Ícones sociais — hover perceptível */
.social-icon-link {
    transition: all 0.3s ease;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
    background-color: #006a66 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 106, 102, 0.35);
}



body.menu-open {
    overflow: hidden;
}

/* Cookie banner */
#cookie-banner {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#cookie-banner.is-hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}



.ambient-shadow {
    box-shadow: 0 4px 20px -5px rgba(0, 22, 42, 0.08);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.whatsapp-green {
    background-color: #25D366;
    color: #ffffff;
}

.whatsapp-green:hover {
    background-color: #1DA851;
}