/* =====================================================
   🔤 TYPOGRAPHY TOKENS
   ===================================================== */

/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0px;
    z-index: 5;
    padding-top: 0;
    /* sem espaçamento superior */
    /* ocupa toda a largura, mas só os blocos são brancos;
       o meio fica “vazado” mostrando o hero atrás */
    background: transparent;
    box-shadow: none;
    pointer-events: none;


}

.navbar-inner {
    max-width: none;
    /* ocupa toda a largura da tela */
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    pointer-events: auto;
}

.navbar-block--left {
    display: flex;
    align-items: center;
    /* controla o espaço interno onde o logo e o texto ficam */
    padding: 26px 120px 80px 40px;
    margin-top: -7px;
    /* alinha com o bloco direito, encostando no topo */

    /* placa branca da esquerda vinda do SVG do Figma */
    background-image: url("../imagens/fundo-logo.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;

    box-shadow: none;
    border-radius: 0;
    clip-path: none;
}

.navbar-block--right {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    margin-top: 5px;
    top: -20px;
    /* encosta o bloco no topo, sem “faixa” de fundo aparecendo */

    /* controla o espaço interno dos links e botão */
    padding: 26px 195px 30px 48px;

    /* fundo claro contínuo atrás dos itens de menu
       mesma cor do SVG (borda-item-menu.svg) para não aparecer emenda */
    background: #EFF5F4;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    /* sem radius: quem desenha a curva é o SVG por cima */
    border-radius: 0;
    overflow: visible;
}

/* curva branca no INÍCIO do bloco de menu, igual ao Figma */
.navbar-block--right::before {
    content: "";
    position: absolute;
    /* desloca levemente o SVG para fora da div
       para reduzir o “recuo” e alinhar com o Figma */
    left: -90px;
    top: -4px;
    width: 90px;
    height: calc(100% + 4px);
    pointer-events: none;

    background-image: url("../imagens/borda-item-menu.svg");
    background-repeat: no-repeat;
    /* alinha a curva suavemente na base da faixa */
    background-position: left bottom;
    background-size: cover;
    z-index: 2;
    /* fica por cima do fundo da div */
}

.navbar-right-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 230px;
    height: 175px;
    pointer-events: none;

    /* detalhe da borda direita (branco) vindo do SVG do Figma */
    background-image: url("../imagens/fundo-hamburguer-menu.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-brand-blue);
}

.navbar-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 4px;
}

.navbar-logo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--color-brand-blue);

}

.navbar-logo-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-secondary-green);
}

.navbar-logo-year {
    color: var(--color-secondary-yellow);
    font-weight: 600;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: -40px;
    margin-bottom: -10px;
}

.navbar-link {
    position: relative;
    color: var(--Colors-neutral-900, #161D1C);
    font-family: var(--Fonts-Sora, Sora), sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: none;
    transition: color 0.2s ease;

}

.navbar-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--color-secondary-yellow);
    transition: width 0.2s ease;
}

.navbar-link:hover {

    color: #DE8E28;
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-menu-overlay {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;

}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin-top: 25px;

}

.navbar-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: #17847B;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.navbar-toggle.is-open span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.navbar-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.is-open span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
}

.body-no-scroll {
    overflow: hidden;
}

.menu-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: none;
    align-items: stretch;
    justify-content: center;
    color: var(--color-brand-blue);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-fullscreen.is-open {
    display: flex;
}

.menu-fullscreen-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        url("../imagens/fundo-popup.svg"),
        linear-gradient(135deg, #ffffff 0%, #ffffff 15%, #6fa399 60%, #6fa399 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: right center, center;
    background-size: auto 80%, cover;
}

.menu-fullscreen-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.menu-fullscreen-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 64px;
    align-items: start;
}


.menu-fullscreen-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: var(--color-secondary-blue, #2a6ba7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-fullscreen-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-white);
}

.menu-fullscreen-close span:first-child {
    transform: rotate(45deg);
}

.menu-fullscreen-close span:last-child {
    transform: rotate(-45deg);
}

.menu-fullscreen-title,
.section-sobre-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-brand-blue);
    margin-bottom: 32px;

    display: flex;
    align-items: center;
    gap: 16px;
    /* espaço entre barra e texto */
}

.menu-fullscreen-title::before,
.section-sobre-title::before {
    content: "";
    width: 8px;
    height: 58px;
    background: var(--color-secondary-yellow);
    border-radius: 4px;
}

.menu-fullscreen .menu-fullscreen-title::before {
    width: 12px;
}

.menu-fullscreen-left {
    color: var(--color-white);
}

.menu-fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: Sora, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.menu-fullscreen-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--Colors-neutral-700, #495452);
    text-decoration: none;
    padding-block: 4px;
    transition:
        color 0.2s ease,
        font-weight 0.2s ease;
}

.menu-fullscreen-nav a::before {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("../imagens/Vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    opacity: 0;
    transform: translateY(1px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

/* =====================================================
   SEÇÃO "SOBRE O RELATÓRIO" (FORA DO MENU)
   ===================================================== */

.section-sobre {
    position: relative;
    padding: 120px 75px;
    background-image:
        url("../imagens/fundo-popup.svg"),
        linear-gradient(135deg, #ffffff 0%, #ffffff 15%, #6fa399 60%, #6fa399 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center;
    background-size: auto 100%, cover;
}

.section-sobre-inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 64px;
    align-items: start;
}

.section-sobre-copy {
    color: var(--color-brand-blue);
}

.section-sobre .section-sobre-title {
    font-family: Sora, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.section-sobre-title {
    margin-bottom: 24px;
}

.section-sobre-text {
    color: var(--Colors-primary-brand-blue, #021832);
    leading-trim: both;
    text-edge: cap;
    font-family: var(--Fonts-Open-Sans, "Open Sans"), sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 520px;
}

.section-sobre-text p+p {
    margin-top: 12px;
}

.section-sobre-video {
    max-width: 540px;
    margin-left: auto;
}

/* =====================================================
   SEÇÃO DOWNLOAD (CARDS LARANJA)
   ===================================================== */

.section-download-wrapper {
    background: var(--color-white);
}

.section-download {
    position: relative;
    z-index: 2;
    margin-top: -120px;
    padding: 150px 0;
    border-radius: 120px 120px 0 0;
    overflow: hidden;
    background: linear-gradient(90deg, #021832 0%, #021832 15%, #0d2d4a 35%, #1a4a6e 55%, #2a6ba7 75%, #4a8fc4 100%);
    color: var(--color-white);
}

.section-download::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 3%;
    width: 800px;
    height: 580px;
    background-image: url("../imagens/pattern-destaque-petros.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.section-download-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 40px;
    text-align: center;
}

.section-download-title {
    color: #FFF;
    text-align: center;
    font-family: Sora, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 48px;
}

.section-download-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 600px;
    margin-inline: auto;
}

.section-download .menu-fullscreen-cta {
    height: auto;
    min-height: 140px;
    padding: 18px 22px;
    gap: 40px;
    justify-content: flex-start;
    background: var(--color-secondary-blue, #2a6ba7);
}

.section-download .menu-fullscreen-cta:hover {
    background: var(--Colors-secondary-yellow, #DE8E28);
}

.section-download .menu-fullscreen-cta-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
}

.section-download .menu-fullscreen-cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-download .menu-fullscreen-cta .menu-fullscreen-cta-text {
    position: relative;
    transition: padding-left 0.2s ease;
}

.section-download .menu-fullscreen-cta .menu-fullscreen-cta-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: var(--color-secondary-blue, #2a6ba7);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.section-download .menu-fullscreen-cta:hover .menu-fullscreen-cta-text {
    padding-left: 26px;
}

.section-download .menu-fullscreen-cta:hover .menu-fullscreen-cta-text::before {
    opacity: 1;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    background: #001024;
    color: var(--color-neutral-100);
    padding: 32px 0;
}

.site-footer-inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.site-footer-left {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.6;
    max-width: 340px;
}

.site-footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


.site-footer-right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-social-label {
    color: var(--colors-neutral-white, #ffffff);
    text-align: center;
    font-family: "Sora-Bold", sans-serif;
    font-size: 14px;
    line-height: 150%;
    font-weight: 700;
    position: relative;
    align-self: stretch;
}

.footer-social-icons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.menu-fullscreen-nav a:hover {
    color: var(--color-secondary-blue);
    font-weight: 600;
}

.menu-fullscreen-nav a:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.menu-fullscreen-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 901px) {
    .menu-fullscreen-left {
        margin-top: -24px;
    }

    .menu-fullscreen-right {
        margin-top: -24px;
    }
}

.menu-fullscreen-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.menu-fullscreen-cta {
    display: flex;
    height: 214px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border-radius: 12px;
    border: none;
    padding: 24px;
    cursor: pointer;
    background: var(--color-secondary-blue, #2a6ba7);
    color: var(--color-neutral-100);
    text-align: left;
    flex: 1 0 0;
}

.menu-fullscreen-cta--secondary {
    background: var(--color-secondary-blue, #2a6ba7);
}

.menu-fullscreen-cta:hover {
    background: var(--Colors-secondary-yellow, #DE8E28);
    color: var(--color-neutral-100);
}

.menu-fullscreen .menu-fullscreen-cta .menu-fullscreen-cta-text {
    position: relative;
    transition: padding-left 0.2s ease;
}

.menu-fullscreen .menu-fullscreen-cta .menu-fullscreen-cta-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: var(--color-secondary-blue, #2a6ba7);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-fullscreen .menu-fullscreen-cta:hover .menu-fullscreen-cta-text {
    padding-left: 26px;
}

.menu-fullscreen .menu-fullscreen-cta:hover .menu-fullscreen-cta-text::before {
    opacity: 1;
}

.menu-fullscreen .menu-fullscreen-cta-icon {
    width: 56px;
    height: 56px;
}

.menu-fullscreen .menu-fullscreen-cta-icon img {
    width: 56px;
    height: 56px;
}

.menu-fullscreen-cta-icon {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
}


.menu-fullscreen-cta-text {
    color: var(--Colors-neutral-white, #FFF);
    font-family: var(--Fonts-Sora, Sora), var(--font-heading);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    /* 23.4px */

}


.menu-fullscreen-video {
    position: relative;
    /* referência para o CTA absoluto */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-fullscreen-video-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.menu-fullscreen-video-media img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-fullscreen-video-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

.section-sobre .menu-fullscreen-video-media {
    min-height: 320px;
}

.section-sobre .menu-fullscreen-video-iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.menu-fullscreen-video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-fullscreen-video-play span {
    margin-left: 4px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid var(--color-secondary-blue);
}

.menu-fullscreen-video-cta {
    position: absolute;
    /* posiciona sobre o vídeo, parte inferior */
    left: 50%;
    bottom: -18px;
    /* sobrepõe a parte inferior do vídeo */
    transform: translateX(-50%);
    z-index: 4;
    /* acima da mídia */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    border: none;
    padding: 12px 22px;
    background: rgba(42, 107, 167, 0.50);
    color: var(--color-white);
    font-family: var(--font-body);
    text-decoration: none;
    white-space: nowrap;
    /* impede quebra de linha do texto */
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    /* blur */
    backdrop-filter: blur(20px);
}

.navbar-cta {
    color: var(--Colors-primary-brand-blue, #021832);
    background: transparent;
    display: flex;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 6px;
    border: 1px solid var(--Colors-secondary-yellow, #DE8E28);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-style: normal;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    line-height: 150%;
}

.navbar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    background: #DE8E28;
}

.navbar-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;


}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 120vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
    /* Compensa a altura da navbar fixa */
    border-radius: 0 0 120px 120px;
}

/* Swiper do Hero - tela cheia */
.swiper-hero {
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: calc(100% + 24px);
    z-index: 0;
}

.swiper-hero .swiper-slide {
    width: 100%;
    height: 100%;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(2, 24, 50, 0.3) 0%,
            rgba(2, 24, 50, 0.1) 50%,
            rgba(2, 24, 50, 0.3) 100%);
}

/* Indicadores de slide horizontal */
.hero-indicators {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

/* barras horizontais compactas */
.indicator {
    width: 8px;
    /* comprimento reduzido quando inativo */
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--color-white);
    width: 16px;
    /* ativo maior que os próximos */
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Conteúdo do Hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    margin-left: 22%;
    padding-left: 32%;
    height: 70%;
    transform: translateY(-44px);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;

}

.hero-title-top {
    font-family: var(--font-heading);
    font-size: 67.2px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: 0.02em;

}

.hero-title-bottom {
    font-family: var(--font-heading);
    font-size: 62.4px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: 0.02em;
}

/* Botão Continue Explorando */
.hero-scroll-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--color-white);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-btn:hover {
    opacity: 0.8;
}

.scroll-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-secondary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.scroll-icon.is-pulsing {
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(222, 142, 40, 0.45);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(222, 142, 40, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(222, 142, 40, 0);
    }
}

.hero-scroll-btn:hover .scroll-icon {
    transform: translateY(4px);
}

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

.scroll-text {
    color: var(--Colors-complementary-white, #FFF);
    leading-trim: both;
    text-edge: cap;
    font-family: Sora, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

@media (max-width: 900px) {
    .menu-fullscreen-inner {
        padding: 72px 20px 48px;
    }

    .menu-fullscreen-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .menu-fullscreen-actions {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Responsividade Navbar + Hero */
@media (max-width: 768px) {

    /* Header mobile: fundo branco, logo à esquerda, hamburger à direita */
    .navbar {
        background: var(--color-white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .navbar-inner {
        width: 100%;
        padding: 16px 20px;
        justify-content: space-between;
        align-items: center;
        background: var(--color-white);
        column-gap: 0;
    }

    .navbar-block--left {
        padding: 0;
        margin-top: 0;
        background: none;
        background-image: none;
    }

    .navbar-block--right {
        padding: 0;
        margin-top: 0;
        background: transparent;
        box-shadow: none;
        gap: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .navbar-block--right::before,
    .navbar-right-accent {
        display: none;
    }

    .navbar-nav {
        display: none;
    }

    .navbar-logo-text img {
        height: 46px;
        width: auto;
    }

    .navbar-menu-overlay {
        position: static;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5.5px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 8px;
        border: none;
        background: transparent;
        cursor: pointer;
    }

    .navbar-toggle span {
        display: block;
        width: 18px;
        height: 1.5px;
        border-radius: 2px;
        background: #17847B;
    }

    /* Hero mobile */
    .hero {
        height: 115vh;
        min-height: 720px;
        overflow: hidden;
        border-radius: 0 0 24px 24px;
    }

    .section-destaques {
        margin-top: -24px;
        padding-top: 44px;
    }

    .hero-image {
        object-fit: cover;
        object-position: center 42%;
    }

    .hero-indicators {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        padding: 0 24px 182px;
        text-align: left;
        margin-left: 0;
        align-items: flex-start;
        transform: none;
    }

    .hero-title-top {
        font-size: 54px;

    }

    .hero-title-bottom {
        font-size: 50px;
    }

    .hero-scroll-btn {
        bottom: 16px;
    }

    .scroll-text {
        font-size: 14px;
    }

    .scroll-icon {
        width: 44px;
        height: 44px;
    }

    /* Seção Sobre o relatório - mobile */
    .section-sobre {
        padding: 60px 0 80px;
    }

    .section-sobre-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-inline: 20px;
    }

    .section-sobre-copy {
        order: 1;
    }

    .section-sobre-title {
        justify-content: flex-start;
        margin-bottom: 20px;
        font-size: 32px;
    }

    .section-sobre .section-sobre-title {
        font-size: 32px;
    }

    .section-sobre-title::before {
        height: 44px;
    }

    .section-sobre-text {
        max-width: none;
        font-size: 12px;
        line-height: 1.6;
    }

    .section-sobre-video {
        order: 2;
        max-width: none;
        margin-left: 0;
    }

    .section-sobre .menu-fullscreen-video-media {
        min-height: 0;
        aspect-ratio: 16 / 9;
        border-radius: 16px;
    }

    .section-sobre .menu-fullscreen-video-iframe {
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .section-sobre .menu-fullscreen-video-cta {
        bottom: -26px;
        background: linear-gradient(to bottom, #3a6b8a 0%, #2a5570 100%);
        padding: 14px 20px;
        font-size: 13px;
    }

    /* Seção Baixe o relatório - mobile */
    .section-download {
        margin-top: -48px;
        padding: 72px 0 88px;
        border-radius: 36px 36px 0 0;
    }

    .section-capitulos {
        padding-bottom: 80px;
    }

    .section-download-inner {
        padding-inline: 22px;
    }

    .section-download-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 28px;
        text-align: center;
    }

    .section-download-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-download .menu-fullscreen-cta {
        height: auto;
        min-height: 214px;
        padding: 24px;
        gap: 16px;
        border-radius: 6px;
    }

    .section-download .menu-fullscreen-cta-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
    }

    /* Destaques carousel mobile: card central, outros atrás (efeito empilhado) */
    .section-destaques .swiper-destaques {
        overflow: visible;
    }

    .section-destaques .swiper {
        overflow: visible;
    }

    .section-destaques .carousel-wrapper {
        width: 100%;
        max-width: 340px;
        margin-inline: auto;
        overflow: visible;
    }

    .section-destaques .divisor {
        justify-content: center;
        margin: 30px auto 24px;
        font-size: 32px;
    }

    .section-destaques .card {
        width: 260px;
        height: 300px;
        min-height: 300px;
        padding: 28px 24px;
        gap: 20px;
        background: rgba(4, 22, 48, 0.55);
        border: 1px solid rgba(42, 107, 167, 0.45);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    /* Overlap no mobile igual ao desktop: card central sobre os laterais */
    .section-destaques .swiper-slide-prev,
    .section-destaques .swiper-slide-next {
        z-index: 2;
    }

    .section-destaques .swiper-slide-prev {
        transform: translateX(26px);
    }

    .section-destaques .swiper-slide-next {
        transform: translateX(-26px);
    }

    .section-destaques .swiper-slide-prev .card,
    .section-destaques .swiper-slide-next .card {
        transform: scale(0.9) translateY(10px);
        opacity: 0.78;
    }

    .section-destaques .swiper-slide-active .card {
        transform: scale(1.03) translateY(0);
        opacity: 1;
        z-index: 3;
        background: rgba(4, 22, 52, 0.55);
        border-color: rgba(42, 107, 167, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .section-destaques .card-icon {
        width: 80px;
        height: 56px;
        min-width: 80px;
    }

    .section-destaques .card-value {
        font-size: 28px;
    }

    .section-destaques .card-label {
        font-size: 11px;
        white-space: nowrap;
    }

    /* Setas Destaques: usam SVGs State=Default e State=Hover (definidos no escopo geral) */

    .section-destaques .carousel-progress {
        background: rgba(80, 110, 140, 0.4);
    }

    .section-destaques .carousel-progress-bar {
        background: var(--color-secondary-yellow);
    }
}

/* Smooth scroll para navegação */
html {
    scroll-behavior: smooth;
}

:root {
    --font-heading: "Sora", sans-serif;
    --font-body: "Open Sans", sans-serif;

    --text-xs: 12px;
    --text-sm: 14px;
    --text-md: 16px;
    --text-lg: 20px;
    --text-xl: 28px;
    --text-2xl: 36px;
    --text-3xl: 48px;
}

:root {
    /* ========= BRAND ========= */
    --color-brand-green: #6fa399;
    --color-brand-blue: #021832;
    --color-brand-green-65: #a1c3bd;

    /* ========= SECONDARY ========= */
    --color-secondary-green: #17847b;
    --color-secondary-blue: #2a6ba7;
    --color-secondary-yellow: #de8e28;

    /* ========= NEUTRAL SCALE ========= */
    --color-white: #ffffff;

    --color-neutral-50: #f1f3f3;
    --color-neutral-100: #e4e8e7;
    --color-neutral-200: #cbd2d0;
    --color-neutral-300: #b1bab8;
    --color-neutral-400: #96a19f;
    --color-neutral-500: #7d8987;
    --color-neutral-600: #626e6c;
    --color-neutral-700: #495452;
    --color-neutral-800: #2f3837;
    --color-neutral-900: #161d1c;
    --color-neutral-950: #0b0e0e;

    --color-black: #000000;

    /* =====================================================
     🎯 TOKENS SEMÂNTICOS (use estes no projeto)
     ===================================================== */

    --color-bg: var(--color-white);
    --color-bg-soft: var(--color-neutral-50);

    --color-text: var(--color-neutral-900);
    --color-text-muted: var(--color-neutral-600);

    --color-border: var(--color-neutral-200);

    --color-primary: var(--color-brand-green);
    --color-secondary: var(--color-secondary-blue);

    --color-success: var(--color-secondary-green);
    --color-warning: var(--color-secondary-yellow);

    /* ========= EXTRAS ========= */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --transition-default: 0.2s ease;
}

/* =====================================================
   🔄 RESET
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================================================
   BASE
   ===================================================== */

body {
    background: var(--color-brand-blue);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   PRELOADER
   ===================================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader__logo {
    width: 200px;
    filter: grayscale(100%);
    opacity: 0.2;
    animation: preloader-reveal 1.8s ease forwards;
}

.preloader.is-done {
    opacity: 0;
    pointer-events: none;
}

@keyframes preloader-reveal {
    to {
        filter: grayscale(0%);
        opacity: 1;
    }
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
}

/* =====================================================
   COMPONENTES BASE (opcional)
   ===================================================== */

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

.card {
    width: 100%;
    max-width: 360px;
    height: 360px;
    min-height: 360px;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 24px;
    border: 1px solid var(--Colors-secondary-blue, #2a6ba7);
    background: rgba(2, 24, 50, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    transition: all 0.4s ease;
}

.button {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity var(--transition-default);
}

.button:hover {
    opacity: 0.85;
}

.button--secondary {
    background: var(--color-secondary);
}

.button--success {
    background: var(--color-success);
}

.button--warning {
    background: var(--color-warning);
}

.text-muted {
    color: var(--color-text-muted);
}

/* =====================================================
   SECTION DESTAQUES
   ===================================================== */

.section-destaques {
    position: relative;
    z-index: 1;
    margin-top: -120px;
    padding: 140px 20px 60px;
    overflow: hidden;
    background: linear-gradient(90deg,
            #021832 0%,
            #021832 27%,
            #123a62 62%,
            #2A6BA7 100%);
}

/* pattern SVG no canto inferior direito, acima do gradiente */
.section-destaques::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 723px;
    height: 460px;
    background-image: url("../imagens/pattern-destaque-petros.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

/* garante que o conteúdo da section fique acima do pattern */
.section-destaques>* {
    position: relative;
    z-index: 1;
}

.divisor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 50px;
    padding: 10px;
    font-family: Sora, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    color: var(--color-neutral-50);
}

/* =====================================================
 DIVISOR E TITULO
   ===================================================== */

.divisor::before {
    content: "";
    width: 8px;
    height: 58px;
    background: var(--color-secondary-yellow);
    border-radius: 4px;
}

/* =========================
   CAROUSEL WRAPPER
========================= */

.carousel-wrapper {
    width: 920px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* =========================
   SWIPER
========================= */

.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-destaques {
    padding: 32px 0;
}

.swiper-wrapper {
    align-items: center;
}

/* =========================
   SLIDES
========================= */

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;

}

/* card central fica na frente */
.swiper-slide-active {
    z-index: 3;
}

/* cards vizinhos ficam atrás do central, empurrados para dentro */
.swiper-slide-prev {
    z-index: 2;
    transform: translateX(40px);
}

.swiper-slide-next {
    z-index: 2;
    transform: translateX(-40px);
}

/* =========================
   CARD
========================= */

.card {
    display: flex;
    position: relative;
    width: 100%;
    height: 320px;
    padding: 26px 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid rgba(42, 107, 167, 0.45);
    background: rgba(4, 22, 48, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: none;
    transition:
        transform 0.4s ease,
        opacity 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;
}

.card-icon {
    width: 96px;
    height: 68px;
    min-width: 96px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-value {
    color: var(--Colors-neutral-white, #FFF);
    leading-trim: both;
    text-edge: cap;
    font-family: Sora, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.card-label {
    color: var(--Colors-secondary-yellow, #DE8E28);
    leading-trim: both;
    text-edge: cap;
    font-family: Sora, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    white-space: nowrap;
}

.card-content .card-label {
    margin: 0;
}

.card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.card .card-icon img {
    width: 100%;
    height: 100%;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: white;
}

@media (min-width: 769px) {
    .section-destaques .card-content {
        margin-top: 12px;
    }
}

.card h3 {
    font-family: Sora, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
}

.card h2 {
    font-family: Sora, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: var(--color-secondary-yellow);
    text-transform: uppercase;
}

.card p {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

/* =========================
   ESTADOS DOS CARDS
========================= */

/* cards laterais: menores, mais baixos e semi-transparentes */
.swiper-slide-prev .card,
.swiper-slide-next .card {
    transform: scale(0.9) translateY(14px);
    opacity: 0.72;
}

/* card central: destaque total, por cima, com vidro translúcido */
.swiper-slide-active .card {
    transform: scale(1.04) translateY(0);
    opacity: 1;
    background: rgba(4, 22, 52, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(42, 107, 167, 0.85);
}

/* demais slides fora da vista: invisíveis */
.swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .card {
    opacity: 0;
}

/* =========================
   NAVEGAÇÃO: [ ← ] [ —•—— ] [ → ]
========================= */

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.swiper-button-prev,
.swiper-button-next {
    /* tira do fluxo absoluto do swiper e coloca no flex do carousel-nav */
    position: static;
    margin: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: swiper-icons;
    font-size: 13px;
    font-weight: 800;
}

.swiper-button-prev::after {
    content: "prev";
}

.swiper-button-next::after {
    content: "next";
}

/* Carrossel Destaques: setas brancas (State=Default e State=Default (1)) */
.section-destaques .swiper-button-prev,
.section-destaques .swiper-button-next {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
}

.section-destaques .swiper-button-prev {
    background: url("../imagens/State%3DDefault%20%281%29.svg") center / contain no-repeat;
}

.section-destaques .swiper-button-prev:hover {
    box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.1);
}

.section-destaques .swiper-button-prev::after {
    content: none;
}

.section-destaques .swiper-button-next {
    background: url("../imagens/State%3DDefault.svg") center / contain no-repeat;
    transform: scaleX(-1);
}

.section-destaques .swiper-button-next:hover {
    box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.12);
}

.section-destaques .swiper-button-prev.at-end,
.section-destaques .swiper-button-next.at-end {
    box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.15);
}

.section-destaques .swiper-button-next::after {
    content: none;
}

/* progressbar entre as setas */
.carousel-progress {
    width: 120px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.carousel-progress-bar {
    height: 100%;
    border-radius: 4px;
    background: var(--color-secondary-yellow);
    width: 0%;
    transition: width 0.5s ease;
}

/* =====================================================
   SEÇÃO CAPITULOS
   ===================================================== */

.section-capitulos {
    position: relative;
    z-index: 1;
    padding: 100px 0 140px;
    background: var(--color-white);
    color: var(--color-brand-blue);
    overflow-x: hidden;
}

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

.capitulos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.divisor-capitulos {
    font-family: Sora, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    color: var(--color-brand-blue);
    display: flex;
    align-items: center;
    gap: 16px;
}

.divisor-capitulos::before {
    content: "";
    width: 6px;
    height: 48px;
    background: var(--color-secondary-yellow);
    border-radius: 4px;
}

.capitulos-download-box {
    background: #F4F6F6;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 480px;
}

.capitulos-download-box .download-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capitulos-download-box .download-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.capitulos-download-box p {
    font-family: var(--Fonts-Open-Sans, "Open Sans"), sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-neutral-600);
}

.carousel-wrapper-capitulos {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.carousel-nav-capitulos-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.carousel-capitulos {
    width: 100%;
}

.swiper-capitulos {
    overflow: hidden;
    width: 100%;
    padding: 12px 0 32px;
}

.card-capitulo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: var(--color-brand-blue);
    width: 100%;
    max-width: 240px;
}

.card-capitulo-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transform: translateZ(0);
}

.card-capitulo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.card-capitulo-img .img-seguridade {
    object-position: center center;
}

.card-capitulo-hover {
    position: absolute;
    inset: 0;
    background: rgba(222, 142, 40, 0.85);
    /* secondary-yellow with opacity */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;

}

.card-capitulo-hover img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.card-capitulo-hover span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

.card-capitulo:hover .card-capitulo-img {
    box-shadow: 0 0 0 3px var(--color-white), 0 0 0 6px var(--color-secondary-yellow);
}

.card-capitulo:hover .card-capitulo-img img {
    transform: scale(1.02) translateZ(0);
}

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

.card-capitulo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary-blue);
    text-align: center;
}

.carousel-nav-capitulos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    width: 100%;
    margin-top: 24px;
}

.carousel-progress-capitulos {
    width: 160px;
    height: 4px;
    background: var(--color-neutral-200);
    border-radius: 4px;
    overflow: hidden;
}

.carousel-progress-bar-capitulos {
    height: 100%;
    width: 0%;
    background: var(--color-secondary-yellow);
    transition: width 0.3s ease;
}

.carousel-buttons {
    display: flex;
    gap: 12px;
}

.swiper-button-prev-capitulos,
.swiper-button-next-capitulos {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s ease, filter 0.2s ease;
    /* estado ativo (laranja) */
    box-shadow: inset 0 0 0 100vmax rgba(222, 142, 40, 0.1);
    filter: none;
}

.swiper-button-prev-capitulos {
    background: url("../imagens/Arrow%20Control%20Carousel.svg") center / contain no-repeat;
    transform: scaleX(-1);
}

.swiper-button-prev-capitulos:hover {
    box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.08);
}

.swiper-button-next-capitulos {
    background: url("../imagens/Arrow%20Control%20Carousel.svg") center / contain no-repeat;
}

.swiper-button-next-capitulos:hover {
    box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.1);
}

.swiper-button-prev-capitulos.at-end {
    /* início do carrossel: seta esquerda desabilitada */
    background: url("../imagens/Arrow%20Control%20Carousel%20%281%29.svg") center / contain no-repeat;
    transform: none;
    cursor: not-allowed;
    pointer-events: none;
}

.swiper-button-next-capitulos.at-end {
    /* fim do carrossel: seta direita desabilitada */
    background: url("../imagens/Arrow%20Control%20Carousel%20%281%29.svg") center / contain no-repeat;
    transform: scaleX(-1);
    cursor: not-allowed;
    pointer-events: none;
}

.swiper-button-prev-capitulos::after,
.swiper-button-next-capitulos::after {
    content: none;
}

@media (max-width: 768px) {
    .capitulos-header {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .divisor-capitulos {
        font-size: 32px;
    }

    .capitulos-download-box p {
        font-size: 12px;
    }

    .carousel-nav-capitulos,
    .carousel-nav-capitulos-top {
        justify-content: center;
        flex-direction: row;
    }

    /* Footer mobile */
    .site-footer {
        padding: 48px 0 40px;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 32px;
        padding-inline: 24px;
        text-align: center;
    }

    .site-footer-left {
        order: 3;
        max-width: none;
        text-align: center;
    }

    .site-footer-center {
        order: 1;
    }

    .site-footer-center img {
        max-height: 48px;
        width: auto;
    }

    .site-footer-right {
        order: 2;
        margin-left: 0;
        align-items: center;
    }

    .footer-social-label {
        align-self: center;
    }

    .footer-social-icons {
        justify-content: center;
        gap: 8px;
    }

    .footer-social-icons img {
        display: block;
        width: 56px;
        height: 56px;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-sizing: border-box;
    }
}
