/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* CORES DO PROJETO + FONTES */
:root {
    --preto: #23272a;
    --branco: #ffffff;
    --verde: #aadb1d;
    --laranja: #ff5500;
    --cinza: #d0d0ce;

    --fonte-titulo: 'Changa One', sans-serif;
    --fonte-subtitulo: 'Oswald', sans-serif;
    --fonte-texto: 'Ubuntu', sans-serif;
}

body {
    font-family: var(--fonte-texto);
    background-color: var(--branco);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: auto;
}

/* TIPOGRAFIA BASE */
h1,
h2,
h3 {
    font-family: var(--fonte-titulo);
    font-weight: normal;
    letter-spacing: 1px;
}

h4,
h5,
h6 {
    font-family: var(--fonte-subtitulo);
    font-weight: 700;
}

p {
    font-family: var(--fonte-texto);
    font-weight: 400;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.verde {
    color: var(--verde);
}

.branco {
    color: var(--branco);
}

.laranja {
    color: var(--laranja);
}

/* HEADER FIXO */
.topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--preto);
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* CONTAINER DO MENU DESKTOP */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
}

/* LOGO */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

/* LINKS DESKTOP */
.menu-desktop {
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--cinza);
    font-family: var(--fonte-subtitulo);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    padding-bottom: 6px;
}

.menu-link:hover {
    color: var(--branco);
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--verde);
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

/* MENU MOBILE FIXO */
.menu-mobile-linha {
    display: none;
}

.menu-link-mobile-fixo {
    position: relative;
    text-decoration: none;
    color: var(--cinza);
    font-family: var(--fonte-subtitulo);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.menu-link-mobile-fixo:hover {
    color: var(--branco);
}

.menu-link-mobile-fixo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--verde);
    transition: width 0.3s ease;
}

.menu-link-mobile-fixo:hover::after {
    width: 100%;
}

/* BANNER PRINCIPAL */
.banner-principal {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-color: var(--preto);
    margin-top: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* CAMADAS ANIMADAS */
.banner-bg-layer,
.banner-front-layer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.banner-bg-layer {
    z-index: 1;
    overflow: hidden;
}

.banner-front-layer {
    z-index: 4;
}

/* FUNDO LOOP */
.banner-bg-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: moverFundo 30s linear infinite;
}

.banner-bg-track img {
    height: 100%;
    width: auto;
    min-width: 100vw;
    object-fit: cover;
}

/* FRENTE */
.banner-front-layer img {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    min-width: 1920px;
    right: -35%;
    animation: moverFrente 11s linear infinite;
    opacity: 0;
}

/* CONTEÚDO */
.banner-conteudo {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 30px 40px 30px;
}

/* TEXTO TOPO */
.banner-topo-texto {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 26px;
    min-height: 34px;
}

.texto-maquina {
    font-family: var(--fonte-subtitulo);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    min-height: 28px;
    color: var(--branco);
}

.texto-maquina .verde {
    color: var(--verde);
}

.texto-maquina .branco {
    color: var(--branco);
}

.texto-maquina .typewriter-cursor-bar {
    display: inline-block;
    color: var(--branco);
    margin-left: 2px;
    font-weight: 700;
    animation: piscarCursor 0.8s infinite;
}

/* GRID INFERIOR */
.banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 30px;
}

/* Texto */
.banner-texto-esquerda {
    max-width: 760px;
    animation: entrarEsquerda 1.2s ease forwards;
    opacity: 0;
    transform: translateX(-60px);
    order: 1;
}

.banner-titulo {
    font-family: var(--fonte-titulo);
    font-size: 35px;
    line-height: 1.08;
    max-width: 760px;
}

.banner-titulo-secundario {
    margin-top: 8px;
}

/* Imagem */
.banner-imagem-direita {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: entrarDireita 1.2s ease forwards;
    opacity: 0;
    transform: translateX(60px);
    order: 2;
}

.banner-imagem-direita img {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

/* BOTÃO DO BANNER */
.btn-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    padding: 16px 34px;
    border-radius: 999px;
    background-color: var(--laranja);
    color: var(--branco);
    font-family: var(--fonte-subtitulo);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-banner:hover {
    background-color: var(--verde);
    color: var(--preto);
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.btn-banner:active {
    transform: translateY(0);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.impacto-botao-wrap {
    text-align: center;
}

/* SEÇÃO IMPACTO */
.secao-impacto {
    position: relative;
    width: 100%;
    min-height: 180px;
    background-image: url("secao-impacto-bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    overflow: hidden;
}

.secao-impacto-overlay {
    display: none;
}

.secao-impacto-conteudo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.secao-impacto-titulo {
    font-family: var(--fonte-subtitulo);
    font-size: clamp(20px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

/* BLOCO IMPORTADO */
.container-importado {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.secao-projeto-importada {
    background: var(--laranja);
    padding: 55px 0 100px 0;
}

.projeto-subtitulo-importado {
    font-family: var(--fonte-subtitulo);
    color: var(--branco);
    font-size: 20px;
    text-align: center;
    line-height: 1.4;
    max-width: 950px;
    margin: 0 auto 95px auto;
}

.titulo-impacto-importado {
    font-family: var(--fonte-titulo);
    color: var(--branco);
    font-size: 44px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 55px;
    padding: 20px 0 30px 0;
}

.cards-projeto-importado {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.card-botao-importado {
    position: relative;
    flex: 1 1 30%;
    min-width: 260px;
    height: 420px;
    border-radius: 34px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(19, 27, 40, 0.18);
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.card-botao-importado:hover {
    transform: translateY(-18px);
    box-shadow: 0 20px 40px rgba(19, 27, 40, 0.22);
}

.card-botao-laranja {
    background: #ff6600;
}

.card-botao-verde {
    background: var(--verde);
}

.card-botao-topo {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 68%;
    max-width: 310px;
    z-index: 2;
}

.card-botao-topo img {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.card-botao-base {
    width: 100%;
    min-height: 170px;
    padding: 0 20px 28px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
}

.card-botao-base h3 {
    color: var(--preto);
    font-family: var(--fonte-titulo);
    font-size: 32px;
    line-height: 1.1;
    margin: 0;
}

.card-botao-info,
.card-botao-cta {
    margin-top: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.card-botao-importado:hover .card-botao-info,
.card-botao-importado:hover .card-botao-cta {
    opacity: 1;
    transform: translateY(0);
}

.card-botao-info {
    color: var(--branco);
    font-family: var(--fonte-subtitulo);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-botao-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--preto);
    color: var(--branco);
    font-family: var(--fonte-subtitulo);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
}
.galeria-descricao{
    max-width: 950px;
    margin: 0 auto;
    text-align: left;
}

.galeria-resumo{
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
}

.galeria-topico{
    border-left: 4px solid var(--laranja);
    padding-left: 20px;
    margin-bottom: 30px;
}

.galeria-topico h3{
    color: var(--laranja);
    font-family: var(--fonte-subtitulo);
    font-size: 24px;
    margin-bottom: 10px;
}

.galeria-topico p{
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

@media screen and (max-width: 768px){

    .galeria-resumo{
        font-size: 16px;
        margin-bottom: 30px;
    }

    .galeria-topico h3{
        font-size: 20px;
    }

    .galeria-topico p{
        font-size: 15px;
    }

}
/* SEÇÃO CLIENTE */
.secao-cliente-importada {
    background-image: url("fundo-cliente.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 110px 0;
}

.cliente-grid-importado {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cliente-texto-importado h2 {
    font-family: var(--fonte-titulo);
    color: var(--verde);
    font-size: 56px;
    margin-bottom: 18px;
}

.cliente-texto-importado h3 {
    font-family: var(--fonte-subtitulo);
    color: var(--laranja);
    font-size: 34px;
    margin-bottom: 30px;
}

.cliente-texto-scroll {
    max-width: 560px;
    max-height: 600px;
    padding: 24px 22px 22px 22px;
    border: 3px solid var(--laranja);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--laranja) transparent;
}

.cliente-texto-scroll::-webkit-scrollbar {
    width: 6px;
}

.cliente-texto-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.cliente-texto-scroll::-webkit-scrollbar-thumb {
    background: var(--laranja);
    border-radius: 10px;
}

/* TOPO COM ITENS */
.cliente-lista-impacto {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 38px;
}

.cliente-lista-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--fonte-subtitulo);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--branco);
}

.cliente-lista-icone {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--laranja);
    border-radius: 50%;
    color: var(--laranja);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

/* TEXTO INTERNO */
.cliente-texto-conteudo p {
    color: var(--branco);
    font-size: 22px;
    line-height: 1.45;
    margin-bottom: 26px;
}

.cliente-texto-conteudo p:last-child {
    margin-bottom: 0;
}

/* TAGS / SELOS */
.cliente-tags-importadas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 34px;
}

.cliente-tag-importada {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    padding: 10px 20px;
    border: 2px solid var(--laranja);
    border-radius: 16px;
    color: var(--verde);
    font-family: var(--fonte-subtitulo);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: center;
    background: transparent;
}

.frase-destaque-importada {
    color: var(--verde) !important;
    font-weight: bold;
}

.cliente-foto-importado {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cliente-slider-importado {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 520px;
}

.cliente-slide-importado {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease;
    border-radius: 24px;
}

.cliente-slide-importado.active {
    opacity: 1;
}

/* PLACEHOLDER */
.placeholder-secao-importada {
    padding: 100px 0;
    background: #ebeff2;
    text-align: center;
}

.placeholder-secao-importada h2 {
    font-family: var(--fonte-titulo);
    font-size: 42px;
    color: var(--preto);
    margin-bottom: 10px;
}

.placeholder-secao-importada p {
    font-size: 20px;
    color: var(--preto);
}

/* ANIMAÇÕES */
@keyframes moverFundo {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes moverFrente {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateX(-45%);
        opacity: 0;
    }
}

@keyframes entrarEsquerda {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes entrarDireita {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes piscarCursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* REVEAL AO SCROLL */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.9s ease;
}

.reveal {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.card-delay-1 {
    transition-delay: 0.1s;
}

.card-delay-2 {
    transition-delay: 0.3s;
}

.card-delay-3 {
    transition-delay: 0.5s;
}

.card-delay-4 {
    transition-delay: 0.7s;
}

.card-delay-5 {
    transition-delay: 0.9s;
}

/* RESPONSIVO */
@media screen and (max-width: 992px) {
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .banner-texto-esquerda {
        max-width: 100%;
    }

    .banner-titulo {
        font-size: 38px;
        max-width: 100%;
    }

    .texto-maquina {
        font-size: 18px;
    }

    .banner-imagem-direita img {
        max-width: 320px;
        max-height: 320px;
    }

    .projeto-subtitulo-importado {
        font-size: 28px;
    }

    .titulo-impacto-importado {
        font-size: 36px;
    }

    .cliente-grid-importado {
        grid-template-columns: 1fr;
    }

    .cliente-texto-importado h2 {
        font-size: 42px;
    }

    .cliente-texto-importado h3 {
        font-size: 28px;
    }

    .cliente-texto-scroll {
        max-width: 100%;
        max-height: 320px;
    }

    .cliente-texto-scroll p {
        font-size: 19px;
    }

    .cliente-slider-importado {
        max-width: 520px;
        min-height: 430px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .topo {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .menu-container {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .menu-desktop {
        display: none;
    }

    .logo img {
        max-height: 42px;
    }

    .menu-mobile-linha {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 12px 20px 6px 20px;
    }

    .menu-link-mobile-fixo {
        font-size: 13px;
    }

    .banner-principal {
        min-height: auto;
        margin-top: 118px;
        padding: 22px 0 30px 0;
        align-items: flex-start;
    }

    .banner-bg-layer,
    .banner-front-layer {
        display: none;
    }

    .banner-conteudo {
        padding: 20px 20px 28px 20px;
    }

    .banner-topo-texto {
        margin-bottom: 18px;
        min-height: 44px;
    }

    .texto-maquina {
        font-size: 16px;
        min-height: 40px;
    }

    .banner-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .banner-texto-esquerda {
        order: 1;
        text-align: center;
        max-width: 100%;
    }

    .banner-imagem-direita {
        order: 2;
    }

    .banner-imagem-direita img {
        max-width: 250px;
        max-height: 250px;
    }

    .banner-titulo {
        font-size: 31px;
        line-height: 1.1;
        text-align: center;
        max-width: 100%;
    }

    .btn-banner {
        margin-top: 20px;
        padding: 14px 28px;
        font-size: 14px;
    }

    .secao-impacto {
        min-height: 220px;
        padding: 35px 20px;
        background-position: center center;
    }

    .secao-impacto-titulo {
        font-size: 28px;
        line-height: 1.15;
    }

    .cards-projeto-importado {
        flex-direction: column;
        gap: 34px;
    }

    .projeto-subtitulo-importado,
    .titulo-impacto-importado {
        font-size: 26px;
    }

    .card-botao-importado {
        min-width: 100%;
        height: auto;
        min-height: unset;
        padding: 22px 18px 24px 18px;
        border-radius: 28px;
        overflow: hidden;
    }

    .card-botao-topo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 18px auto;
    }

    .card-botao-topo img {
        width: 100%;
        border-radius: 22px;
    }

    .card-botao-base {
        min-height: auto;
        padding: 0;
    }

    .card-botao-base h3 {
        font-size: 24px;
        line-height: 1.05;
    }

    .card-botao-info,
    .card-botao-cta {
        display: none !important;
    }

    .secao-cliente-importada {
        background-attachment: scroll;
    }

    .cliente-grid-importado {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .cliente-texto-importado {
        order: 1;
        text-align: left;
    }

    .cliente-foto-importado {
        order: 2;
    }

    .cliente-texto-importado h2 {
        font-size: 36px;
    }

    .cliente-texto-importado h3 {
        font-size: 24px;
    }

    .cliente-texto-scroll {
        max-width: 100%;
        max-height: none;
        padding: 22px 20px 20px 20px;
        border-width: 3px;
        border-radius: 20px;
        overflow: visible;
    }

    .cliente-lista-item {
        font-size: 22px;
        gap: 12px;
    }

    .cliente-lista-icone {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 20px;
    }

    .cliente-texto-conteudo p {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .cliente-tags-importadas {
        gap: 10px;
        margin-top: 24px;
    }

    .cliente-tag-importada {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .cliente-slider-importado {
        max-width: 100%;
        min-height: 320px;
    }

    .secao-cliente-importada,
    .secao-projeto-importada,
    .placeholder-secao-importada {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 480px) {
    .banner-conteudo {
        padding: 18px 16px 24px 16px;
    }

    .texto-maquina {
        font-size: 15px;
    }

    .banner-imagem-direita img {
        max-width: 220px;
        max-height: 220px;
    }

    .banner-titulo {
        font-size: 26px;
    }

    .menu-mobile-linha {
        gap: 18px;
    }

    .menu-link-mobile-fixo {
        font-size: 12px;
    }

    .secao-impacto {
        min-height: 200px;
        padding: 30px 16px;
    }

    .secao-impacto-titulo {
        font-size: 22px;
    }

    .titulo-impacto-importado {
        font-size: 23px;
        margin-bottom: 38px;
        padding: 0;
    }

    .projeto-subtitulo-importado {
        font-size: 18px;
        margin: 0 auto;
    }

    .card-botao-importado {
        padding: 18px 16px 22px 16px;
        border-radius: 24px;
    }

    .card-botao-topo {
        width: 100%;
        margin-bottom: 16px;
    }

    .card-botao-topo img {
        border-radius: 18px;
    }

    .card-botao-base h3 {
        font-size: 22px;
    }

    .cliente-texto-importado h2 {
        font-size: 30px;
    }

    .cliente-texto-importado h3 {
        font-size: 21px;
    }

    .cliente-texto-scroll {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .cliente-lista-item {
        font-size: 19px;
    }

    .cliente-texto-conteudo p {
        font-size: 17px;
    }

    .cliente-slider-importado {
        min-height: 260px;
    }
}

/* GALERIA PRIMEIRA IMERSÃO */
.secao-galeria-imersao {
    background: #000000;
    padding: 90px 0 100px 0;
    overflow: hidden;
}

.container-galeria-imersao {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.galeria-imersao-titulo {
    font-family: var(--fonte-titulo);
    color: var(--laranja);
    font-size: clamp(30px, 4.5vw, 58px);
    line-height: 1.05;
    text-align: center;
    margin-bottom: 55px;
}

.galeria-carrossel {
    position: relative;
    width: 100%;
    max-width: 1180px;
    height: 520px;
    margin: 0 auto 48px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-carrossel-area {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    user-select: none;
}

.galeria-foto {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58%;
    height: 440px;
    object-fit: cover;
    border-radius: 34px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.65);
    filter: blur(3px) brightness(0.7);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.55s ease, opacity 0.55s ease, filter 0.55s ease, z-index 0.55s ease;
    cursor: pointer;
    pointer-events: none;
}

.galeria-foto.pos-centro {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0) brightness(1);
    z-index: 3;
    pointer-events: auto;
}

.galeria-foto.pos-esquerda {
    opacity: 0.62;
    transform: translate(-95%, -50%) scale(0.78);
    filter: blur(3px) brightness(0.65);
    z-index: 2;
    pointer-events: auto;
}

.galeria-foto.pos-direita {
    opacity: 0.62;
    transform: translate(-5%, -50%) scale(0.78);
    filter: blur(3px) brightness(0.65);
    z-index: 2;
    pointer-events: auto;
}

.galeria-seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 2px solid var(--laranja);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: var(--branco);
    font-size: 42px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.galeria-seta:hover {
    background: var(--laranja);
    color: var(--branco);
    transform: translateY(-50%) scale(1.08);
}

.galeria-seta-esquerda {
    left: 5px;
}

.galeria-seta-direita {
    right: 5px;
}

.btn-galeria-imersao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    min-height: 56px;
    padding: 15px 34px;
    border-radius: 999px;
    background: var(--laranja);
    color: var(--branco);
    font-family: var(--fonte-subtitulo);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(255, 85, 0, 0.28);
    transition: all 0.3s ease;
}

.btn-galeria-imersao:hover {
    background: var(--verde);
    color: var(--preto);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(170, 219, 29, 0.25);
}
/* BANNER INSTAGRAM */
.banner-instagram {
    width: 100%;
    overflow: hidden;
}

.banner-instagram a {
    display: block;
}

.banner-instagram img {
    width: 100%;
    height: auto;
    display: block;
}
/* SEÇÃO CONTAGEM REGRESSIVA */
.secao-contagem-feira {
    background: var(--laranja);
    padding: 90px 0;
}

.container-contagem-feira {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.contagem-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contagem-imagem img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}

.contagem-conteudo {
    text-align: center;
}

.contagem-conteudo h2 {
    font-family: var(--fonte-subtitulo);
    color: #ffffff;
    font-size: 50px;
    margin-bottom: 10px;
}

#dias-feira {
    display: block;
    font-family: var(--fonte-titulo);
    font-size: 180px;
    line-height: 1;
    color: #ffffff;
}

.contador-dias p {
    font-family: var(--fonte-subtitulo);
    font-size: 50px;
    color: #ffffff;
    margin: 0;
}

.contagem-conteudo h3 {
    font-family: var(--fonte-subtitulo);
    color: #ffffff;
    font-size: 32px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {

    .container-contagem-feira {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #dias-feira {
        font-size: 110px;
    }

    .contagem-conteudo h2 {
        font-size: 36px;
    }

    .contador-dias p {
        font-size: 36px;
    }

    .contagem-conteudo h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .secao-galeria-imersao {
        padding: 75px 0 85px 0;
    }

    .galeria-imersao-titulo {
        margin-bottom: 35px;
    }

    .galeria-carrossel {
        height: 430px;
        margin-bottom: 36px;
    }

    .galeria-foto {
        width: 72%;
        height: 340px;
        border-radius: 24px;
    }

    .galeria-foto.pos-esquerda {
        transform: translate(-88%, -50%) scale(0.72);
    }

    .galeria-foto.pos-direita {
        transform: translate(-12%, -50%) scale(0.72);
    }

    .galeria-seta {
        width: 42px;
        height: 42px;
        font-size: 34px;
    }
}

@media screen and (max-width: 480px) {
    .galeria-carrossel {
        height: 360px;
    }

    .galeria-foto {
        width: 78%;
        height: 285px;
        border-radius: 20px;
    }

    .galeria-foto.pos-esquerda {
        transform: translate(-82%, -50%) scale(0.68);
    }

    .galeria-foto.pos-direita {
        transform: translate(-18%, -50%) scale(0.68);
    }

    .galeria-seta {
        display: none;
    }

    .btn-galeria-imersao {
        min-width: 210px;
        min-height: 52px;
        font-size: 15px;
    }
	
	
}
