/* Header and Hero */
#container-hero {
    position: relative;
    background: var(--terra);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 0 0 100px 0;
    overflow: hidden;
}

#container-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: url(../../images/textura-bg-hero.svg) no-repeat;
    z-index: 0 !important;
    background-size: cover;
}

.entrega--slide .hero {
    position: relative;
    z-index: 1;
}

.hero {
    max-width: 1300px;
    margin: 0 auto;
    gap: 50px;
    z-index: 1;
}

@media (max-width: 1440px) {
    .hero {
        width: 90%;
    }
}

.hero--content {
    width: 45%;
}

.hero--content p {
    font-size: var(--font-16);
    margin-top: 25px;
    max-width: 90%;
}

.hero--content p strong {
    color: var(--amarelo);
}

.destaque-hero {
    display: inline-block;
    position: relative;
    font-size: var(--font-56);
    font-family: var(--font-display);
    z-index: 0;
    padding: 0 5px 8px 9px;
    margin-top: 20px;
    margin-left: 25px;
}

.shape-texto-hero::after {
    margin-left: 0px !important;
}


.hero--content__buttons {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.btn-white {
    background-color: #fff;
    color: var(--terra);
    width: fit-content;
    white-space: nowrap;
}

.btn-transparent {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    width: fit-content;
    white-space: nowrap;
}

.hero--video {
    width: 55%;
    display: flex;
    align-items: flex-start;
    align-self: flex-start;
    border: 10px solid transparent;
    border-radius: 60px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        var(--gradiente-1) border-box;
    z-index: 2;
    overflow: hidden;
}

.hero--video img {
    display: block;
    border-radius: 48px;
    width: 100%;
}

/* Vídeo na hero */
.hero--video__wrapper {
    position: relative;
    display: block;
    width: 100%;
    flex: 1 1 100%;
    cursor: pointer;
    overflow: hidden;
}

.hero--video__thumb {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.hero--video__wrapper:hover .hero--video__thumb {
    filter: brightness(0.75);
}

.hero--video__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero--video__play svg {
    width: 80px;
    height: 80px;
}

.hero--video__wrapper:hover .hero--video__play {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.hero--video__player {
    display: block;
    border-radius: 48px;
    width: 100%;
    height: auto;
}

/* Quando o wrapper é substituído pelo player após o clique */
.hero--video__wrapper--playing {
    pointer-events: none;
}

.hero--video__wrapper--playing .hero--video__thumb,
.hero--video__wrapper--playing .hero--video__play {
    display: none;
}


/* REFERÊNCIAS */

#referencias {
    background: url(../../images/bg-amarel-laranja-hero.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    margin-top: -30%;
    padding-top: 480px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.referencias__titulo {
    width: 90%;
}

.referencias__titulo h2 {
    color: var(--terra);
    max-width: 45%;
    font-size: 32px;
    line-height: 38px;
}

.referencias__conteudo {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.referencias__conteudo__track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: referencias-conteudo-scroll 120s linear infinite reverse;
    will-change: transform;
}

.referencias__conteudo__track img {
    flex-shrink: 0;
}

@keyframes referencias-conteudo-scroll {
    from {
        transform: translateX(0);
    }

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

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

.referencias__infos {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.referencias__infos__track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: referencias-infos-scroll 40s linear infinite;
    will-change: transform;
}

.referencias__infos--single {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.referencias__infos--single img {
    max-width: 25px;
    height: 30px;
}

.referencias__infos--single p {
    font-size: var(--font-24);
    font-family: var(--font-body);
    color: var(--terra);
    font-weight: 600;
    white-space: nowrap;
}

@keyframes referencias-infos-scroll {
    from {
        transform: translateX(0);
    }

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

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

/* Entrega */

#entrega {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    padding: 90px 0;
}

.entrega--header {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.entrega--header__titulo {
    color: var(--laranja);
    font-size: 56px;
    font-family: var(--font-display);
    margin-top: 5px;
}

.entrega--header__descricao,
.entrega--footer__descricao {
    font-size: var(--font-24);
    font-family: var(--font-body);
    color: var(--terra);
    font-weight: 400;
    line-height: 32px;
    width: 50%;
}

.entrega--footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.entrega--footer__destaque {
    font-size: var(--font-24);
    font-family: var(--font-body);
    color: #fff;
    font-weight: 400;
}

.shape-texto-entrega::after {
    inset: -0.9em !important;
    background-size: 100% !important;
    margin-left: 0 !important;
}

@media (max-width: 768px) {
    .shape-texto-entrega::after {
        inset: -0.5em !important;
        background-size: 100% !important;
    }
}

.entrega--footer__descricao {
    width: 45%;
}

.destaque-texto-linha {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.destaque-texto-linha::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/linha-texto-destaque.svg) no-repeat center / 100% 100%;
    z-index: -1;
}

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

#entrega {
    overflow: visible;
}

/* Wrapper que faz o clip horizontal sem clipar a seção toda */
.entrega--swiper-outer {
    width: 100%;
    overflow: hidden;
}

/* O swiper ocupa toda a largura da viewport */
.entrega--swiper {
    width: 100%;
    overflow: visible !important;
    height: 360px;
    padding-left: max(16px, calc((100vw - 1200px) / 2));
}

/* Forçar alinhamento dos slides pelo topo */
.swiper-entrega .swiper-wrapper {
    align-items: flex-start;
}

/* ---- Slides: cada um tem grid interno ---- */
.entrega--slide {
    display: grid;
    width: auto !important;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Slide 1: 2 cards empilhados */
.entrega--slide--1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

/* Slide 2: foto da pessoa (alta, full height) */
.entrega--slide--2 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

/* Slide 3: grade 2×2 de cards */
.entrega--slide--3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

/* Slide 4: card único */
.entrega--slide--4 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.entrega--slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.entrega--slide img:hover {
    transform: scale(1.02);
}

/* ---- Botões de navegação ---- */
.entrega-swiper-prev,
.entrega-swiper-next {
    color: var(--laranja) !important;
    background: #fff;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    top: 50% !important;
    transform: translateY(-50%);
    transition: box-shadow 0.2s;
}

.entrega-swiper-prev:hover,
.entrega-swiper-next:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.entrega-swiper-prev::after,
.entrega-swiper-next::after {
    font-size: 14px !important;
    font-weight: 900;
}

.entrega-swiper-prev {
    left: max(16px, calc((100vw - 1200px) / 2 - 22px)) !important;
}

.entrega-swiper-next {
    right: max(16px, calc((100vw - 1200px) / 2 - 22px)) !important;
}

/* PROMOÇÕES */

#promocoes {
    background: var(--salmon-100);
    padding: 70px 0 100px 0;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.promocoes--titulo h2 {
    text-align: center;
    color: var(--laranja);
}

.promocoes--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 100px 24px;
    padding: 0 50px;
}

.promocoes--grid__single {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    border: 2px solid var(--terra);
    border-radius: 24px;
    padding: 0 55px 40px 55px;
}

.promocoes--grid__single h3 {
    color: var(--terra);
    font-family: var(--font-body);
    font-size: var(--font-20);
    font-weight: 600;
    text-align: center;
}

.promocoes--grid__single svg {
    max-width: 130px;
    width: 100%;
    height: 130px;
    margin-top: -70px;
}

.sound-wave {
    transition: opacity 0.2s;
}

/* shake no corpo */
.mega-body {
    transform-origin: 50px 80px;
}

.megafone:hover .mega-body {
    animation: megaShake 0.45s ease-in-out infinite alternate;
}

@keyframes megaShake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-1.5deg);
    }

    75% {
        transform: rotate(1.5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* pulso nas ondas */
.megafone:hover .sw1 {
    animation: soundPulse 0.9s ease-in-out infinite;
    animation-delay: 0s;
}

.megafone:hover .sw2 {
    animation: soundPulse 0.9s ease-in-out infinite;
    animation-delay: 0.18s;
}

.megafone:hover .sw3 {
    animation: soundPulse 0.9s ease-in-out infinite;
    animation-delay: 0.36s;
}

@keyframes soundPulse {
    0% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* INGRESSOS */

.ingresso svg {
    transition: filter 0.35s ease;
}

.ingresso:hover svg {
    animation: ingressoFloat 1.8s ease-in-out infinite alternate;
    filter: drop-shadow(0 8px 14px rgba(255, 122, 38, 0.20));
}

@keyframes ingressoFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-8px) rotate(-6deg);
    }
}


/* VALE BRINDE */

.traco {
    transition: opacity 0.2s;
}

.vale-brinde:hover .t1 {
    animation: tracoPulse 0.2s ease-in-out infinite;
    animation-delay: 0s;
}

.vale-brinde:hover .t2 {
    animation: tracoPulse 0.2s ease-in-out infinite;
    animation-delay: 0.25s;
}

.vale-brinde:hover .t3 {
    animation: tracoPulse 0.2s ease-in-out infinite;
    animation-delay: 0.1s;
}

@keyframes tracoPulse {
    0% {
        opacity: 0.15;
    }

    40% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0.15;
    }
}


/* CASHBACK */

.cashback svg {
    transition: filter 0.35s ease;
}

.cashback:hover svg {
    filter: drop-shadow(0 8px 14px rgba(255, 122, 38, 0.35));
}

.moeda {
    transform-origin: 65px 42px;
}

.cashback:hover .moeda {
    animation: moedaGira 1.4s ease-in-out infinite;
}

@keyframes moedaGira {
    0% {
        transform: scaleX(1);
    }

    25% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(1);
    }

    75% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}


/* SOCIAL */

/* like acena */
.like3 {
    transform-origin: 93px 44px;
}

.social:hover .like3 {
    animation: likeAcena 0.8s ease-in-out infinite alternate;
}

@keyframes likeAcena {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-15deg) translateY(-4px);
    }
}

/* hashtag pisca em onda */
.social:hover .hashtag3 {
    animation: hashPisca 1.2s ease-in-out infinite;
}

@keyframes hashPisca {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.2;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* coração bate */
.heart3 {
    transform-origin: 68px 112px;
}

.social:hover .heart3 {
    animation: heartBeat 0.7s ease-in-out infinite;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}


/* INCENTIVO */

.incentivo svg {
    transition: filter 0.35s ease;
}

.incentivo:hover svg {
    animation: incentivoFloat 1.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 8px 14px rgba(255, 122, 38, 0.20));
}

@keyframes incentivoFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-8px) rotate(3deg);
    }
}

/* EVENTOS */

.eventos svg {
    transition: filter 0.35s ease;
}

.eventos:hover svg {
    animation: eventosShake 0.6s ease-in-out infinite alternate;
    filter: drop-shadow(0 8px 14px rgba(255, 122, 38, 0.20));
}

@keyframes eventosShake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* CONCURSO */

.concurso svg {
    transition: filter 0.35s ease;
}

.concurso:hover svg {
    animation: concursoPulse 1.2s ease-in-out infinite alternate;
    filter: drop-shadow(0 8px 14px rgba(255, 122, 38, 0.20));
}

@keyframes concursoPulse {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.03) translateY(-4px);
    }
}


/* OPCOES */

.opcoes {
    background-color: var(--salmon-100);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.configuracao {
    background: url(../../images/bg-config.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 95%;
    min-height: clamp(400px, 47.9vw, 870px);
    position: relative;
    z-index: 0;
    display: flex;
}

@media (min-width: 1024px) and (max-width: 1600px) {
    /* .configuracao--content__all {
        height: 100% !important;
        gap: 20px !important;
    } */

    .configuracao {
        width: 100%;
    }

    .demonstracao {
        padding-top: 35% !important;
    }
}


.configuracao--content__all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
    width: 100%;
}

.carrossel {
    position: relative;
}

.carrossel--content__icons {
    display: flex;
    gap: 40px;
}

.carrossel--content__icons img {
    height: 80px;
}

.configuracao--content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 42%;
}

.destaque-configuracao {
    color: #fff;
    position: relative;
    max-width: fit-content;
    padding-left: 40px;
}

.shape-texto::after {
    inset: -2.9em;
    background-size: 65%;
    margin-left: 49px;
}

.configuracao--swiper {
    z-index: 2;
}

.configuracao--content h3 {
    color: var(--amarelo);
    line-height: 42px;
    font-size: 32px;
}

.configuracao--content h4 {
    font-family: var(--font-body);
    font-size: var(--font-20);
    font-weight: 400;
    color: #fff;
}

.configuracao--content p {
    font-family: var(--font-body);
    font-size: var(--font-16);
    font-weight: 700;
    color: var(--amarelo);
}

.carrossel {
    display: inline-block;
    border: 15px solid transparent;
    border-radius: 60px;
    background: linear-gradient(#fff, #fff) padding-box, var(--gradiente-1) border-box;
    min-height: 400px;
    max-width: 500px;
    display: flex;
    z-index: -1;
}

.swiper-configuracao {
    width: 100%;
    overflow: hidden;
    border-radius: 48px;
}

.carrossel--content {
    display: block;
    border-radius: 48px;
}

.carrossel--content__single {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 50px;
    position: relative;
}

.carrossel--content__single h2 {
    color: var(--laranja);
    line-height: 45px;
    text-align: left;
    font-weight: bold;
}

.carrossel--content__single h3 {
    color: var(--terra);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--font-24);
}

.carrossel--paginacao {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-family: var(--font-body);
    font-size: var(--font-16);
    color: #fff;
    font-weight: 700;
}

.carrossel--paginacao span {
    position: relative;
    cursor: pointer;
    width: 25px;
    /* Ensures a decent click area */
    text-align: center;
}

.carrossel--paginacao span.ativo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-image: url('../../images/shape-paginacao.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}

.carrossel--content__numeracao {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.carrossel--numeracao {
    font-size: var(--font-40);
    color: #fff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    z-index: 2;
    width: 65px;
    display: flex;
    justify-content: center;
}

.carrossel--numeracao::after {
    content: "";
    position: absolute;
    top: -3px;
    background: var(--laranja);
    border-radius: 50%;
    z-index: -1;
    width: 65px;
    height: 65px;
}

.carrossel--favi-fixo {
    position: absolute;
    top: 15%;
    right: -26%;
    width: 180px;
}

/* DEMONSTRAÇÃO */

.demonstracao {
    background: url(../../images/bg-demonstracao.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 33%;
    padding-bottom: 5%;
    margin-top: -30%;
}

.demonstracao--titulo {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
    margin-left: 25%;
}

.demonstracao--titulo h2 {
    color: var(--amarelo);
}

.demonstracao--titulo h3 {
    font-size: var(--font-24);
    font-family: var(--font-body);
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
    position: relative;
}

.demonstracao--titulo h3::after {
    content: "";
    position: absolute;
    inset: 0.5em;
    bottom: -30px;
    background: url(../../images/shape-texto-demonstracao.svg) no-repeat center / contain;
}

.demonstracao--mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.demonstracao--mockups img {
    border: 10px solid transparent;
    border-radius: 55px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        var(--gradiente-2) border-box;
    height: auto;
}

.demonstracao--mockups img:first-child {
    width: clamp(180px, 16vw, 280px);
}

.demonstracao--mockups img:last-child {
    width: clamp(400px, 48vw, 780px);
}

/* Público */

#publico {
    background: url(../../images/bg-publico.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.publico--content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.publico--titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.publico--titulo h2 {
    padding-left: 3%;
    color: #fff;
}

.publico--titulo h2::after {
    background: url(../../images/bg-pra-quem-e.svg) no-repeat center / 70% !important;
}

/* .publico--titulo h2::after {
    content: "";
    position: absolute;
    inset: 0.5em;
    bottom: -30px;
    background: url(../../images/bg-pra-quem-e.svg) no-repeat center / contain;
} */

.publico--titulo h3 {
    font-size: var(--font-24);
    font-family: var(--font-body);
    color: var(--terra);
    font-weight: 500;
    width: 50%;
}

.publico--cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    gap: 24px;
}

.publico--cards__single {
    background-color: var(--amarelo-100);
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.publico--cards__single__titulo h3 {
    font-size: var(--font-16);
    font-family: var(--font-body);
    color: var(--terra);
    font-weight: 700;
}

.publico--cards__single__titulo p {
    font-size: var(--font-16);
    font-family: var(--font-body);
    color: var(--terra);
    font-weight: 400;
}

.publico--cards__single img {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.publico--cards__single:hover img {
    animation: publicoImgAnimate 1.5s ease-in-out infinite alternate !important;
}

@keyframes publicoImgAnimate {
    0% {
        transform: scale(1) translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }

    50% {
        transform: scale(1.08) translateY(-5px) rotate(4deg);
    }

    100% {
        transform: scale(1.12) translateY(-8px) rotate(-2deg);
        filter: drop-shadow(0 12px 18px rgba(255, 122, 38, 0.25));
    }
}


/* Cases */

#cases {
    background-color: var(--terra);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px 100px !important;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 0;
}

#cases::after {
    content: "";
    position: absolute;
    top: -22%;
    right: 0;
    height: 100%;
    width: 90%;
    background: url(../../images/shape-cases.svg) no-repeat;
    background-size: 54%;
    background-position: right;
    z-index: -1;
}

.cases--titulo h2 {
    color: var(--amarelo);
    margin-left: 50px;
}

.cases--grid {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 1300px) {
    .cases--grid {
        grid-template-columns: 1fr !important;
        padding: 0 50px;
    }

    .cases--cta a {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .contatos--form {
        gap: 60px !important;
    }
}

.cases--grid__single {
    display: inline-block;
    border: 10px solid transparent;
    border-radius: 60px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        var(--gradiente-1) border-box;
}

.cases--grid__single img {
    border-radius: 48px;
}

.cases--cta {
    display: flex;
    margin-top: 30px;
    justify-content: center;
}

.cases--cta a {
    border: 1px solid #fff;
    color: #fff;
}

/* Contatos */

.contatos {
    background: url(../../images/bg-contact.svg);
    padding: 100px 0;
    aspect-ratio: 1920/1400;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contatos--form {
    background: url(../../images/shape-contatos.png) no-repeat;
    aspect-ratio: 1100/528;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
    margin-top: -10%;
    background-position: 115px 200px;
}

.contatos--form__cf7 {
    background-color: white;
    padding: 100px 80px;
    border-radius: 24px;
    border: 10px solid var(--laranja);
    position: relative;
    width: 660px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.contatos--form__cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 30%;
    padding-left: 10%;
    margin-top: 6%;
}

.contatos--form__cta h2 {
    color: #fff;
}

@media (max-width: 1400px) and (min-width: 1024px) {
    .contatos--form__cta h2 {
        white-space: nowrap;
    }

    .contatos--form {
        background-position: 0px 143px;
    }

    .contatos--form__cta {
        padding-left: 5%;
    }
}

@media (min-width: 1700px) {
	.contatos--form {
		background-position: 275px 235px;
	}
}

@media (max-width: 1440px) {
	.contatos--form__cta h2 {
        white-space: nowrap;
    }
}

.contatos--form__cta h2::after {
    right: 13px;
}

.contatos--form__cta h3 {
    color: var(--amarelo);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
}

.contatos--form__cta p {
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--font-20);
}

.shape-texto-contato::after {
    inset: -3.9em !important;
    background-size: 50% !important;
    margin-left: -50px !important;
}

@media (max-width: 1200px) {
 
    .shape-texto-contato::after {
    margin-left: 0px !important;   
    }

}

@media (max-width: 768px) {
    .shape-texto-contato::after {
        margin-left: 0 !important;
    }
}

.contatos--form__cf7 h2 {
    color: var(--laranja);
}

/* FORM */

.contatos--form__cf7 form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

form label {
    margin-top: 20px;
    color: var(--terra);
}

form input {
    background-color: var(--salmon-100);
    padding: 20px;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

form input::placeholder {
    font-family: var(--font-body);
    color: #333;
    font-weight: 300;
}

form input[type="submit"] {
    background-color: var(--laranja);
    color: #fff;
    width: fit-content;
    margin-left: auto;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--font-16);
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
}

.contatos--passos {
    display: flex;
    justify-content: center;
    gap: 100px;
    position: absolute;
    top: -5%;
    left: 20%;
}

.contatos--passos__item {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contatos--passos__item.ativo {
    opacity: 1;
    transform: scale(1.15);
}

.contatos--passos img {
    max-width: 70px;
}

/* Multi-step form */

.form-step {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    animation: fadeStepIn 0.3s ease;
}

.form-step.ativo {
    display: flex;
}

@keyframes fadeStepIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    color: var(--laranja);
    margin-bottom: 4px;
}

.form-step label span {
    font-weight: 300;
    color: #777;
    font-size: 13px;
}

.form-step select,
.form-step textarea {
    background-color: var(--salmon-100);
    padding: 20px;
    border: none;
    width: 100%;
    font-family: var(--font-body);
    color: #333;
    font-size: var(--font-16);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-step textarea {
    resize: vertical;
    background-image: none;
}

.form-step select:focus,
.form-step textarea:focus,
.form-step input:focus {
    outline: 2px solid var(--laranja);
    outline-offset: 1px;
}

.form-step__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 16px;
}

.btn-proximo,
.btn-enviar {
    background-color: var(--laranja);
    color: #fff;
    border: none;
    width: fit-content;
    margin-left: auto;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--font-16);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-proximo:hover,
.btn-enviar:hover {
    opacity: 0.85;
}

.btn-anterior {
    background: none;
    border: 1px solid var(--laranja);
    color: var(--laranja);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--font-16);
    border-radius: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-anterior:hover {
    background: var(--laranja);
    color: #fff;
}

.btn-enviar[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Sucesso */

.form-step--sucesso {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 420px;
}

.form-sucesso {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--laranja);
}

.form-sucesso svg {
    width: 64px;
    height: 64px;
    color: var(--laranja);
}

.form-sucesso h2 {
    color: var(--laranja);
    margin: 0;
}

.form-sucesso p {
    color: #555;
    font-family: var(--font-body);
    font-size: var(--font-16);
    margin: 0;
}

.campo-erro {
    outline: 2px solid #e53e3e !important;
    outline-offset: 1px;
}

/* FAQ */

.contatos--faq {
    display: flex;
    width: 85%;
    max-width: 1100px;
    margin-top: 60px;
    gap: 80px;
    align-items: flex-start;
    margin-left: 7%;
}

.contatos--faq__titulo {
    width: 30%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contatos--faq__titulo h2 {
    color: var(--amarelo);
}

.contatos--faq__titulo p {
    color: #fff;
    font-size: var(--font-20);
    line-height: 1.5;
    font-weight: 400;
}

.contatos--faq__titulo p strong {
    color: var(--amarelo);
}

.contatos--faq__titulo a {
    color: #fff;
    text-decoration: none;
}

.contatos--faq__duvidas {
    flex: 1;
}

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding: 20px 0;
}

.faq-item:first-child {
    border-top: none;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-item__pergunta {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--font-20);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 0;
    line-height: 1.4;
}

.faq-item__icone {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
}

.faq-item__icone img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    width: 18px;
}

.faq-item__icone .icone-fechar {
    opacity: 0;
}

.icone-fechar {
    width: 25px !important;
}

.faq-item.ativo .faq-item__icone .icone-mais {
    opacity: 0;
}

.faq-item.ativo .faq-item__icone .icone-fechar {
    opacity: 1;
}

.faq-item__resposta {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__resposta>p {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-16);
    line-height: 1.6;
    padding-top: 0;
    transition: padding-top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.ativo .faq-item__resposta {
    grid-template-rows: 1fr;
}

.faq-item.ativo .faq-item__resposta>p {
    padding-top: 12px;
}


/* =============================================================
   RESPONSIVIDADE — Mobile & Tablet
   ============================================================= */

/* ---------- Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {

    /* --- HERO --- */
    .hero {
        flex-direction: column;
        align-items: center;
        padding: 0 24px;
    }

    .hero--content {
        width: 100%;
        text-align: center;
    }

    .hero--content p {
        max-width: 100%;
        text-align: left;
    }

    .hero--content__buttons {
        justify-content: center;
    }

    .hero--video {
        width: 90%;
    }

    .hero--video__thumb,
    .hero--video__player {
        border-radius: 24px;
    }

    .hero--video__play {
        width: 60px;
        height: 60px;
    }

    .hero--video__play svg {
        width: 60px;
        height: 60px;
    }

    .destaque-hero {
        font-size: 45px;
        text-align: center;
    }

    /* --- REFERÊNCIAS --- */
    .referencias__titulo h2 {
        max-width: 95%;
        font-size: 32px;
        line-height: 44px;
    }

    #referencias {
        background: url(../../images/bg-marcas-mobile.svg) no-repeat;
        background-size: cover;
        background-position: top;
        margin-top: -90%;
        gap: 24px;
        aspect-ratio: 360 / 527;
        padding: 100% 20px 0;
    }

    /* --- ENTREGA --- */
    .entrega--header {
        flex-direction: column;
        align-items: center;
        text-align: left;
        padding: 0 24px;
    }

    .entrega--header__descricao,
    .entrega--footer__descricao {
        width: 80%;
    }

    .entrega--swiper,
    .entrega--slide {
        height: 280px;
    }

    .entrega--footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 24px;
    }

    .entrega--footer__descricao {
        width: 90%;
    }

    /* --- PROMOÇÕES --- */
    .promocoes--grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 70px 20px;
        padding: 0 24px;
    }

    /* --- OPÇÕES / CONFIGURAÇÃO --- */
    .configuracao {
        width: 100%;
        aspect-ratio: auto;
        background-size: cover;
        background-position: center;
    }

    .configuracao--content__all {
        flex-direction: column;
        gap: 40px;
        aspect-ratio: auto;
        height: auto;
        padding: 60px 24px;
    }

    .configuracao--content {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .carrossel {
        border-width: 15px;
    }

    .carrossel--favi-fixo {
        display: none;
    }

    .carrossel--content__numeracao {
        display: none;
    }

    /* --- DEMONSTRAÇÃO --- */
    /* .demonstracao {
        margin-top: -10%;
        padding-top: 60px;
        background-size: cover;
        padding-bottom: 50px;
        aspect-ratio: auto;
    } */

    .demonstracao--titulo {
        margin-left: 0;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .demonstracao--mockups img {
        border-radius: 48px;
        border-width: 6px;
        width: 100%;
        max-width: 350px;
    }

    /* --- PÚBLICO --- */
    .publico--titulo {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .publico--titulo h3 {
        width: 100%;
    }

    .publico--cards {
        grid-template-columns: 1fr 1fr;
        padding: 0 24px;
    }

    .publico--cards__single__titulo h3 {
        font-size: 18px;
    }

    .publico--cards__single__titulo p {
        font-size: 16px;
    }

    /* --- CASES --- */
    .cases--grid {
        padding: 0 24px;
        gap: 20px;
    }

    .cases--titulo h2 {
        text-align: center;
        margin-left: 0;
    }

    /* --- CONTATOS / FAQ --- */
    .contatos--form {
        flex-direction: column;
        background-image: none;
        background-color: var(--terra);
        background-position: center;
        padding: 60px 24px;
        gap: 40px;
    }

    .contatos--form__cta {
        width: 100%;
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .contatos--faq {
        flex-direction: column;
        gap: 30px;
        margin-left: 0;
        width: 100%;
        padding: 0 24px;
    }

    .contatos--faq__titulo {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    form input {
        width: 100%;
    }

    .contatos--passos {
        left: 50%;
        transform: translateX(-50%);
        gap: 40px;
    }
}


@media (max-width: 1024px) and (min-width: 769px) {
    .contatos {
        background-size: cover;
    }

    .contatos--faq__duvidas {
        width: 100%;
    }

    .cases--hover__logo {
        transform: translateX(30%) !important;
    }

    .shape-texto-contato::after {
        margin-left: 0px !important;
    }
}

/* ---------- Mobile (max 768px) ---------- */
@media (max-width: 768px) {

    /* --- HEADER --- */
    .container-logo-header {
        height: 80px;
        /* background-size: 60%; */
    }

    .header {
        padding: 10px 16px;
        gap: 20px;
    }

    .logo-header {
        width: 50%;
    }

    .logo-header img {
        width: 160px;
    }

    /* .menu-header__nav removed display: none here because it's handled in main.css */

    /* --- HERO --- */
    #container-hero {
        gap: 30px;
        padding: 0 0 50px 0;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 30px;
    }

    .hero--content {
        width: 100%;
        text-align: center;
    }

    .titulo-secao {
        font-size: 32px;
        line-height: 36px;
    }

    .destaque-hero {
        font-size: 32px;
        margin-left: 0;
        margin-top: 10px;
        padding: 0 4px 5px 6px;
    }

    .hero--content p {
        font-size: 16px;
        max-width: 100%;
        margin-top: 20px;
    }

    .hero--content__buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 24px;
    }

    .hero--content__buttons .btn-base {
        width: 100%;
        text-align: center;
        padding: 18px 24px;
    }


    .hero--video {
        width: 100%;
        border-radius: 30px;
        border-width: 6px;
    }

    .hero--video img {
        border-radius: 24px;
    }

    /* --- REFERÊNCIAS --- */
    #referencias {
        background: url(../../images/bg-marcas-mobile.svg) no-repeat;
        background-size: cover;
        background-position: center;
        margin-top: -90%;
        gap: 24px;
        aspect-ratio: 360 / 765;
        padding: 106% 20px 0;
    }

    .referencias__titulo h2 {
        max-width: 95%;
        font-size: 32px;
        line-height: 44px;
    }

    .referencias__conteudo__track img {
        width: 70vw;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .referencias__infos--single img {
        max-width: 45px;
        height: auto;
    }

    .referencias__infos--single p {
        font-size: 32px;
        line-height: 1.2;
    }

    .referencias__infos__track {
        gap: 40px;
    }

    /* --- ENTREGA --- */
    #entrega {
        gap: 30px;
        padding: 50px 0;
    }

    .entrega--header {
        flex-direction: column;
        align-items: center;
        text-align: left;
        padding: 0 20px;
        gap: 12px;
    }

    .entrega--header__titulo {
        font-size: 32px;
        line-height: 36px;
    }

    .entrega--header__descricao,
    .entrega--footer__descricao {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .entrega--swiper,
    .entrega--slide {
        height: 220px;
    }

    .entrega--slide--1 {
        width: 160px !important;
    }

    .entrega--slide--2 {
        width: 180px !important;
    }

    .entrega--slide--3 {
        width: 210px !important;
    }

    .entrega--slide--4 {
        width: 140px !important;
    }

    .entrega--footer {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0 20px;
    }

    .entrega--footer__destaque {
        font-size: 20px;
        width: 100%;
    }

    .entrega--footer__descricao {
        width: 100%;
        font-size: 16px;
    }

    /* --- PROMOÇÕES --- */
    #promocoes {
        padding: 60px 0 60px 0;
        gap: 60px;
    }

    .promocoes--titulo h2 {
        font-size: 48px;
        line-height: 36px;
    }

    /* Grid → scroll horizontal com peek na 2ª coluna */
    .promocoes--grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 70px 16px 24px 16px;
        scrollbar-width: none;
        width: 95%;
    }

    .promocoes--grid::-webkit-scrollbar {
        display: none;
    }

    .promocoes--grid__single {
        scroll-snap-align: start;
        padding: 0 30px 32px 30px;
        border-radius: 16px;
        min-height: 180px;
        justify-content: flex-end;
    }

    .promocoes--grid__single svg {
        max-width: 120px;
        height: 120px;
        margin-top: -65px;
        /* ícone sai bem da caixa */
    }

    .promocoes--grid__single h3 {
        font-size: 20px;
        line-height: 26px;
    }

    /* --- OPÇÕES / CONFIGURAÇÃO --- */
    .configuracao {
        width: 100%;
        background: url(../../images/shape-configuracao-mobile.png) no-repeat;
        aspect-ratio: auto;
        background-size: cover;
        background-position: center 0%;
        padding: 50px 10px 0;
    }

    .configuracao--content__all {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        gap: 30px;
        aspect-ratio: auto;
        max-width: 100%;
    }

    .configuracao--content {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .destaque-configuracao {
        padding-left: 0;
        font-size: 48px;
        line-height: 36px;
        max-width: inherit;
        width: 100%;
    }

    .shape-texto::after {
        inset: -0.45em;
        background-size: 70%;
        margin-left: 0;
        background: url(../../images/bg-pra-quem-e.svg) no-repeat center / 100% 100%;
    }

    .configuracao--content h3 {
        font-size: 32px;
        line-height: 36px;
        font-weight: 500;
    }

    .configuracao--content h4 {
        font-size: 14px;
    }

    .configuracao--swiper {
        width: 100%;
    }

    .carrossel {
        max-width: 100%;
        min-height: 300px;
        border-radius: 30px;
        border-width: 15px;
    }

    .carrossel--content__single {
        padding: 40px;
        gap: 16px;
    }

    .carrossel--content__single h2 {
        font-size: 26px;
        line-height: 34px;
        text-align: left;
        font-weight: bold;
    }

    .carrossel--content__single h3 {
        font-size: 20px;
        text-align: left;
    }

    .carrossel--content__icons {
        gap: 20px;
        justify-content: center;
    }

    .carrossel--content__icons img {
        height: 55px;
    }

    .carrossel--paginacao {
        margin-top: 24px;
        gap: 20px;
        font-size: 14px;
    }

    .carrossel--favi-fixo {
        display: none;
    }

    .carrossel--content__numeracao {
        display: none;
    }

    /* --- DEMONSTRAÇÃO --- */
    .demonstracao {
        aspect-ratio: auto;
        background-size: cover;
        background-position: bottom;
        padding-top: 60%;
        margin-top: -50%;
        gap: 30px;
    }

    .demonstracao--titulo {
        flex-direction: column;
        gap: 5px;
    }

    .demonstracao--titulo h2 {
        font-size: 56px;
        line-height: 36px;
    }

    .demonstracao--titulo h3 {
        font-size: 24px;
        margin-top: 0;
    }

    .demonstracao--mockups {
        flex-direction: column;
        gap: 20px;
    }

    .demonstracao--mockups img {
        border-radius: 48px;
        border-width: 15px;
        width: 100%;
        max-width: 320px;
    }

    /* --- PÚBLICO --- */
    #publico {
        padding: 50px 0;
        background-size: cover;
    }

    .publico--content {
        gap: 30px;
    }

    .publico--titulo {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0 20px;
    }

    .publico--titulo h2 {
        font-size: 40px;
        line-height: 36px;
    }

    .publico--titulo h3 {
        width: 100%;
        font-size: 16px;
    }

    .publico--cards {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 16px;
    }

    .publico--cards__single {
        padding: 24px 20px 24px 80px;
        gap: 16px;
        flex-direction: row;
        border-radius: 16px;
        justify-content: flex-start;
    }

    .publico--cards__single__image img {
        max-width: 80px;
    }

    .publico--cards__single__titulo h3 {
        font-size: 18px;
    }

    .publico--cards__single__titulo p {
        font-size: 16px;
    }

    /* --- CASES --- */
    #cases {
        padding: 50px 0 80px 0 !important;
        gap: 30px;
    }

    #cases::after {
        display: none;
    }

    .cases--titulo h2 {
        text-align: center;
        margin-left: 0;
        font-size: 32px;
        line-height: 36px;
    }

    .cases--grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 16px;
    }

    .cases--grid__single {
        border-radius: 30px;
        border-width: 6px;
    }

    .cases--grid__single img {
        border-radius: 0px;
    }

    .cases--cta a {
        padding: 16px 32px;
        font-size: 14px;
    }

    /* --- CONTATOS / FORM --- */
    .contatos {
        padding: 130px 0 50px;
        aspect-ratio: auto;
        background-size: cover;
    }

    .contatos--form {
        flex-direction: column;
        margin-top: 0;
        gap: 30px;
        padding: 40px 20px;
        background-image: none;
        background-color: var(--terra);
        border-radius: 30px;
    }

    .contatos--form__cta {
        width: 100%;
        padding-left: 0;
        margin-top: 0;
        text-align: center;
        align-items: center;
    }

    .contatos--form__cta h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .contatos--form__cta h3 {
        text-align: left;
    }

    .contatos--form__cta p {
        font-size: 20px;
        text-align: left;
        margin-bottom: 30px;
    }

    .contatos--form__cf7 {
        padding: 0px 24px 40px;
        border-radius: 16px;
        border-width: 6px;
        width: 100%;
    }

    .contatos--form__cf7 h2 {
        font-size: 20px;
        text-align: center;
    }

    .contatos--passos {
        position: absolute;
        top: -5%;
        left: 50%;
        transform: translateX(-50%);
        gap: 30px;
    }

    .contatos--passos img {
        max-width: 50px;
    }

    form input {
        width: 100%;
        padding: 16px;
        font-size: 14px;
    }

    form label {
        margin-top: 12px;
        font-size: 14px;
    }

    .form-step select,
    .form-step textarea {
        padding: 16px;
        font-size: 14px;
    }

    .btn-proximo,
    .btn-enviar,
    .btn-anterior {
        padding: 16px 20px;
        font-size: 14px;
    }

    .form-step__nav {
        flex-direction: column;
        gap: 10px;
    }

    .btn-proximo,
    .btn-enviar {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .btn-anterior {
        width: 100%;
        text-align: center;
    }

    form input[type="submit"] {
        width: 100%;
        margin-left: 0;
        padding: 18px;
    }

    /* --- FAQ --- */
    .contatos--faq {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        padding: 0 20px;
        margin-left: 0;
        margin-top: 40px;
    }

    .contatos--faq__titulo {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 12px;
    }

    .contatos--faq__titulo h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .contatos--faq__titulo p {
        font-size: 16px;
    }

    .faq-item__pergunta {
        font-size: 16px;
        gap: 12px;
    }

    .faq-item__resposta>p {
        font-size: 14px;
    }

    .hero--content__buttons .btn-base {
        padding: 25px 24px;
    }

    #referencias {
        padding: inherit 20px;
    }
}


/* ---------- Mobile pequeno (max 480px) ---------- */
@media (max-width: 480px) {

    /* --- HERO --- */
    .titulo-secao {
        font-size: 32px;
        line-height: 40px;
        text-align: left;
    }

    .destaque-hero {
        font-size: 45px;
        text-align: center;
    }

    .titulo-destaque {
        width: 100%;
        font-size: 48px;
        line-height: 38px;
        margin-bottom: 10px;
    }

    /* --- REFERÊNCIAS --- */
    #referencias {
        background: url(../../images/bg-marcas-mobile.svg) no-repeat;
        background-size: cover;
        background-position: center;
        margin-top: -90%;
        gap: 24px;
        aspect-ratio: 360 / 765;
        padding: 106% 20px 0;
    }

    .referencias__titulo h2 {
        max-width: 95%;
        font-size: 32px;
        line-height: 44px;
    }

    .referencias__infos--single p {
        font-size: 20px;
        margin-top: 15px;
    }

    /* --- PROMOÇÕES --- */
    /* Grid → scroll horizontal com peek na 2ª coluna */
    .promocoes--grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 70px 12px 24px 12px;
        scrollbar-width: none;
    }

    .promocoes--grid::-webkit-scrollbar {
        display: none;
    }

    .promocoes--grid__single {
        scroll-snap-align: start;
        padding: 0 20px 28px 20px;
        min-height: 170px;
        justify-content: flex-start;
        width: 270px;
    }

    .promocoes--grid__single svg {
        max-width: 110px;
        height: 110px;
        margin-top: -58px;
    }

    .promocoes--grid__single h3 {
        font-size: 22px;
        line-height: 28px;
    }

    /* --- CONFIGURAÇÃO --- */
    .destaque-configuracao {
        font-size: 48px;
        line-height: 30px;
    }

    .configuracao--content h3 {
        font-size: 32px;
        line-height: 36px;
        font-weight: 500;
    }

    /* --- DEMONSTRAÇÃO --- */
    .demonstracao--titulo h2 {
        font-size: 56px;
    }

    .demonstracao--mockups img {
        max-width: 280px;
    }

    /* --- PÚBLICO --- */
    .publico--titulo h2 {
        font-size: 40px;
    }

    .publico--cards__single {
        padding: 20px 16px;
    }

    .publico--cards__single__image img {
        max-width: 65px;
    }

    /* --- CASES --- */
    .cases--titulo h2 {
        font-size: 26px;
    }

    /* --- CONTATOS --- */
    .contatos--form__cta h2 {
        font-size: 40px;
    }

    .contatos--form__cta h3 {
        font-size: 32px;
        text-align: left;
    }

    .contatos--form__cf7 {
        padding: 0px 16px 30px;
    }

    .contatos--passos img {
        max-width: 40px;
    }

    .contatos--passos {
        gap: 20px;
    }

    .btn-proximo,
    .btn-enviar,
    .btn-anterior {
        border-radius: 12px;
        padding: 14px 16px;
    }

    /* --- FAQ --- */
    .contatos--faq__titulo h2 {
        font-size: 26px;
    }

    .faq-item__pergunta {
        font-size: 14px;
    }

}

@media (max-width: 1340px) {
    .hero {
        width: 90%;
    }

    #referencias {
        padding: inherit 20px;
    }

    .destaque-hero {
        white-space: nowrap;
    }
}

@media (max-width: 1450px) and (min-width: 1200px) {
    #referencias {
        margin-top: -37%;
    }
}

@media (max-width: 1200px) and (min-width: 1030px) {
    #referencias {
        margin-top: -38%;
    }

    .hero--content__buttons {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 1280) and (min-width: 1024px) {
    .carrossel--paginacao {
        margin-top: 20px;
    }

    .configuracao {
        width: 100%;
    }
}

@media (min-width: 1280px) {
    .hero--content {
        min-height: 500px;
    }
}

/* --- Ultra-wide (1920px+): congela o overlap do #referencias em px fixo --- */
@media (min-width: 1920px) {
    #referencias {
        margin-top: -580px;
        padding-top: 620px;
    }
}

@media (min-width: 2400px) {
    #referencias {
        margin-top: -580px;
        padding-top: 660px;
    }
}