/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-escuro: #001A3F;
    --azul-medio: #00a8cc;
    --laranja: #FD4F00;
    --verde-whatsapp: #25d366;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --cinza-texto: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--cinza-texto);
    line-height: 1.6;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Esconder barra de rolagem */
::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

html {
    overflow: -moz-scrollbars-none; /* Firefox antigo */
    -ms-overflow-style: none; /* IE 10+ */
    scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header com admin bar (usuário logado) */
body.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    padding: 1rem 0;
}

.header.scrolled .logo {
    color: var(--azul-escuro);
}

.header.scrolled .nav a {
    color: var(--cinza-texto);
}

.header.scrolled .nav a:hover {
    color: var(--azul-escuro);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    max-width: 100%;
    position: relative;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-actions__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--laranja);
    color: var(--branco);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
}

.header-actions__cta:hover {
    background: #e04500;
    transform: translateY(-1px);
}

.header-actions__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--branco);
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

.header-actions__search:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header-actions__search:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.header.scrolled .header-actions__search:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 26, 63, 0.15);
}

.header.header--solid {
    background: rgba(255, 255, 255, 1);
    padding: 1rem 0;
}

.header.header--solid .logo {
    color: var(--azul-escuro);
}

.header.header--solid .nav a {
    color: var(--cinza-texto);
}

.header.header--solid .nav a:hover {
    color: var(--azul-escuro);
}

.header.header--solid .header-actions__search {
    color: var(--azul-escuro);
}

.header.header--solid .header-actions__search:hover {
    background: rgba(0, 26, 63, 0.06);
}

.header.header--solid .header-actions__search:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 26, 63, 0.15);
}

.header.header--solid .menu-toggle span {
    background: var(--azul-escuro);
}

.header.scrolled .header-actions__search {
    color: var(--azul-escuro);
}

.header.scrolled .header-actions__search:hover {
    background: rgba(0, 26, 63, 0.08);
}

.header.scrolled .header-actions__search:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 26, 63, 0.15);
}

.header-search {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 6px;
    position: relative;
}

.header-search__form {
    overflow: hidden;
}

.header-search__field {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 1.5px solid transparent;
    border-radius: 999px;
    padding: 0;
    background: var(--branco);
    pointer-events: none;
    transition:
        width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        padding 0.35s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.header-search.is-open .header-search__field {
    width: 280px;
    opacity: 1;
    padding: 4px 4px 4px 16px;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
}

.header-search.is-open .header-search__field:focus-within {
    border-color: var(--branco);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.header.scrolled .header-search.is-open .header-search__field {
    border-color: #dde1e8;
    box-shadow: 0 4px 18px rgba(0, 26, 63, 0.1);
}

.header.scrolled .header-search.is-open .header-search__field:focus-within {
    border-color: var(--azul-escuro);
    box-shadow: 0 6px 22px rgba(0, 26, 63, 0.12);
}

.header-search.is-open .header-actions__search {
    background: rgba(255, 255, 255, 0.18);
}

.header.scrolled .header-search.is-open .header-actions__search {
    background: rgba(0, 26, 63, 0.08);
    color: var(--azul-escuro);
}

.header-search__input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--azul-escuro);
    background: transparent;
}

.header-search__input:focus {
    outline: none;
}

.header-search__input::placeholder {
    color: #8a94a6;
}

.header-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 34px;
    padding: 0 16px;
    border: none;
    border-radius: 999px;
    background: var(--azul-escuro);
    color: var(--branco);
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header-search__submit:hover {
    background: #002654;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    letter-spacing: 2px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.site-logo__img {
    display: block;
    width: auto;
    max-width: min(240px, 32vw);
    max-height: 52px;
}

.site-logo__img--light {
    display: block;
}

.site-logo__img--dark {
    display: none;
}

.header.scrolled .site-logo__img--light,
.header.header--solid .site-logo__img--light {
    display: none;
}

.header.scrolled .site-logo__img--dark,
.header.header--solid .site-logo__img--dark {
    display: block;
}

.site-logo--dark-only .site-logo__img--dark {
    display: block;
    filter: brightness(0) invert(1);
}

.header.scrolled .site-logo--dark-only .site-logo__img--dark,
.header.header--solid .site-logo--dark-only .site-logo__img--dark {
    filter: none;
}

.site-logo--light-only .site-logo__img--light {
    display: block;
}

.custom-logo-link {
    display: none !important;
}

.custom-logo {
    display: block;
    width: auto;
    max-width: min(240px, 32vw);
    max-height: 52px;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--branco);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--branco);
    opacity: 0.9;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--laranja);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--branco);
    transition: all 0.3s ease;
}

.header.scrolled .menu-toggle span {
    background: var(--azul-escuro);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide--video {
    object-fit: cover;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 200px;
    left: 80px;
    z-index: 2;
    text-align: left;
    color: var(--branco);
    padding: 0;
}

.hero-title {
    font-size: 50px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 2.3rem;
    font-weight: 300;
    margin: 0.25rem 0;
    line-height: 1.4;
}

.hero-indicators {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--laranja);
    width: 30px;
    border-radius: 6px;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.wave-bottom img {
    width: 100%;
    height: clamp(56px, 7vw, 104px);
    display: block;
    object-fit: fill;
}

/* Ícones Flutuantes */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-icon.whatsapp {
    background: var(--verde-whatsapp);
}

.floating-icon.contact {
    background: var(--laranja);
    font-size: 0.9rem;
}

.floating-icon.contact img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

/* Seção: Infraestrutura invisível */
.water-section {
    background: var(--branco);
    padding: 50px 0 32px;
    position: relative;
    z-index: 1;
}

.water-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
}

.water-illustration {
    opacity: 0;
    transform: translateY(-40px);
}

.water-illustration.animate {
    animation: waterDropFall 1.2s ease-out forwards;
}

.water-illustration img {
    width: 100%;
    height: auto;
    max-width: 380px;
    margin: 0 auto;
    display: block;
}

.water-content {
    padding: 20px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.water-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cinza-texto);
}

.water-text .highlight {
    font-size: 1.1rem;
    color: var(--azul-escuro);
}

.water-text strong {
    color: var(--azul-escuro);
    font-weight: 600;
}

.water-text .water-brand {
    color: var(--laranja);
    font-weight: 700;
}

.water-text .callout {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-top: 2rem;
    font-style: normal;
}

.water-image-full {
    width: 100%;
    margin-top: 40px;
}

.water-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção: O cenário desafiador do Brasil */
.challenge-section {
    background: var(--branco);
    padding: 0 0 140px;
    position: relative;
    z-index: 1;
}

.challenge-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.challenge-overline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 16px;
}

.challenge-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.25;
}

.challenge-card {
    position: relative;
    background: #0B1221;
    border-radius: 24px;
    padding: 48px 56px;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 45%;
    height: 90%;
    background: radial-gradient(ellipse, rgba(253, 79, 0, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.challenge-card__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.challenge-stat__number {
    display: block;
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: var(--laranja);
    margin-bottom: 20px;
}

.challenge-stat__text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--branco);
    max-width: 280px;
}

.challenge-content__text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.challenge-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.challenge-pillar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.challenge-pillar__icon {
    display: flex;
    color: var(--laranja);
}

.challenge-pillar__label {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--branco);
}

.challenge-quote {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--azul-escuro);
    margin-top: 48px;
    line-height: 1.4;
}

/* Seção: Atuação da Liderban */
.atuacao-section {
    position: relative;
    background: #1A2235;
    padding: 0 0 80px;
    color: var(--branco);
    overflow: visible;
}

.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.wave-background img {
    width: 100%;
    height: auto;
    display: block;
}

.atuacao-section .container {
    position: relative;
    z-index: 3;
}

.atuacao-image {
    position: relative;
    margin-top: -100px;
    margin-bottom: 56px;
    border-radius: 24px;
    overflow: hidden;
}

.atuacao-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    aspect-ratio: 16 / 7;
}

.atuacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.atuacao-overline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 16px;
}

.atuacao-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1.25;
    margin-bottom: 20px;
}

.atuacao-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.atuacao-cta {
    display: inline-block;
    background: var(--laranja);
    color: var(--branco);
    padding: 16px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.atuacao-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.atuacao-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.atuacao-value-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
}

.atuacao-value-number {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--laranja);
    margin-bottom: 12px;
}

.atuacao-value-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 8px;
    line-height: 1.3;
}

.atuacao-value-text {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.section-title.white {
    color: var(--branco);
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
}

.atuacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.atuacao-content.atuacao-content-full {
    display: block;
}

.atuacao-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--branco);
}

.atuacao-text p {
    margin-bottom: 1.5rem;
    color: var(--branco);
}

.atuacao-text strong {
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

/* Grid de 4 colunas para página de clientes */
.partners-grid.partners-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Seção de clientes com fundo escuro */
.clientes-section {
    background: #f0f2f5;
    padding: 80px 0 120px;
}

.clientes-section .section-title {
    color: var(--azul-escuro);
}

.clientes-section .partner-card {
    height: 140px;
    padding: 25px 30px;
    border-radius: 20px;
    background: var(--branco);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.clientes-section .partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.clientes-section .partner-card img {
    filter: none;
    max-height: 70px;
    width: auto;
    max-width: 85%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.clientes-section .partner-card:hover img {
    filter: none;
}

/* Logos maiores - tamanho mais consistente */
.clientes-section .partner-card.partner-card-large img {
    max-height: 75px;
    max-width: 90%;
}

/* Logos extra grandes - tamanho mais consistente */
.clientes-section .partner-card.partner-card-xlarge img {
    max-height: 80px;
    max-width: 90%;
}

/* Logos menores - tamanho mais consistente */
.clientes-section .partner-card.partner-card-small img {
    max-height: 65px;
    max-width: 85%;
}

/* Logos específicas maiores: geocontrole, milplan, mrv, scl */
.clientes-section .partner-card img[alt="Geocontrole"],
.clientes-section .partner-card img[alt="Milplan"],
.clientes-section .partner-card img[alt="Arena MRV"],
.clientes-section .partner-card img[alt="SCL Salum Construções"] {
    max-height: 95px;
    max-width: 95%;
}

/* Geocontrole ainda maior */
.clientes-section .partner-card img[alt="Geocontrole"] {
    max-height: 110px;
    max-width: 98%;
}

/* Card centralizado para última linha ímpar */
.partner-card.partner-card-center {
    grid-column: 2 / 4;
}

.partner-card {
    background: var(--branco);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-height: 150px;
    width: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* Seção: Soluções */
.solucoes-section {
    background: var(--branco);
    padding: 80px 0;
}

.solucoes-header {
    max-width: 720px;
    margin-bottom: 32px;
}

.solucoes-overline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 16px;
}

.solucoes-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.25;
    margin-bottom: 16px;
}

.solucoes-subtitle {
    font-size: 1rem;
    color: var(--cinza-texto);
    line-height: 1.65;
    margin: 0;
}

.solucoes-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.solucoes-filter {
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--azul-escuro);
    background: #EEF0F4;
    border-radius: 999px;
}

.solucoes-filter.is-active {
    background: #DDE1E8;
}

.solucoes-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.solucao-card {
    background: var(--branco);
    border: 1px solid #E8EBF0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0, 26, 63, 0.06);
}

.solucao-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(253, 79, 0, 0.1);
    border-radius: 12px;
    color: var(--laranja);
    margin-bottom: 20px;
}

.solucao-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.35;
    margin-bottom: 12px;
}

.solucao-card__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--cinza-texto);
    margin-bottom: 20px;
}

.solucao-card__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.solucao-card__list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--cinza-texto);
    margin-bottom: 10px;
}

.solucao-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--laranja);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 5l2 2 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.solucao-card__link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--azul-escuro);
    text-decoration: none;
    transition: color 0.3s ease;
}

.solucao-card__link:hover {
    color: var(--laranja);
}

.solucoes-images {
    margin-top: 8px;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.solucoes-coluna-esquerda {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solucoes-coluna-direita {
    display: flex;
    align-items: flex-start;
}

.solucoes-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 650px;
}

.solucoes-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solucoes-image:hover img {
    transform: scale(1.05);
}

.solucoes-coluna-esquerda .solucoes-image img {
    transform: scale(1.05);
}

.solucoes-coluna-esquerda .solucoes-image:hover img {
    transform: scale(1.15);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--cinza-texto);
    text-align: left;
    line-height: 1.6;
    margin: 0;
}

/* Seção: CTA final da home */
.home-cta-section {
    background: var(--branco);
    padding: 0 0 64px;
}

.home-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    background: #0B1221;
    border-radius: 24px;
    padding: 48px 56px;
    overflow: hidden;
}

.home-cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(253, 79, 0, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.home-cta-card__content,
.home-cta-card__actions {
    position: relative;
    z-index: 1;
}

.home-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1.25;
    margin-bottom: 16px;
}

.home-cta-highlight {
    color: var(--laranja);
}

.home-cta-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 520px;
}

.home-cta-card__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.home-cta-button {
    display: inline-block;
    background: var(--laranja);
    color: var(--branco);
    padding: 16px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
}

.home-cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.home-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--branco);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.home-cta-phone:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* Seção: Nossos Clientes (marquee) */
.home-clientes-section {
    background: var(--branco);
    padding: 0 0 80px;
    overflow: hidden;
}

.home-clientes-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--azul-escuro);
    text-align: center;
    margin-bottom: 40px;
}

.clientes-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.clientes-marquee__track {
    display: flex;
    width: max-content;
    animation: clientes-marquee 40s linear infinite;
}

.clientes-marquee__track img {
    height: 72px;
    width: auto;
    flex-shrink: 0;
    mix-blend-mode: screen;
}

.clientes-marquee:hover .clientes-marquee__track {
    animation-play-state: paused;
}

@keyframes clientes-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .clientes-marquee__track {
        animation: none;
    }
}

/* Seção: Cards de Serviços */
.servicos-section {
    background: var(--branco);
    padding: 60px 0;
    position: relative;
}

.servicos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 168, 204, 0.25), transparent);
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out 0.3s forwards;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.servico-card {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
    align-items: flex-start;
}

.servico-card:hover {
    transform: translateY(-5px);
}

.servico-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.servico-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.servico-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--azul-escuro);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.servico-content p {
    color: var(--cinza-texto);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.cta-button-container {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background: var(--laranja);
    color: var(--branco);
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: var(--branco);
    padding: 0;
    color: var(--cinza-texto);
}

.footer .container {
    padding: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--cinza-texto);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--azul-escuro);
}

.copyright {
    text-align: center;
    color: var(--cinza-texto);
    font-size: 0.85rem;
    padding: 25px 0;
    background: var(--cinza-claro);
    margin: 0;
}

/* Responsivo */
@media (max-width: 968px) {
    .header .container {
        padding: 0 40px;
    }

    .header__right {
        gap: 1.25rem;
    }

    .nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .header-actions__cta {
        padding: 9px 16px;
        font-size: 0.72rem;
    }

    .header-search.is-open .header-search__field {
        width: 240px;
    }

    .hero-content {
        bottom: 120px;
        left: 40px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2.4rem;
    }

    .water-grid,
    .atuacao-grid,
    .solucoes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solucoes-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solucoes-title {
        font-size: 1.8rem;
    }

    .solucoes-image {
        height: 400px;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .atuacao-section {
        padding: 0 0 60px;
    }

    .atuacao-image {
        margin-top: -60px;
        margin-bottom: 40px;
    }

    .atuacao-image img {
        aspect-ratio: 16 / 10;
    }

    .atuacao-title {
        font-size: 1.75rem;
    }

    .atuacao-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .water-section {
        padding: 50px 0 24px;
    }

    .challenge-section {
        padding: 0 0 100px;
    }

    .challenge-card {
        padding: 40px 36px;
    }

    .challenge-card__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .challenge-stat__text {
        max-width: none;
    }

    .challenge-title {
        font-size: 1.8rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid.partners-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-card.partner-card-center {
        grid-column: 1 / -1;
    }

    .clientes-section .partner-card {
        height: 120px;
        min-height: auto;
        padding: 20px;
    }

    .clientes-section .partner-card img {
        max-height: 50px;
        max-width: 80%;
    }

    .clientes-section .partner-card.partner-card-large img,
    .clientes-section .partner-card.partner-card-xlarge img {
        max-height: 55px;
        max-width: 85%;
    }

    .clientes-section .partner-card.partner-card-small img {
        max-height: 45px;
        max-width: 75%;
    }

    /* Logos específicas maiores: geocontrole, milplan, mrv, scl - Tablet */
    .clientes-section .partner-card img[alt="Geocontrole"],
    .clientes-section .partner-card img[alt="Milplan"],
    .clientes-section .partner-card img[alt="Arena MRV"],
    .clientes-section .partner-card img[alt="SCL Salum Construções"] {
        max-height: 65px;
        max-width: 90%;
    }

    /* Geocontrole ainda maior no tablet */
    .clientes-section .partner-card img[alt="Geocontrole"] {
        max-height: 80px;
        max-width: 95%;
    }

    .clientes-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .header__right {
        gap: 12px;
        margin-left: auto;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions__cta {
        padding: 8px 14px;
        font-size: 0.68rem;
    }

    .header-actions__search {
        width: 36px;
        height: 36px;
    }

    .header-search.is-open .header-search__field {
        width: min(220px, calc(100vw - 200px));
        padding-left: 14px;
        gap: 6px;
    }

    .header-search__submit {
        height: 32px;
        padding: 0 12px;
        font-size: 0.62rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--branco);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        color: var(--cinza-texto) !important;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
    }

    .nav a:hover {
        background: var(--cinza-claro);
        color: var(--azul-escuro) !important;
    }

    .nav a::after {
        display: none;
    }

    .header .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-content {
        bottom: 150px;
        left: 30px;
        right: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-indicators {
        bottom: 100px;
    }

    .floating-icons {
        right: 15px;
        bottom: 15px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
    }

    .water-section {
        padding: 40px 0 20px;
    }

    .challenge-section {
        padding: 0 0 80px;
    }

    .challenge-header {
        margin-bottom: 32px;
    }

    .challenge-title {
        font-size: 1.5rem;
    }

    .challenge-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .challenge-card__grid {
        gap: 28px;
    }

    .challenge-stat__number {
        font-size: 3.5rem;
    }

    .challenge-pillars {
        grid-template-columns: 1fr;
    }

    .challenge-quote {
        font-size: 1.1rem;
        margin-top: 32px;
    }

    .water-grid {
        gap: 30px;
    }

    .atuacao-section {
        padding: 0 0 50px;
        overflow: hidden;
    }

    .atuacao-image {
        margin-top: -40px;
        margin-bottom: 32px;
        border-radius: 16px;
    }

    .atuacao-image img {
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }

    .atuacao-grid {
        gap: 32px;
    }

    .atuacao-title {
        font-size: 1.5rem;
    }

    .atuacao-values {
        grid-template-columns: 1fr;
    }

    .solucoes-section {
        padding: 60px 0;
    }

    .solucoes-cards {
        margin-bottom: 40px;
    }

    .solucoes-filters {
        gap: 8px;
    }

    .solucoes-image {
        height: 300px;
    }

    .home-cta-card {
        grid-template-columns: 1fr;
        padding: 40px 36px;
        gap: 32px;
    }

    .home-cta-card__actions {
        align-items: flex-start;
    }

    .home-cta-title {
        font-size: 1.75rem;
    }

    .clientes-marquee__track img {
        height: 60px;
    }

    .servicos-section {
        padding: 40px 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid.partners-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .clientes-section {
        padding: 40px 0 60px;
    }

    .clientes-section .partner-card {
        height: 90px;
        min-height: auto;
        padding: 12px;
        border-radius: 14px;
    }

    .clientes-section .partner-card img {
        max-height: 55px;
        max-width: 85%;
    }

    .clientes-section .partner-card.partner-card-large img,
    .clientes-section .partner-card.partner-card-xlarge img {
        max-height: 60px;
        max-width: 90%;
    }

    .clientes-section .partner-card.partner-card-small img {
        max-height: 50px;
        max-width: 80%;
    }

    /* Logos específicas maiores: geocontrole, milplan, mrv, scl - Mobile 768px */
    .clientes-section .partner-card img[alt="Geocontrole"],
    .clientes-section .partner-card img[alt="Milplan"],
    .clientes-section .partner-card img[alt="Arena MRV"],
    .clientes-section .partner-card img[alt="SCL Salum Construções"] {
        max-height: 65px;
        max-width: 92%;
    }

    /* Geocontrole ainda maior no mobile 768px */
    .clientes-section .partner-card img[alt="Geocontrole"] {
        max-height: 75px;
        max-width: 95%;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 0;
    }

    .header .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        bottom: 140px;
        left: 20px;
        right: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-indicators {
        bottom: 80px;
    }

    .water-section {
        padding: 30px 0 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .water-text p {
        font-size: 0.9rem;
    }

    .atuacao-section {
        padding: 0 0 40px;
    }

    .atuacao-image {
        margin-top: -30px;
        margin-bottom: 24px;
    }

    .atuacao-image img {
        border-radius: 12px;
    }

    .atuacao-title {
        font-size: 1.35rem;
    }

    .atuacao-description {
        font-size: 0.9rem;
    }

    .atuacao-value-card {
        padding: 20px;
    }

    .solucoes-section {
        padding: 40px 0;
    }

    .solucoes-title {
        font-size: 1.5rem;
    }

    .solucoes-filter {
        font-size: 0.65rem;
        padding: 8px 14px;
    }

    .solucao-card {
        padding: 24px 20px;
    }

    .solucoes-image {
        height: 250px;
    }

    .home-cta-section {
        padding: 0 0 48px;
    }

    .home-cta-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .home-cta-title {
        font-size: 1.45rem;
    }

    .home-cta-button,
    .home-cta-phone {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .home-cta-card__actions {
        width: 100%;
    }

    .home-clientes-section {
        padding: 0 0 60px;
    }

    .home-clientes-title {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }

    .clientes-marquee__track img {
        height: 48px;
    }

    .servicos-section {
        padding: 30px 0;
    }

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

    .servico-card {
        text-align: center;
        align-items: center;
    }

    .servico-icon {
        justify-content: center;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
    }

    .floating-icon svg {
        width: 20px;
        height: 20px;
    }

    .partners-grid.partners-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .clientes-section {
        padding: 30px 0 40px;
    }

    .clientes-section .partner-card {
        height: 75px;
        min-height: auto;
        padding: 8px;
        border-radius: 12px;
    }

    .clientes-section .partner-card img {
        max-height: 50px;
        max-width: 85%;
    }

    .clientes-section .partner-card.partner-card-large img,
    .clientes-section .partner-card.partner-card-xlarge img {
        max-height: 55px;
        max-width: 90%;
    }

    .clientes-section .partner-card.partner-card-small img {
        max-height: 45px;
        max-width: 80%;
    }

    /* Logos específicas maiores: geocontrole, milplan, mrv, scl - Mobile 480px */
    .clientes-section .partner-card img[alt="Geocontrole"],
    .clientes-section .partner-card img[alt="Milplan"],
    .clientes-section .partner-card img[alt="Arena MRV"],
    .clientes-section .partner-card img[alt="SCL Salum Construções"] {
        max-height: 60px;
        max-width: 90%;
    }

    /* Geocontrole ainda maior no mobile 480px */
    .clientes-section .partner-card img[alt="Geocontrole"] {
        max-height: 70px;
        max-width: 93%;
    }

    .footer-contact-info {
        font-size: 0.8rem;
    }
}

/* ===================================
   PÁGINA DE SOLUÇÕES
   =================================== */

/* Hero da página Soluções */
.solutions-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    overflow: visible;
}

.solutions-hero .wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.solutions-hero .wave-bottom img {
    width: 100%;
    height: clamp(56px, 7vw, 104px);
    display: block;
    object-fit: fill;
}

.solutions-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.solutions-hero-bg--video {
    border: 0;
    object-fit: cover;
}

.solutions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Seção Cards de Soluções */
.solutions-cards-section {
    background: var(--branco);
    padding: 80px 0 100px;
}

.solutions-title {
    text-align: left;
    margin-bottom: 20px;
    margin-top: -50px;
    font-size: 2rem;
}

.solutions-intro {
    margin-top: -50px;
    margin-bottom: 48px;
}

.solutions-intro__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-align: left;
}

.solutions-intro__lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--cinza-texto);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solutions-intro__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cinza-texto);
    margin: 0;
}

.solutions-intro__text strong {
    color: var(--azul-escuro);
    font-weight: 600;
}

.solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    display: block;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover img {
    transform: scale(1.08);
}

.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    transition: background 0.4s ease;
}

.solution-card:hover .solution-card-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.solution-card-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.solution-card:hover .solution-card-title {
    opacity: 0;
    transform: translateY(10px);
}

/* Texto "Saiba mais" no hover */
.solution-card-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.solution-card:hover .solution-card-hover {
    opacity: 1;
}

/* Seção: Nossa Solidez em Números */
.solutions-stats-section {
    background: var(--cinza-claro);
    padding: 80px 0;
}

.solutions-stats-header {
    margin-bottom: 40px;
}

.solutions-stats-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.solutions-stats-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cinza-texto);
    max-width: 720px;
    margin: 0;
}

.solutions-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solutions-stat-card {
    background: var(--azul-escuro);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
}

.solutions-stat-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--branco);
    margin: 0;
}

.solutions-stat-card strong {
    font-weight: 700;
    color: var(--branco);
}

/* Seção: Especialistas em Desafios Complexos */
.solutions-expertise-section {
    background: var(--branco);
    padding: 80px 0 100px;
}

.solutions-expertise-header {
    margin-bottom: 32px;
}

.solutions-expertise-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.solutions-expertise-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cinza-texto);
    max-width: 720px;
    margin: 0;
}

.solutions-expertise-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0 0 64px;
    color: var(--azul-escuro);
}

.solutions-expertise-list li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.solutions-expertise-cta {
    text-align: center;
}

.solutions-expertise-cta-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--laranja);
    line-height: 1.3;
    margin-bottom: 28px;
}

.solutions-expertise-btn {
    display: inline-block;
    background: var(--laranja);
    color: var(--branco);
    padding: 18px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.solutions-expertise-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Modal de Soluções */
.solucao-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.solucao-modal-overlay.active {
    display: flex;
}

.solucao-modal {
    background: var(--branco);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.solucao-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--azul-escuro);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}

.solucao-modal-close:hover {
    color: var(--laranja);
}

.solucao-modal-img {
    width: 40%;
    flex-shrink: 0;
    padding: 25px;
}

.solucao-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solucao-modal-content {
    flex: 1;
    padding: 35px 35px 30px 15px;
    display: flex;
    flex-direction: column;
}

.solucao-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.solucao-modal-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.solucao-modal-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin: 0;
}

.solucao-modal-subtitle {
    font-size: 1rem;
    color: var(--azul-escuro);
    margin-bottom: 15px;
    line-height: 1.5;
}

.solucao-modal-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    flex: 1;
}

.solucao-modal-list li {
    font-size: 0.95rem;
    color: var(--azul-escuro);
    line-height: 1.6;
    margin-bottom: 12px;
}

.solucao-modal-cta {
    text-align: right;
    margin-top: 20px;
}

.solucao-modal-btn {
    display: inline-block;
    background: var(--laranja);
    color: var(--branco);
    padding: 14px 50px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.solucao-modal-btn:hover {
    background: #d4740a;
    transform: translateY(-2px);
}

/* Modal Responsivo */
@media (max-width: 768px) {
    .solucao-modal {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .solucao-modal-img {
        width: 100%;
        height: 250px;
        padding: 20px 20px 0;
    }

    .solucao-modal-content {
        padding: 20px 25px 25px;
    }

    .solucao-modal-header h2 {
        font-size: 1.3rem;
    }

    .solucao-modal-cta {
        text-align: center;
    }
}

/* Página 404 */
.site-main--404 .page-content-section {
    min-height: 50vh;
    padding-top: 140px;
}

.site-main--404 .blog-listing__empty {
    max-width: 520px;
    margin-bottom: 2rem;
}

.site-404__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
}

.site-404__links a {
    color: var(--azul-escuro, #001A3F);
    font-weight: 600;
    text-decoration: none;
}

.site-404__links a:hover {
    text-decoration: underline;
}

/* Seção de conteúdo genérica para páginas internas */
.page-content-section {
    background: var(--branco);
    padding: 80px 0 100px;
}

/* Footer específico da página Soluções */
.solutions-footer {
    background: #001A3F;
}

.solutions-footer .footer-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.solutions-footer .footer-nav a {
    color: var(--branco);
    opacity: 0.9;
}

.solutions-footer .footer-nav a:hover {
    opacity: 1;
    color: var(--branco);
}

.footer-contact {
    text-align: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-title {
    color: var(--branco);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-contact-info {
    color: var(--branco);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-contact-info a {
    color: var(--branco) !important;
    text-decoration: none;
}

.footer-contact-info a:visited,
.footer-contact-info a:active,
.footer-contact-info a:hover {
    color: var(--branco) !important;
}

.solutions-footer .copyright {
    background: transparent;
    color: var(--branco);
    opacity: 0.7;
}

/* Responsivo - Página Soluções */
@media (max-width: 968px) {
    .solutions-hero {
        height: 35vh;
        min-height: 280px;
    }

    .solutions-title {
        font-size: 2rem;
        text-align: center;
        margin-top: -20px;
    }

    .solutions-intro {
        margin-top: -20px;
        margin-bottom: 40px;
    }

    .solutions-intro__title {
        font-size: 2rem;
    }

    .solutions-cards-grid {
        gap: 25px;
    }

    .solution-card {
        height: 280px;
    }

    .solution-card-title {
        font-size: 1.3rem;
        bottom: 25px;
        left: 25px;
    }

    .solutions-stats-title,
    .solutions-expertise-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        height: 30vh;
        min-height: 220px;
    }

    .solutions-cards-section {
        padding: 60px 0 80px;
    }

    .solutions-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solutions-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-card {
        height: 240px;
    }

    .solution-card-title {
        font-size: 1.3rem;
        bottom: 25px;
        left: 25px;
    }

    .solucao-modal-btn {
        padding: 12px 35px;
        font-size: 1rem;
    }

    .solutions-stats-section,
    .solutions-expertise-section {
        padding: 60px 0;
    }

    .solutions-expertise-cta-text {
        font-size: 1.5rem;
    }

    .solutions-expertise-btn {
        padding: 16px 24px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .solutions-hero {
        height: 25vh;
        min-height: 180px;
    }

    .solutions-title {
        font-size: 1.6rem;
        margin-top: -10px;
    }

    .solutions-intro {
        margin-top: -10px;
        margin-bottom: 32px;
    }

    .solutions-intro__title {
        font-size: 1.6rem;
    }

    .solutions-intro__lead {
        font-size: 1rem;
    }

    .solutions-stats-title,
    .solutions-expertise-title {
        font-size: 1.6rem;
    }

    .solutions-expertise-cta-text {
        font-size: 1.25rem;
    }

    .solutions-expertise-btn {
        width: 100%;
        max-width: 320px;
    }

    .solutions-cards-section {
        padding: 40px 0 60px;
    }

    .solution-card {
        height: 200px;
    }

    .solution-card-title {
        font-size: 1.1rem;
        bottom: 18px;
        left: 18px;
    }

    .solution-card-hover {
        font-size: 1.1rem;
    }

    .solucao-modal-overlay {
        padding: 10px;
    }

    .solucao-modal-img {
        height: 200px;
        padding: 15px 15px 0;
    }

    .solucao-modal-content {
        padding: 15px 20px 20px;
    }

    .solucao-modal-header h2 {
        font-size: 1.15rem;
    }

    .solucao-modal-subtitle {
        font-size: 0.9rem;
    }

    .solucao-modal-list li {
        font-size: 0.85rem;
    }

    .solucao-modal-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
}

/* ===================================
   PÁGINA QUEM SOMOS
   =================================== */

/* Introdução */
.quemsomos-section {
    background: var(--branco);
    padding: 70px 0 80px;
}

.quemsomos-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: start;
}

.quemsomos-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 1rem;
}

.quemsomos-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.quemsomos-content > p:not(.quemsomos-label) {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--cinza-texto);
    margin-bottom: 1.2rem;
}

.quemsomos-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.quemsomos-pillar {
    padding-left: 18px;
    border-left: 5px solid var(--laranja);
}

.quemsomos-pillar--blue {
    border-left-color: var(--azul-escuro);
}

.quemsomos-pillar h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 0.75rem;
}

.quemsomos-pillar p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--cinza-texto);
    margin: 0;
}

.quemsomos-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 680px;
}

.quemsomos-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Estratégia de Futuro */
.estrategia-section {
    background: var(--cinza-claro);
    padding: 70px 0 80px;
}

.estrategia-title,
.valores-title,
.timeline-horizontal-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--laranja);
    margin-bottom: 2.5rem;
}

.estrategia-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.estrategia-card {
    border-radius: 24px;
    padding: 40px 36px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.estrategia-card--missao {
    background: var(--azul-escuro);
}

.estrategia-card--visao {
    background: var(--laranja);
}

.estrategia-card-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 1.5rem;
}

.estrategia-card--missao .estrategia-card-tag {
    background: var(--laranja);
}

.estrategia-card--visao .estrategia-card-tag {
    background: var(--azul-escuro);
}

.estrategia-card p {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--branco);
    margin: 0;
}

/* Nossos Valores */
.valores-section {
    background: var(--cinza-claro);
    padding: 0 0 80px;
}

.valores-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.valor-card {
    background: var(--branco);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 26, 63, 0.08);
    min-height: 140px;
}

.valor-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.valor-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--cinza-texto);
    margin: 0;
}

/* Timeline horizontal */
.timeline-horizontal-section {
    background: var(--cinza-claro);
    padding: 0 0 80px;
}

.timeline-horizontal-title {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.timeline-horizontal {
    display: grid;
    grid-template-columns: repeat(var(--timeline-count, 7), minmax(0, 1fr));
    gap: 12px;
    position: relative;
    padding: 100px 0 100px;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background: var(--laranja);
    z-index: 0;
}

.timeline-horizontal-item {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 200px;
}

.timeline-horizontal-content {
    text-align: center;
    padding: 0 6px;
}

.timeline-horizontal-year {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--laranja);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-horizontal-content p {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--cinza-texto);
    margin: 0;
}

.timeline-horizontal-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--laranja);
    margin: 0 auto;
    flex-shrink: 0;
}

.timeline-horizontal-spacer {
    min-height: 1px;
}

.timeline-horizontal-item--top .timeline-horizontal-content {
    align-self: end;
    padding-bottom: 16px;
}

.timeline-horizontal-item--bottom .timeline-horizontal-content {
    align-self: start;
    padding-top: 16px;
}

/* Declaração final */
.quemsomos-statement {
    background: var(--cinza-claro);
    padding: 0 0 100px;
}

.quemsomos-statement-box {
    background: var(--azul-escuro);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    padding: 56px 48px 0;
}

.quemsomos-statement-box > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--branco);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quemsomos-statement-box > p:last-of-type {
    margin-bottom: 48px;
}

.quemsomos-statement-bar {
    background: var(--laranja);
    padding: 22px 32px;
    margin: 0 -48px;
}

.quemsomos-statement-bar p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--branco);
    margin: 0;
}

/* Responsivo - Página Quem Somos */
@media (max-width: 1100px) {
    .quemsomos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quemsomos-image-wrap {
        max-width: 520px;
        margin: 0 auto;
    }

    .timeline-horizontal-year {
        font-size: 2rem;
    }

    .timeline-horizontal-content p {
        font-size: 0.72rem;
    }
}

@media (max-width: 968px) {
    .quemsomos-pillars {
        grid-template-columns: 1fr;
    }

    .estrategia-cards {
        grid-template-columns: 1fr;
    }

    .valores-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-horizontal {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 40px;
        padding: 40px 0;
    }

    .timeline-horizontal::before {
        display: none;
    }

    .timeline-horizontal-item {
        grid-template-rows: auto;
        min-height: auto;
    }

    .timeline-horizontal-dot {
        display: none;
    }

    .timeline-horizontal-spacer {
        display: none;
    }

    .timeline-horizontal-item--top .timeline-horizontal-content,
    .timeline-horizontal-item--bottom .timeline-horizontal-content {
        padding: 0;
        align-self: auto;
    }
}

@media (max-width: 768px) {
    .quemsomos-section {
        padding: 50px 0 60px;
    }

    .quemsomos-heading {
        font-size: 1.85rem;
    }

    .quemsomos-image-wrap,
    .quemsomos-image-wrap img {
        min-height: 360px;
    }

    .estrategia-section {
        padding: 50px 0 60px;
    }

    .estrategia-card {
        padding: 32px 28px;
        min-height: auto;
    }

    .estrategia-card p {
        font-size: 1.1rem;
    }

    .valores-section {
        padding: 0 0 60px;
    }

    .valores-cards-grid {
        grid-template-columns: 1fr;
    }

    .timeline-horizontal-section {
        padding: 0 0 60px;
    }

    .timeline-horizontal {
        grid-template-columns: 1fr;
    }

    .quemsomos-statement {
        padding: 0 0 60px;
    }

    .quemsomos-statement-box {
        padding: 40px 24px 0;
    }

    .quemsomos-statement-box > p {
        font-size: 1rem;
    }

    .quemsomos-statement-bar {
        margin: 0 -24px;
        padding: 18px 20px;
    }

    .quemsomos-statement-bar p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .quemsomos-heading {
        font-size: 1.55rem;
    }

    .quemsomos-content > p,
    .quemsomos-pillar p {
        font-size: 0.9rem;
    }

    .estrategia-title,
    .valores-title,
    .timeline-horizontal-title {
        font-size: 1.35rem;
    }

    .timeline-horizontal-year {
        font-size: 1.75rem;
    }
}

/* ===================================
   PÁGINA BANBAN
   =================================== */

.banban-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 0.75rem;
}

.banban-section-label--white {
    color: rgba(255, 255, 255, 0.95);
}

/* Hero */
.banban-hero {
    position: relative;
    height: 62vh;
    min-height: 480px;
    overflow: visible;
}

.banban-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banban-hero__bg--video {
    border: 0;
    object-fit: cover;
}

.banban-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.banban-hero .wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.banban-hero .wave-bottom img {
    width: 100%;
    height: clamp(56px, 7vw, 104px);
    display: block;
    object-fit: fill;
}

/* Intro */
.banban-intro {
    background: var(--branco);
    padding: 80px 0 70px;
}

.banban-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.banban-intro__title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.banban-intro__title span {
    color: var(--laranja);
}

.banban-intro__content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--cinza-texto);
    margin-bottom: 1.2rem;
}

.banban-intro__content p:last-child {
    margin-bottom: 0;
}

.banban-intro__content strong {
    color: var(--laranja);
    font-weight: 700;
}

.banban-intro__logo-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.banban-intro__logo-card img {
    display: block;
    width: 100%;
    height: auto;
}

/* Soluções */
.banban-solucoes {
    background: #f8f9fb;
    padding: 70px 0 90px;
}

.banban-solucoes__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.banban-solucoes__title {
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 0.75rem;
}

.banban-solucoes__subtitle {
    font-size: 1rem;
    color: var(--cinza-texto);
    line-height: 1.7;
}

.banban-solucoes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.banban-solucoes-card {
    background: var(--branco);
    border-radius: 16px;
    padding: 32px 28px 36px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.banban-solucoes-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(253, 79, 0, 0.12);
    margin-bottom: 1.25rem;
    position: relative;
}

.banban-solucoes-card__icon::before {
    content: '';
    position: absolute;
    inset: 14px;
    background: var(--laranja);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.banban-solucoes-card__icon--calendar::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 2a1 1 0 011 1v1h8V3a1 1 0 112 0v1h1a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V6a2 2 0 012-2h1V3a1 1 0 112 0v1zm12 8H5v10h14V10z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 2a1 1 0 011 1v1h8V3a1 1 0 112 0v1h1a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V6a2 2 0 012-2h1V3a1 1 0 112 0v1zm12 8H5v10h14V10z'/%3E%3C/svg%3E");
}

.banban-solucoes-card__icon--building::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 21V3h10v18H4zm12 0V9h4v12h-4zM8 7H6v2h2V7zm0 4H6v2h2v-2zm4-4h-2v2h2V7zm0 4h-2v2h2v-2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 21V3h10v18H4zm12 0V9h4v12h-4zM8 7H6v2h2V7zm0 4H6v2h2v-2zm4-4h-2v2h2V7zm0 4h-2v2h2v-2z'/%3E%3C/svg%3E");
}

.banban-solucoes-card__icon--emergency::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 00-4 12.74V17a2 2 0 002 2h4a2 2 0 002-2v-2.26A7 7 0 0012 2zm0 2a5 5 0 014.9 4h-9.8A5 5 0 0112 4zm-1 9v3h2v-3h-2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 00-4 12.74V17a2 2 0 002 2h4a2 2 0 002-2v-2.26A7 7 0 0012 2zm0 2a5 5 0 014.9 4h-9.8A5 5 0 0112 4zm-1 9v3h2v-3h-2z'/%3E%3C/svg%3E");
}

.banban-solucoes-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 0.85rem;
}

.banban-solucoes-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--cinza-texto);
    margin: 0;
}

/* Eventos */
.banban-eventos {
    background: var(--laranja);
    padding: 70px 0 90px;
}

.banban-eventos__header {
    max-width: 620px;
    margin-bottom: 42px;
}

.banban-eventos__title {
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 1rem;
}

.banban-eventos__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.banban-eventos__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.banban-evento-card {
    background: var(--branco);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.banban-evento-card__visual {
    aspect-ratio: 1;
    overflow: hidden;
}

.banban-evento-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banban-evento-card__body {
    padding: 16px 14px 18px;
}

.banban-evento-card__label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 0.35rem;
}

.banban-evento-card__body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--azul-escuro);
    line-height: 1.3;
    margin: 0;
}

/* CTA */
.banban-cta {
    background: var(--branco);
    padding: 70px 0 80px;
}

.banban-cta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 32px;
    background:
        linear-gradient(135deg, rgba(253, 79, 0, 0.18) 0%, rgba(253, 79, 0, 0) 45%),
        linear-gradient(rgba(0, 10, 30, 0.82), rgba(0, 10, 30, 0.88)),
        url('../images/banban_bg.png') center/cover no-repeat;
}

.banban-cta-card__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
}

.banban-cta-card__title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 0.85rem;
}

.banban-cta-card__title span {
    color: var(--laranja);
}

.banban-cta-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.75rem;
}

.banban-cta-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    background: var(--laranja);
    color: var(--branco);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banban-cta-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(253, 79, 0, 0.35);
}

/* Instagram */
.banban-instagram {
    background: var(--branco);
    padding: 56px 0 80px;
}

.banban-instagram__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.banban-instagram__title {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--azul-escuro);
}

.banban-instagram__nav {
    display: flex;
    gap: 10px;
}

.banban-instagram__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    background: var(--branco);
    color: var(--azul-escuro);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.banban-instagram__arrow:hover {
    border-color: var(--laranja);
    color: var(--laranja);
}

.banban-instagram__viewport {
    overflow: hidden;
}

.banban-instagram__track {
    display: flex;
    gap: 18px;
    transition: transform 0.4s ease;
}

.banban-instagram__item {
    position: relative;
    flex: 0 0 calc(25% - 13.5px);
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banban-instagram__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.banban-instagram__item img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.banban-instagram__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    background: #d9d9d9;
}

.banban-instagram__item--placeholder {
    pointer-events: none;
}

.banban-instagram--placeholder .banban-instagram__item:hover {
    transform: none;
    box-shadow: none;
}

.banban-instagram__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    background: #d9d9d9;
}

.banban-instagram--placeholder .banban-instagram__item {
    pointer-events: none;
}

.banban-instagram--placeholder .banban-instagram__item:hover {
    transform: none;
    box-shadow: none;
}

.banban-instagram__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--laranja);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banban-instagram__action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.banban-instagram__follow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1.5px solid var(--azul-escuro);
    border-radius: 999px;
    color: var(--azul-escuro);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background 0.3s ease, color 0.3s ease;
}

.banban-instagram__follow:hover {
    background: var(--azul-escuro);
    color: var(--branco);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--branco);
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social__link:hover {
    background: var(--laranja);
    transform: translateY(-2px);
    color: var(--branco);
}

/* Onde estamos */
.onde-estamos-section {
    background: var(--cinza-claro);
    padding: 80px 0;
}

.onde-estamos-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.onde-estamos-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--azul-escuro);
    margin-bottom: 16px;
}

.onde-estamos-subtitle {
    color: var(--cinza-texto);
    line-height: 1.7;
    margin: 0;
}

.onde-estamos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.onde-estamos-card {
    background: var(--branco);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 26, 63, 0.06);
}

.onde-estamos-card__title {
    font-size: 1.05rem;
    color: var(--azul-escuro);
    margin: 0 0 12px;
}

.onde-estamos-card__address {
    font-style: normal;
    color: var(--cinza-texto);
    line-height: 1.6;
}

.onde-estamos-card__address p {
    margin: 0 0 6px;
}

.onde-estamos-card__address p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .onde-estamos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .onde-estamos-section {
        padding: 60px 0;
    }

    .onde-estamos-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    text-align: center;
    color: var(--branco);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* Responsivo - Página BanBan */
@media (max-width: 968px) {
    .banban-intro__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .banban-solucoes__grid {
        grid-template-columns: 1fr;
    }

    .banban-eventos__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .banban-instagram__item {
        flex: 0 0 calc(50% - 9px);
    }
}

@media (max-width: 768px) {
    .banban-hero {
        min-height: 360px;
    }

    .banban-intro,
    .banban-solucoes,
    .banban-eventos,
    .banban-cta {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .banban-instagram {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .banban-eventos__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banban-instagram__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .banban-instagram__item {
        flex: 0 0 calc(85% - 9px);
    }
}

@media (max-width: 480px) {
    .banban-eventos__grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .banban-cta-card {
        padding: 40px 20px;
    }
}

/* ===================================
   BLOG — Componentes (Fase 1)
   =================================== */

.site-main--blog {
    background: var(--branco);
}

/* Post em destaque */
.blog-featured {
    padding: 64px 0 48px;
    background: var(--branco);
}

.blog-featured__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    align-items: stretch;
    background: var(--branco);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 42px rgba(0, 26, 63, 0.1);
}

.blog-featured__media {
    display: block;
    min-height: 320px;
    overflow: hidden;
    text-decoration: none;
}

.blog-featured__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.blog-featured__image--placeholder {
    background: linear-gradient(135deg, #dce4ef 0%, #b8c5d6 100%);
}

.blog-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 44px;
}

.blog-featured__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--azul-escuro);
    margin-bottom: 1rem;
}

.blog-featured__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-featured__title a:hover {
    color: var(--laranja);
}

.blog-featured__excerpt {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--cinza-texto);
    margin-bottom: 1.25rem;
}

.blog-featured__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 0.82rem;
    color: var(--cinza-texto);
}

.blog-featured__meta-item--category {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--laranja);
}

.blog-featured__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-featured__button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--laranja);
    color: var(--branco);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-featured__button:hover {
    background: #e04500;
    transform: translateY(-1px);
}

.blog-featured__share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--azul-escuro);
    border-radius: 50%;
    background: transparent;
    color: var(--azul-escuro);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.blog-featured__share:hover {
    background: var(--azul-escuro);
    color: var(--branco);
}

/* Listagem / grid de cards */
.blog-listing {
    padding: 24px 0 48px;
    background: #f8f9fb;
}

.blog-listing__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 24px;
    margin-bottom: 32px;
}

.blog-listing__title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--azul-escuro);
    margin: 0;
}

/* Filtros da listagem */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.blog-filter {
    position: relative;
}

.blog-filter__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    padding: 11px 18px;
    list-style: none;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--azul-escuro);
    background: var(--branco);
    border: 1.5px solid #dde1e8;
    border-radius: 999px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-filter__toggle:focus {
    outline: none;
}

.blog-filter__toggle:focus-visible {
    border-color: var(--azul-escuro);
    box-shadow: 0 0 0 3px rgba(0, 26, 63, 0.15);
}

.blog-filter__toggle::-webkit-details-marker {
    display: none;
}

.blog-filter[open] .blog-filter__toggle {
    border-color: var(--azul-escuro);
    box-shadow: 0 8px 24px rgba(0, 26, 63, 0.08);
}

.blog-filter__chevron {
    margin-left: auto;
    font-size: 0.65rem;
    opacity: 0.65;
    transition: transform 0.2s ease;
}

.blog-filter[open] .blog-filter__chevron {
    transform: rotate(180deg);
}

.blog-filter__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    min-width: 100%;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: var(--branco);
    border: 1px solid #e8ebf0;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0, 26, 63, 0.12);
}

.blog-filter__option {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--azul-escuro);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-filter__option:hover,
.blog-filter__option.is-active {
    background: #eef0f4;
    color: var(--laranja);
}

.blog-filter__option:focus {
    outline: none;
}

.blog-filter__option:focus-visible {
    background: #eef0f4;
    color: var(--laranja);
    box-shadow: inset 0 0 0 2px var(--azul-escuro);
}

.blog-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-listing__empty {
    font-size: 1rem;
    color: var(--cinza-texto);
    text-align: center;
    padding: 48px 0;
}

/* Card de post */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 26, 63, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 63, 0.12);
}

.blog-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    text-decoration: none;
}

.blog-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card__image--placeholder {
    background: linear-gradient(135deg, #dce4ef 0%, #c5d0de 100%);
}

.blog-card:hover .blog-card__image {
    transform: scale(1.04);
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 26px;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.85rem;
}

.blog-card__date {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--laranja);
}

.blog-card__category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--azul-escuro);
    opacity: 0.75;
}

.blog-card__separator {
    color: var(--cinza-texto);
    opacity: 0.5;
    font-size: 0.75rem;
}

.blog-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--azul-escuro);
    margin-bottom: 0.75rem;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: var(--laranja);
}

.blog-card__excerpt {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--cinza-texto);
    margin-bottom: 1.25rem;
}

.blog-card__link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--azul-escuro);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__link:hover {
    color: var(--laranja);
}

/* Paginação do blog */
.blog-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.blog-pagination ul.page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 10px 14px;
    list-style: none;
    background: var(--branco);
    border-radius: 999px;
    box-shadow: 0 10px 32px rgba(0, 26, 63, 0.08);
    border: 1px solid #e8ebf0;
}

.blog-pagination ul.page-numbers li {
    margin: 0;
}

.blog-pagination a.page-numbers,
.blog-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--azul-escuro);
    text-decoration: none;
    background: transparent;
    border: 1.5px solid transparent;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.blog-pagination a.page-numbers:hover {
    border-color: #dde1e8;
    background: #f8f9fb;
    color: var(--laranja);
    transform: translateY(-1px);
}

.blog-pagination a.page-numbers:focus-visible {
    outline: none;
    border-color: var(--azul-escuro);
    box-shadow: 0 0 0 3px rgba(0, 26, 63, 0.12);
}

.blog-pagination a.prev.page-numbers,
.blog-pagination a.next.page-numbers {
    min-width: auto;
    padding: 0 16px;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.blog-pagination span.page-numbers.current {
    background: var(--azul-escuro);
    border-color: var(--azul-escuro);
    color: var(--branco);
    box-shadow: 0 8px 20px rgba(0, 26, 63, 0.18);
}

.blog-pagination span.page-numbers.dots {
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 4px;
    color: var(--cinza-texto);
}

/* Animações de entrada — blog */
.blog-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-featured__share.is-share-feedback,
.blog-single__share.is-share-feedback {
    background: var(--azul-escuro);
    color: var(--branco);
}

/* Seções estáticas — Fase 3 */
.blog-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 0.75rem;
}

/* Liderban na mídia */
.blog-midia {
    padding: 64px 0;
    background: var(--branco);
}

.blog-midia__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px 32px;
    margin-bottom: 40px;
}

.blog-midia__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 0.75rem;
}

.blog-midia__subtitle {
    max-width: 560px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cinza-texto);
}

.blog-midia__view-all {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--azul-escuro);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.blog-midia__view-all:hover {
    color: var(--laranja);
}

.blog-midia__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-midia-card {
    background: var(--branco);
    border: 1px solid #e8ebf0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-midia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 26, 63, 0.1);
    border-color: transparent;
}

.blog-midia-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    text-decoration: none;
    color: inherit;
}

.blog-midia-card__source {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.blog-midia-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253, 79, 0, 0.12);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--laranja);
}

.blog-midia-card__source-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--azul-escuro);
}

.blog-midia-card__headline {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--azul-escuro);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-midia-card:hover .blog-midia-card__headline {
    color: var(--laranja);
}

.blog-midia-card__date {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cinza-texto);
}

/* Conformidades técnicas */
.blog-conformidades {
    padding: 64px 0 80px;
    background: #f8f9fb;
}

.blog-conformidades__header {
    max-width: 720px;
    margin-bottom: 40px;
}

.blog-conformidades__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--azul-escuro);
    margin-bottom: 0.75rem;
}

.blog-conformidades__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cinza-texto);
}

.blog-conformidades__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blog-conformidades-card {
    background: var(--branco);
    border-radius: 16px;
    padding: 28px 28px 32px;
    box-shadow: 0 8px 28px rgba(0, 26, 63, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-conformidades-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 26, 63, 0.1);
}

.blog-conformidades-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(253, 79, 0, 0.12);
    margin-bottom: 1rem;
    position: relative;
}

.blog-conformidades-card__icon::before {
    content: '';
    position: absolute;
    inset: 14px;
    background: var(--laranja);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.blog-conformidades-card__icon--construction::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22 19V5H2v14h20zM4 17h16V7H4v10zm2-8h3v2H6V9zm0 4h3v2H6v-2zm5-4h7v2h-7V9zm0 4h7v2h-7v-2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22 19V5H2v14h20zM4 17h16V7H4v10zm2-8h3v2H6V9zm0 4h3v2H6v-2zm5-4h7v2h-7V9zm0 4h7v2h-7v-2z'/%3E%3C/svg%3E");
}

.blog-conformidades-card__icon--sanitary::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a5 5 0 00-5 5v2H5v14h14V9h-2V7a5 5 0 00-5-5zm-3 7V7a3 3 0 016 0v2H9z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a5 5 0 00-5 5v2H5v14h14V9h-2V7a5 5 0 00-5-5zm-3 7V7a3 3 0 016 0v2H9z'/%3E%3C/svg%3E");
}

.blog-conformidades-card__icon--accessibility::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a2 2 0 110 4 2 2 0 010-4zm-1 6h2l1 5.5 2.5-1.5L19 18h-2.2l-3.3-5.5-2.5 1.5V18H9V8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a2 2 0 110 4 2 2 0 010-4zm-1 6h2l1 5.5 2.5-1.5L19 18h-2.2l-3.3-5.5-2.5 1.5V18H9V8z'/%3E%3C/svg%3E");
}

.blog-conformidades-card__icon--environment::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8 6 4 8.5 4 13a8 8 0 1016 0c0-4.5-4-7-8-11z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8 6 4 8.5 4 13a8 8 0 1016 0c0-4.5-4-7-8-11z'/%3E%3C/svg%3E");
}

.blog-conformidades-card__tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 26, 63, 0.08);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--azul-escuro);
}

.blog-conformidades-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--azul-escuro);
    margin-bottom: 0.75rem;
}

.blog-conformidades-card__description {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--cinza-texto);
}

/* Banner CTA — documentação técnica */
.blog-cta-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 32px;
    padding: 36px 40px;
    border-radius: 20px;
    background: var(--azul-escuro);
    position: relative;
    overflow: hidden;
}

.blog-cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 45%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(253, 79, 0, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta-banner__content,
.blog-cta-banner__button {
    position: relative;
    z-index: 1;
}

.blog-cta-banner__title {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 0.5rem;
}

.blog-cta-banner__text {
    max-width: 520px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

.blog-cta-banner__button {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--laranja);
    color: var(--branco);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-cta-banner__button:hover {
    background: #e04500;
    transform: translateY(-1px);
}

/* Responsivo — Blog */
@media (max-width: 968px) {
    .blog-featured__grid {
        grid-template-columns: 1fr;
    }

    .blog-featured__media,
    .blog-featured__image {
        min-height: 260px;
    }

    .blog-featured__content {
        padding: 32px 28px 36px;
    }

    .blog-listing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .blog-listing__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-filters {
        width: 100%;
    }

    .blog-filter {
        flex: 1;
        min-width: 0;
    }

    .blog-filter__toggle {
        width: 100%;
        min-width: 0;
    }

    .blog-midia__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-conformidades__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-featured {
        padding: 48px 0 32px;
    }

    .blog-featured__content {
        padding: 28px 22px 32px;
    }

    .blog-listing {
        padding-bottom: 56px;
    }

    .blog-listing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .blog-midia {
        padding: 48px 0;
    }

    .blog-midia__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-midia__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .blog-conformidades {
        padding: 48px 0 64px;
    }

    .blog-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .blog-cta-banner__button {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   BLOG — Detalhe do post (Fase 4)
   =================================== */

.site-main--blog-single {
    background: var(--branco);
}

.blog-single-hero__bg {
    background-size: cover;
    background-position: center;
}

.blog-single {
    padding: 56px 0 72px;
}

.blog-single__container {
    max-width: 820px;
}

.blog-single__header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e8ebf0;
}

.blog-single__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--azul-escuro);
    margin-bottom: 1rem;
}

.blog-single__subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--cinza-texto);
    margin-bottom: 1.5rem;
}

.blog-single__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    font-size: 0.82rem;
    color: var(--cinza-texto);
}

.blog-single__meta-item--category {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--laranja);
}

.blog-single__share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1.5px solid var(--azul-escuro);
    border-radius: 50%;
    background: transparent;
    color: var(--azul-escuro);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.blog-single__share:hover {
    background: var(--azul-escuro);
    color: var(--branco);
}

.blog-single__content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--cinza-texto);
}

.blog-single__content > *:first-child {
    margin-top: 0;
}

.blog-single__content > *:last-child {
    margin-bottom: 0;
}

.blog-single__content p {
    margin-bottom: 1.35rem;
}

.blog-single__content h2,
.blog-single__content h3,
.blog-single__content h4 {
    color: var(--azul-escuro);
    font-weight: 700;
    line-height: 1.3;
    margin: 2rem 0 1rem;
}

.blog-single__content h2 {
    font-size: 1.5rem;
}

.blog-single__content h3 {
    font-size: 1.25rem;
}

.blog-single__content h4 {
    font-size: 1.1rem;
}

.blog-single__content ul,
.blog-single__content ol {
    margin: 0 0 1.35rem 1.25rem;
}

.blog-single__content li {
    margin-bottom: 0.5rem;
}

.blog-single__content a {
    color: var(--laranja);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-single__content a:hover {
    color: #e04500;
}

.blog-single__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 12px;
}

.blog-single__content blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--laranja);
    background: #f8f9fb;
    border-radius: 0 12px 12px 0;
    color: var(--azul-escuro);
    font-style: italic;
}

.blog-single-related {
    padding: 0 0 80px;
    background: #f8f9fb;
}

.blog-single-related__title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--azul-escuro);
    margin-bottom: 32px;
}

.blog-single-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 968px) {
    .blog-single-related__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 576px) {
    .blog-single {
        padding: 40px 0 56px;
    }

    .blog-single__header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .blog-single__share {
        margin-left: 0;
    }

    .blog-single-related {
        padding-bottom: 56px;
    }

    .blog-single-related__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes waterDropFall {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    60% {
        opacity: 1;
        transform: translateY(5px);
    }
    80% {
        transform: translateY(-2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
