@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Yantramanav", serif;
}

a {
    text-decoration: none;
}

body {
    min-height: 100vh;
    width: 100%;
    background: #001C48;
    color: rgba(245, 245, 245, .88);
}

/* ================= HEADER ================= */
.skip-link {
    position: absolute;
    top: -60px;
    left: 1rem;
    z-index: 1000;
    background: #F6DA16;
    color: #001C48;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-variant: small-caps;
    transition: top .3s ease;
}

.skip-link:focus {
    top: 1rem;
}

header {
    display: flex;
    position: relative;
    width: 100%;
    height: 90px;
    z-index: 10;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    overflow: visible;
    padding: 20px 1.5rem;
    background: #001C48;
    box-shadow: 0 2px 12px rgba(0, 0, 10, .4);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right,
            transparent 0%,
            #CE9B02 20%,
            #F6DA16 50%,
            #CE9B02 80%,
            transparent 100%) 1;
}

.divLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 20%;
}

.divLogo img {
    width: 100px;
    height: auto;
    vertical-align: middle;
}

.divLogo h1 {
    font-family: "Yantramanav", serif;
    font-variant: small-caps;
    font-style: italic;
    font-weight: bolder;
    color: #F6DA16;
}

.logo-molecula {
    width: 54px;
    height: 54px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.logo-texto {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.logo-pro {
    font-family: "Yantramanav", serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.747);
}

.logo-intec {
    font-family: "Yantramanav", serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #F6DA16;
}

.grupamentoNavUl {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex: 1;
    min-width: 0;
}

.grupamentoNavUl nav {
    height: 100%;
    display: flex;
    align-items: stretch;
}

/* ==================================================
   RESPONSIVIDADE - HEADER
================================================== */

@media (max-width: 1200px) {

    header {
        gap: 1rem;
        padding: 18px 1.25rem;
    }

    .divLogo {
        flex: 0 0 auto;
    }

    .logo-molecula {
        width: 48px;
        height: 48px;
    }

    .logo-pro {
        font-size: 18px;
    }

    .logo-intec {
        font-size: 28px;
    }

}

@media (max-width: 992px) {

    header {
        height: auto;
        min-height: 90px;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 16px 20px;
    }

    .divLogo {
        justify-content: flex-start;
        flex: 0 0 auto;
    }

    .divLogo img {
        width: 80px;
    }

    .logo-molecula {
        width: 44px;
        height: 44px;
    }

    .logo-pro {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .logo-intec {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .grupamentoNavUl {
        flex: 0 0 auto;
    }

}

@media (max-width: 768px) {

    header {
        padding: 14px 18px;
    }

    .divLogo img {
        width: 70px;
    }

    .logo-molecula {
        width: 40px;
        height: 40px;
    }

    .logo-pro {
        font-size: 15px;
    }

    .logo-intec {
        font-size: 22px;
    }

}

@media (max-width: 576px) {

    header {
        padding: 12px 16px;
    }

    .divLogo img {
        width: 60px;
    }

    .logo-molecula {
        width: 36px;
        height: 36px;
    }

    .logo-pro {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .logo-intec {
        font-size: 20px;
        letter-spacing: 1px;
    }

}

@media (max-width: 430px) {

    header {
        padding: 10px 14px;
    }

    .logo-molecula {
        width: 32px;
        height: 32px;
    }

    .logo-pro {
        font-size: 13px;
    }

    .logo-intec {
        font-size: 18px;
    }

}

/* ================= MENU ================= */

.menu {
    display: flex;
    align-items: stretch;
    list-style: none;
    gap: 0;
    height: 100%;
}

.menu>li {
    position: static;
    display: flex;
    align-items: stretch;
    transition: background-color .35s ease;
}

.linknav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: rgba(245, 245, 245, .88);
    font-size: 20px;
    font-variant: small-caps;
    text-decoration: none;
    opacity: .85;
    transition:
        background-color .35s,
        opacity .35s,
        color .35s;
}

.linknav img {
    vertical-align: middle;
    width: 20px;
    margin-left: 4px;
}

.menu li:hover {
    background: #790826;
}

.menu li a:hover {
    opacity: 1;
    text-decoration: underline;
    font-weight: 500;
}

li.obras:hover,
li.instagram:hover,
li.contato:hover {
    border-radius: 12px;
}

/* ================= MEGAMENU ================= */

.empresa,
.servicos {
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 90vh;
    overflow-y: scroll;

    background: #01317e;
    padding: 40px 60px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;

    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    border-top: 2px solid rgba(255, 255, 255, .08);

    transition:
        opacity .4s ease,
        transform .4s ease,
        visibility .4s ease;
}

.empresa:hover>.submenu,
.servicos:hover>.submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.QuemSomos p {
    width: 75%;
    font-size: 24px;
    text-align: justify;
    line-height: 40px;
    color: #ffffffc0;
}

.servico {
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: start;
    width: 100%;
    flex-shrink: 0;
}

.servico a {
    font-weight: 600;
    font-size: 30px;
    color: #ce9b02;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
    z-index: 2;
}

.servico:hover>a {
    background-color: rgba(0, 28, 72, 0.12);
}

.servico a:hover {
    font-style: oblique;
}

.servico ul.subsub {
    grid-column: 2;
    background: #001C48;
    border-radius: 16px;
    padding: 20px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    list-style: none;
    font-size: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(16px);

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.servico:hover ul.subsub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.servico ul.subsub li {
    color: rgba(245, 245, 245, 0.88);
    font-variant: small-caps;
    padding-left: 16px;
    border-left: 3px solid #CE9B02;
}

.subsub li:hover {
    cursor: pointer;
    font-weight: bolder;
    color: #790826;
}

.servicoImagem {
    width: 40%;
    height: auto;
}

/* ==================================================
   RESPONSIVIDADE - MENU
================================================== */

@media (max-width:1200px) {

    .linknav {
        padding: 0 14px;
        font-size: 18px;
    }

    .submenu {
        padding: 32px 40px;
    }

    .QuemSomos p {
        width: 100%;
        font-size: 21px;
        line-height: 34px;
    }

    .servico {
        grid-template-columns: 300px 1fr;
    }

    .servico a {
        font-size: 26px;
    }

    .servico ul.subsub {
        padding: 18px 24px;
        font-size: 18px;
    }

}


@media (max-width:992px) {

    .grupamentoNavUl nav {
        display: none;
    }

    .menu {
        display: none;
    }

    .submenu {
        display: none;
    }

    .empresa,
    .servicos {
        padding: 0;
        margin: 0;
    }

}


@media (max-width:768px) {

    .submenu {
        display: none;
    }

    .servico {
        display: block;
    }

    .QuemSomos p {
        font-size: 18px;
        line-height: 30px;
    }

}


@media (max-width:576px) {

    .linknav {
        font-size: 16px;
    }

}


@media (max-width:430px) {

    .QuemSomos p {
        font-size: 16px;
        line-height: 28px;
    }

}

/* ================= MENU CONTATOS ================= */

ul.menucontatos {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-variant: small-caps;
    gap: 3rem;
}

ul.menucontatos a {
    display: inline-flex;
    align-items: center;
    min-width: 140px;
    background-color: #ad0017c5;
    color: whitesmoke;
    padding: 8px 16px;
    border-radius: 12px;
    transition: opacity 0.5s, background-color 0.5s;
    opacity: 0.9;
    overflow: hidden;
    font-size: 20px;
    font-weight: 500;
}

ul.menucontatos a span {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateX(0);
    opacity: 1;
}

ul.menucontatos a img {
    width: 28px;
    margin-right: 10px;
    transition: transform 0.4s ease;
}

ul.menucontatos a:hover span {
    opacity: 0;
    transform: translateX(-20px);
}

ul.menucontatos a:hover img {
    transform: translateX(40px);
}

ul.menucontatos a:hover {
    opacity: 1;
    background-color: #0a34a8b6;
}

/* ================= SOBRE ================= */

.sobre {
    display: flex;
    flex-direction: row;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.grupamentoSobre {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    width: 60%;
    line-height: 30px;
    /* flex-wrap: wrap; */
    text-align: left;
    font-size: 25px;
    z-index: 2;
    padding: 20px 70px;
    margin-top: 40px;
}

.grupamentoSobre a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

    background-color: #AD0016;
    color: whitesmoke;

    padding: 12px 20px;
    border-radius: 12px;

    transition: background-color 0.5s;
    opacity: 0.9;

    font-weight: 500;
    font-size: 20px;
    font-variant: small-caps;
    text-align: center;
    text-decoration: none;

    width: fit-content;
    min-width: 300px;
    max-width: 100%;

    white-space: nowrap;
    line-height: 1.2;
    box-sizing: border-box;
}

.arrow-orcamento {
    width: 28px;
    position: absolute;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.4s ease, transform 1s ease;
}

.grupamentoSobre a:hover {
    opacity: 1;
    background-color: #CE9B02;
    color: #011535;
}

.grupamentoSobre a span {
    transition: opacity 0.4s ease, transform 2s ease;
    transform: translateX(0);
    opacity: 1;
}

.grupamentoSobre a:hover span {
    opacity: 0;
    transform: translateX(30px);
}

.grupamentoSobre a:hover .arrow-orcamento {
    opacity: 1;
    transform: translateX(16px);
}

.grupamentoSobre h1 {
    font-size: 30px;
    font-weight: bolder;
}

.grupamentoSobre ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    text-align: left;
    font-variant: small-caps;
    font-weight: 500;
}

.grupamentoSobre img {
    vertical-align: text-bottom;
    margin-right: 24px;
    width: 32px;
}

.grupamentoSobre p {
    width: 70%;
}

.instagram .arrow-instagram {
    width: 20px;
    position: absolute;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.instagram a {
    position: relative;
    overflow: hidden;
}

.instagram a span {
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateX(0);
    opacity: 1;
}

.instagram:hover a span {
    opacity: 0;
    transform: translateX(30px);
}

.instagram:hover .arrow-instagram {
    opacity: 1;
    transform: translateX(0);
}

.sobreImagem {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: url(/IMAGENS/bgbgbgbgbgbg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 70%);
    mask-image: linear-gradient(to right, transparent 0%, black 70%);
}

/* ==================================================
   RESPONSIVIDADE - MENU CONTATOS + HERO
================================================== */

@media (max-width:1200px) {

    ul.menucontatos {
        gap: 1.5rem;
    }

    ul.menucontatos a {
        min-width: 120px;
        font-size: 18px;
    }

    .sobre {
        min-height: 700px;
    }

    .grupamentoSobre {

        width: 65%;

        padding: 40px;

        gap: 22px;
    }

    .grupamentoSobre h1 {
        font-size: 48px;
        line-height: 1.1;
    }

    .grupamentoSobre p {
        width: 90%;
    }

    .sobreImagem {
        width: 70%;
    }

}


@media (max-width:992px) {

    ul.menucontatos {
        display: none;
    }

    .sobre {

        flex-direction: column;

        justify-content: center;

        align-items: center;

        height: auto;

        min-height: 100vh;

        padding: 60px 24px;

    }

    .grupamentoSobre {

        width: 100%;

        padding: 0;

        margin: 0;

        align-items: center;

        text-align: center;

        gap: 24px;
    }

    .grupamentoSobre h1 {

        width: 100%;

        font-size: 42px;

        line-height: 1.15;
    }

    .grupamentoSobre ul {

        width: 100%;

        align-items: center;
    }

    .grupamentoSobre li {

        display: flex;

        justify-content: center;

        align-items: flex-start;

        font-size: 18px;

        line-height: 30px;

        text-align: left;
    }

    .grupamentoSobre img {

        margin-right: 16px;

        width: 28px;

        flex-shrink: 0;
    }

    .grupamentoSobre p {

        width: 100%;

        font-size: 18px;

        line-height: 30px;
    }

    .grupamentoSobre a {

        width: 100%;

        max-width: 360px;

        min-width: unset;
    }

    #btnOrcamentoMenu {

        width: 100%;

        max-width: 360px;

        min-width: unset;
    }

    .sobreImagem {

        position: relative;

        width: 100%;

        height: 420px;

        margin-top: 40px;

        mask-image: none;

        -webkit-mask-image: none;

        background-size: contain;

        background-position: center;

        background-repeat: no-repeat;
    }

}


@media (max-width:768px) {

    .grupamentoSobre h1 {

        font-size: 34px;
    }

    .grupamentoSobre li {

        font-size: 17px;
    }

    .grupamentoSobre p {

        font-size: 17px;
    }

    .grupamentoSobre a {

        font-size: 17px;

        padding: 15px 18px;
    }

    .arrow-orcamento {

        display: none;
    }

    .sobreImagem {

        height: 340px;
    }

}


@media (max-width:576px) {

    .sobre {

        padding: 40px 18px;
    }

    .grupamentoSobre {

        gap: 18px;
    }

    .grupamentoSobre h1 {

        font-size: 30px;
    }

    .grupamentoSobre li {

        font-size: 16px;

        line-height: 28px;
    }

    .grupamentoSobre p {

        font-size: 16px;
    }

    .grupamentoSobre img {

        width: 24px;

        margin-right: 12px;
    }

    .sobreImagem {

        height: 260px;
    }

}


@media (max-width:430px) {

    .grupamentoSobre h1 {

        font-size: 26px;
    }

    .grupamentoSobre a {

        font-size: 15px;
    }

    .sobreImagem {

        height: 220px;
    }

}

/* ================= DIFERENCIAL ================= */

.Diferencial {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    gap: 3rem;
    padding: 5rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.Diferencial h2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-variant: small-caps;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-align: center;
    color: #F6DA16;
    padding: 8px 20px;
    background: none;
    border-radius: 0;
    border-top: 1px solid rgba(246, 218, 22, .35);
    border-bottom: 1px solid rgba(246, 218, 22, .35);
}


.cards-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cards-grid article {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 1 300px;
    gap: 1rem;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.cards-grid article:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    cursor: pointer;
}

.cards-grid article h3 {
    font-variant: small-caps;
    font-size: 2rem;
    color: #CE9B02;
}

.cards-grid article ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cards-grid article li {
    font-size: 1.4rem;
    line-height: 1.9rem;
    opacity: 1;
    padding-left: 14px;
    border-left: 2px solid #CE9B02;
}

.cards-grid article:last-child {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.8rem 2.5rem;
}

/* ==================================================
   RESPONSIVIDADE - DIFERENCIAL
================================================== */

@media (max-width:1200px) {

    .Diferencial {
        max-width: 1000px;
        padding: 4rem 2.5rem;
    }

    .Diferencial h2 {
        font-size: 2.1rem;
    }

    .cards-grid article {
        padding: 1.8rem;
    }

    .cards-grid article h3 {
        font-size: 1.8rem;
    }

    .cards-grid article li {
        font-size: 1.25rem;
    }

}

@media (max-width:992px) {

    .Diferencial {
        padding: 4rem 2rem;
        gap: 2.5rem;
    }

    .Diferencial h2 {
        font-size: 2rem;
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid article:last-child {
        grid-column: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

}

@media (max-width:768px) {

    .Diferencial {
        padding: 3rem 1.5rem;
    }

    .Diferencial h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
        gap: 12px;
    }

    .cards-grid {
        gap: 1.2rem;
    }

    .cards-grid article {
        padding: 1.5rem;
    }

    .cards-grid article h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .cards-grid article li {
        font-size: 1.1rem;
        line-height: 1.7rem;
    }

}

@media (max-width:576px) {

    .Diferencial {
        padding: 2.5rem 1rem;
        gap: 2rem;
    }

    .Diferencial h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding: 6px 12px;
    }

    .cards-grid article {
        border-radius: 16px;
        padding: 1.3rem;
    }

    .cards-grid article h3 {
        font-size: 1.35rem;
    }

    .cards-grid article li {
        font-size: 1rem;
        line-height: 1.6rem;
    }

}

@media (max-width:430px) {

    .Diferencial h2 {
        font-size: 1.3rem;
    }

    .cards-grid article {
        padding: 1.1rem;
    }

    .cards-grid article h3 {
        font-size: 1.2rem;
    }

    .cards-grid article li {
        font-size: .95rem;
    }

}

/* ================= VER MAIS ================= */

.ver-mais-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0 5rem;
}

.btn-ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    border-radius: 14px;
    background-color: #CE9B02;
    border: 3px solid #F6DA16;
    color: #001C48;
    font-variant: small-caps;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    transition: background-color .3s ease, gap .3s ease, transform .2s ease, box-shadow .3s ease;
}

.btn-ver-mais:hover {
    background-color: #F6DA16;
    gap: 18px;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

.btn-ver-mais:disabled {
    cursor: default;
    opacity: .7;
}

.arrow-ver-mais {
    width: 20px;
    transition: transform .3s ease;
}

.btn-ver-mais:hover .arrow-ver-mais {
    transform: translateY(4px);
}

/* rolagem suave ao clicar em âncoras */
html {
    scroll-behavior: smooth;
}

/* ================= COMO TRABALHAMOS ================= */

.ComoTrabalhamos {
    /* escondida por padrão: o scroll natural da página termina no botão */
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 4rem 7rem;
    scroll-margin-top: 90px;

    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.ComoTrabalhamos.ativo {
    display: grid;
    animation: revelarComoTrabalhamos .6s ease forwards;
}

@keyframes revelarComoTrabalhamos {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.etapas,
.diferencial-destaque {
    border-radius: 28px;
    padding: 3rem;
    border: 3px solid rgba(246, 218, 22, .25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}

.etapas {
    background: rgba(255, 255, 255, .05);
}

.etapas img {
    display: inline-flex;
    vertical-align: middle;
    width: 80px;
    height: auto;
    margin-left: 20px;
}

.etapas a {

    display: inline-flex;
    background-color: #F6DA16;
    color: #001C48;
    border-radius: 12px;
    padding: 8px 28px;
    font-variant: small-caps;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

.etapas a:hover {
    background-color: #001c4825;
    color: #F6DA16;
}

.etapas h2 {
    display: inline-flex;
    background-color: #F6DA16;
    color: #001C48;
    border-radius: 12px;
    padding: 14px 28px;
    font-variant: small-caps;
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

.etapas ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.etapas li {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 1.2rem;
    font-variant: small-caps;
    font-weight: 500;
    padding-bottom: 1.8rem;
    border-bottom: 2px solid rgba(246, 218, 22, .18);
}

.etapas li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.etapas li span {
    font-family: "Bodoni Moda", serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #001C48;
    background-color: #CE9B02;
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.diferencial-destaque {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(160deg, #CE9B02 0%, #F6DA16 100%);
    color: #001C48;
}

.diferencial-destaque h2 {
    font-variant: small-caps;
    font-size: 1.9rem;
    font-weight: 900;
}

.diferencial-destaque p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
    font-weight: 500;
}

.CTAdestaque {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    text-align: center;
    padding: 16px 36px;
    border-radius: 14px;
    background-color: #001C48;
    color: #F6DA16;
    font-variant: small-caps;
    font-size: 1.25rem;
    font-weight: 700;
    border: 3px solid #001C48;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
    transition: background-color .3s ease, color .3s ease, transform .2s ease, box-shadow .3s ease;
}

.CTAdestaque:hover {
    background-color: transparent;
    color: #001C48;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
    cursor: pointer;
}

/* ==================================================
   RESPONSIVIDADE - VER MAIS + COMO TRABALHAMOS
================================================== */

@media (max-width:1200px) {

    .ComoTrabalhamos {
        max-width: 1100px;
        gap: 3rem;
        padding: 5rem 2.5rem 6rem;
    }

    .etapas,
    .diferencial-destaque {
        padding: 2.5rem;
    }

}

@media (max-width:992px) {

    .ver-mais-wrapper {
        padding: 2rem 1.5rem 4rem;
    }

    .btn-ver-mais {
        width: 100%;
        max-width: 360px;
        justify-content: center;
        font-size: 20px;
        padding: 16px 28px;
    }

    .ComoTrabalhamos {

        grid-template-columns: 1fr;

        gap: 2rem;

        padding: 4rem 2rem 5rem;
    }

    .etapas,
    .diferencial-destaque {

        padding: 2rem;
    }

    .etapas h2,
    .diferencial-destaque h2 {

        font-size: 1.7rem;
    }

    .etapas li {

        gap: 18px;

        font-size: 1.1rem;
    }

    .diferencial-destaque p {

        font-size: 1.1rem;
    }

}

@media (max-width:768px) {

    .btn-ver-mais {

        font-size: 18px;

        padding: 15px 22px;
    }

    .arrow-ver-mais {

        width: 18px;
    }

    .ComoTrabalhamos {

        padding: 3rem 1.5rem 4rem;
    }

    .etapas,
    .diferencial-destaque {

        border-radius: 22px;

        padding: 1.8rem;
    }

    .etapas img {

        width: 60px;

        margin-left: 10px;
    }

    .etapas h2,
    .diferencial-destaque h2 {

        font-size: 1.5rem;

        margin-bottom: 2rem;
    }

    .etapas li {

        font-size: 1rem;

        line-height: 1.6;

        align-items: flex-start;
    }

    .etapas li span {

        min-width: 48px;

        height: 48px;

        font-size: 2rem;
    }

    .diferencial-destaque p {

        font-size: 1rem;

        text-align: left;
    }

    .CTAdestaque {

        width: 100%;

        padding: 15px 20px;

        font-size: 1.1rem;
    }

}

@media (max-width:576px) {

    .ver-mais-wrapper {

        padding: 2rem 1rem 3rem;
    }

    .btn-ver-mais {

        font-size: 17px;

        padding: 14px 18px;

        border-radius: 12px;
    }

    .ComoTrabalhamos {

        padding: 2.5rem 1rem 3rem;
    }

    .etapas,
    .diferencial-destaque {

        padding: 1.5rem;
    }

    .etapas h2,
    .diferencial-destaque h2 {

        width: 100%;

        justify-content: center;

        text-align: center;

        font-size: 1.3rem;
    }

    .etapas li {

        gap: 14px;

        font-size: .95rem;
    }

    .etapas li span {

        min-width: 42px;

        height: 42px;

        font-size: 1.6rem;
    }

    .CTAdestaque {

        font-size: 1rem;
    }

}

@media (max-width:430px) {

    .btn-ver-mais {

        font-size: 16px;
    }

    .etapas h2,
    .diferencial-destaque h2 {

        font-size: 1.15rem;
    }

    .etapas li {

        font-size: .9rem;
    }

    .diferencial-destaque p {

        font-size: .95rem;
    }

}

/* ================= FORMULÁRIO DE ORÇAMENTO ================= */

.orcamento-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}

.orcamento-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

.orcamento-form {
    position: fixed;
    top: 0;
    left: 0;
    width: min(560px, 100%);
    height: 100vh;
    background: #001C48;
    border-right: 3px solid #F6DA16;
    box-shadow: 12px 0 40px rgba(0, 0, 0, .5);
    z-index: 61;
    padding: 3rem 2.5rem;
    overflow-y: auto;
    font-size: 30px;
    transform: translateX(-100%);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.orcamento-form.ativo {
    transform: translateX(0);
}

.orcamento-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #F6DA16;
    font-size: 32px;
    cursor: pointer;
}

.orcamento-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 1rem 0 2.5rem;
}

.step-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(246, 218, 22, .3);
    color: rgba(245, 245, 245, .6);
    font-weight: 700;
    transition: background .3s, border-color .3s, color .3s;
}

.step-dot.active {
    background: #F6DA16;
    border-color: #F6DA16;
    color: #001C48;
}

.step-line {
    width: 40px;
    height: 2px;
    background: rgba(246, 218, 22, .3);
}

.etapa-form {
    display: none;
    flex-direction: column;
    gap: 1.4rem;
    border: none;
}

.etapa-form.ativa {
    display: flex;
}

.etapa-form h3 {
    font-variant: small-caps;
    font-size: 1.6rem;
    color: #F6DA16;
    margin-bottom: .5rem;
}

.etapa-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .95rem;
    font-variant: small-caps;
}

.etapa-form input[type="text"],
.etapa-form input[type="tel"],
.etapa-form input[type="email"],
.etapa-form input[type="number"],
.etapa-form select,
.etapa-form textarea {
    background: rgba(201, 185, 185, 0.06);
    border: 2px solid rgba(246, 218, 22, .2);
    border-radius: 10px;
    padding: 12px 14px;
    color: whitesmoke;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .3s;
}

.etapa-form input:focus,
.etapa-form select:focus,
.etapa-form textarea:focus {
    outline: none;
    border-color: #F6DA16;
}

.etapa-form input[type="file"] {
    color: whitesmoke;
    font-size: .9rem;
}

.aviso-anexo {
    font-size: .85rem;
    opacity: .7;
    margin-top: -10px;
}

.grupo-checkbox,
.grupo-radio {
    border: 2px solid rgba(246, 218, 22, .15);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.etapa-form select {
    background-color: #001C48;
}

.grupo-checkbox legend,
.grupo-radio legend {
    font-variant: small-caps;
    color: #CE9B02;
    padding: 0 6px;
    font-weight: 600;
}

.grupo-checkbox label,
.grupo-radio label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-variant: normal;
    font-size: 20px;
}

.campo-condicional {
    margin-top: -10px;
}

.botoes-etapa {
    display: flex;
    gap: 1rem;
    margin-top: .5rem;
}

.btn-etapa {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-variant: small-caps;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .3s, color .3s, transform .2s;
    border: 3px solid #F6DA16;
}

.btn-proximo,
.btn-enviar {
    background: #F6DA16;
    color: #001C48;
}

.btn-proximo:hover,
.btn-enviar:hover {
    background: #CE9B02;
    transform: translateY(-2px);
}

.btn-voltar {
    background: transparent;
    color: #F6DA16;
}

.btn-voltar:hover {
    background: rgba(246, 218, 22, .1);
}

/* ==================================================
   RESPONSIVIDADE - FORMULÁRIO DE ORÇAMENTO
================================================== */

@media (max-width:1200px) {

    .orcamento-form {
        width: min(520px, 100%);
        padding: 2.5rem 2rem;
    }

}

@media (max-width:992px) {

    .orcamento-form {

        width: 100%;

        max-width: 100%;

        border-right: none;

        padding: 2rem;
    }

    .orcamento-progress {

        flex-wrap: wrap;

        gap: 8px;
    }

    .step-dot {

        width: 34px;
        height: 34px;
    }

    .grupo-checkbox label,
    .grupo-radio label {

        font-size: 20px;
    }

    .botoes-etapa {

        flex-direction: column;
    }

}

@media (max-width:768px) {

    .orcamento-form {

        padding: 1.8rem 1.5rem;
    }

    .orcamento-close {

        top: 16px;
        right: 18px;
        font-size: 28px;
    }

    .etapa-form h3 {

        font-size: 1.4rem;
    }

    .etapa-form label {

        font-size: .9rem;
    }

    .etapa-form input[type="text"],
    .etapa-form input[type="tel"],
    .etapa-form input[type="email"],
    .etapa-form input[type="number"],
    .etapa-form select,
    .etapa-form textarea {

        font-size: 16px;
        padding: 14px;
    }

    .grupo-checkbox,
    .grupo-radio {

        padding: 1rem;
    }

    .grupo-checkbox label,
    .grupo-radio label {

        font-size: 18px;
    }

    .btn-etapa {

        padding: 15px;
        font-size: 1rem;
    }

}

@media (max-width:576px) {

    .orcamento-form {

        padding: 1.5rem 1rem;
    }

    .orcamento-progress {

        margin: .5rem 0 2rem;
    }

    .step-dot {

        width: 30px;
        height: 30px;
        font-size: .9rem;
    }

    .step-line {

        width: 22px;
    }

    .etapa-form {

        gap: 1.1rem;
    }

    .etapa-form h3 {

        font-size: 1.25rem;
    }

    .grupo-checkbox label,
    .grupo-radio label {

        font-size: 16px;
    }

    .btn-etapa {

        width: 100%;
    }

}

@media (max-width:430px) {

    .orcamento-form {

        padding: 1.2rem .9rem;
    }

    .orcamento-close {

        font-size: 24px;
    }

    .etapa-form h3 {

        font-size: 1.1rem;
    }

    .grupo-checkbox label,
    .grupo-radio label {

        font-size: 15px;
    }

    .etapa-form input[type="text"],
    .etapa-form input[type="tel"],
    .etapa-form input[type="email"],
    .etapa-form input[type="number"],
    .etapa-form select,
    .etapa-form textarea {

        padding: 12px;
    }

}

/* ================= CONFIANÇA (experiência + cards + logos) ================= */

.Confianca {
    position: relative;
    padding-bottom: 6rem;
}

.confianca-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
}

.confianca-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.confianca-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 28, 72, .2) 0%, rgba(0, 28, 72, .9) 100%);
}

.confianca-cards {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: -6rem auto 0;
    padding: 0 4rem;
}

.card-confianca {
    background: #0c2c5e;
    border: 2px solid rgba(246, 218, 22, .15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
    transition: transform .3s ease, box-shadow .3s ease;
}

.card-confianca:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .5);
}

.card-confianca h3 {
    font-variant: small-caps;
    font-size: 1.3rem;
    color: #F6DA16;
    margin-bottom: 1rem;
}

.card-confianca p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .85;
}

.card-confianca.destaque {
    background: linear-gradient(160deg, #CE9B02 0%, #F6DA16 100%);
    border-color: transparent;
    transform: translateY(-1.5rem);
}

.card-confianca.destaque h3,
.card-confianca.destaque p {
    color: #001C48;
}

.card-confianca.destaque p {
    opacity: .9;
}

.card-confianca.destaque:hover {
    transform: translateY(calc(-1.5rem - 6px));
}

/* ---- faixa de logos deslizante ---- */

/* ---- cases de grandes clientes ---- */

.cases-clientes {
    margin-top: 5rem;
    padding: 4rem 0 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.cases-titulo {
    text-align: center;
    font-family: "Yantranamav", serif;
    /* font-style: italic; */
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #cfc321e8;
    margin-bottom: 2.5rem;
    font-variant: small-caps;
}

.cases-carrossel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.cases-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 3rem 1.5rem;

    /* esconde a barra de scroll nativa (o usuário navega pelas setas) */
    scrollbar-width: none;
}

.cases-track::-webkit-scrollbar {
    display: none;
}

.case-card {
    position: relative;
    flex: 0 0 320px;
    scroll-snap-align: start;

    background: rgba(255, 255, 255, .04);
    border: 2px solid rgba(246, 218, 22, .15);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .4);
}

.case-selo {
    align-self: flex-start;
    background-color: #F6DA16;
    color: #001C48;
    font-variant: small-caps;
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 999px;
}

.case-card h4 {
    font-variant: small-caps;
    font-size: 1.25rem;
    color: #F6DA16;
}

.case-card h5 {
    font-variant: small-caps;
    font-size: 1rem;
    font-weight: 500;
    opacity: .8;
    margin-top: -6px;
}

.case-card p {
    font-size: .95rem;
    line-height: 1.55;
    opacity: .85;
}

.case-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.case-card li {
    font-size: .92rem;
    line-height: 1.4;
    padding-left: 14px;
    border-left: 2px solid currentColor;
}

.case-grupo {
    font-size: .8rem;
    font-style: italic;
    opacity: .75;
    margin-top: auto;
}

/*  */
.case-card.destaque {
    flex-basis: 360px;
}

.case-card:nth-child(3n) {
    background: linear-gradient(160deg, #CE9B02 0%, #F6DA16 100%);
    border-color: transparent;
}

.case-card:nth-child(2n) .case-selo {
    background-color: #001C48;
    color: #F6DA16;
}

.case-card:nth-child(3n) h4,
.case-card:nth-child(3n) h5,
.case-card:nth-child(3n) p,
.case-card:nth-child(3n) .case-grupo {
    color: #001C48;
    opacity: 1;
}

.case-card:nth-child(3n) li {
    border-left-color: #001C48;
}

.cases-seta {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 2px solid rgba(246, 218, 22, .3);
    color: #F6DA16;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, transform .2s;
    z-index: 2;
}

.cases-seta:hover {
    background: #F6DA16;
    color: #001C48;
    transform: scale(1.08);
}

@media (max-width: 640px) {

    .case-card,
    .case-card.destaque {
        flex-basis: 260px;
    }
}

/* ================= SEÇÕES ESPECÍFICAS ================= */

.Atendimento img {
    width: 54px;
    height: auto;
}

.TecPol p {
    width: 50%;
}

.Solucoes img {
    width: 28px;
}

/* ================= CTA ================= */

.CTA {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.CTA a {
    text-align: center;
    text-decoration: none;
    padding: 16px;
    font-size: 24px;
    font-weight: 600;
    color: rgba(187, 131, 10, 0.849);
}

/* ================= HAMBURGUER ================= */

.hamburguer-btn {
    position: absolute;
    top: 100px;
    right: 1.5rem;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: #001C48;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
}

#btnOrcamentoMenu {
    display: inline-block;
    background-color: #CE9B02;
    color: #011535;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background-color 0.5s;
    opacity: 0.9;
    font-weight: 500;
    text-align: center;
}

#btnOrcamentoMenu:hover {
    background-color: #AD0016;
    color: whitesmoke;
}

.hamburguer-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: whitesmoke;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburguer-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburguer-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburguer-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hamburguer-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #001C48;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    z-index: 30;
    padding: 40px 30px;
    transition: right 0.4s ease;
}

.hamburguer-menu.active {
    right: 0;
}

.close-btn {
    background: none;
    border: none;
    color: whitesmoke;
    font-size: 32px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.hamburguer-menu ul {
    list-style: none;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hamburguer-menu ul a {
    color: whitesmoke;
    font-size: 25px;
    font-variant: small-caps;
    transition: color 0.3s, padding-left 0.3s;
}

.hamburguer-menu ul a:hover {
    color: #CE9B02;
    padding-left: 8px;
}

.hamburguer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 25;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}



.hamburguer-menu img {
    width: 28px;
    vertical-align: middle;
    margin-right: 16px;
}

.hamburguer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================================================
   RESPONSIVIDADE - HAMBÚRGUER / CTA
================================================== */

@media (max-width:992px) {

    /* Esconde o menu desktop */
    .grupamentoNavUl {
        display: none;
    }

    /* Mostra o botão hambúrguer */
    .hamburguer-btn {
        display: flex;
        top: 22px;
        right: 20px;
    }

    .CTA {
        padding: 0 1.5rem;
    }

    .CTA a {
        font-size: 20px;
    }

    .TecPol p {
        width: 100%;
    }

    .Atendimento img {
        width: 48px;
    }

}

@media (max-width:768px) {

    .CTA {
        padding: 0 1rem;
    }

    .CTA a {

        font-size: 18px;

        line-height: 1.5;
    }

    .hamburguer-menu {

        width: 300px;

        padding: 35px 24px;
    }

    .hamburguer-menu ul {

        gap: 36px;

        margin-top: 70px;
    }

    .hamburguer-menu ul a {

        font-size: 22px;
    }

    .hamburguer-menu img {

        width: 24px;

        margin-right: 12px;
    }

}

@media (max-width:576px) {

    .hamburguer-btn {

        width: 42px;
        height: 42px;

        right: 16px;
    }

    .hamburguer-menu {

        width: 100%;

        right: -100%;
    }

    .hamburguer-menu.active {

        right: 0;
    }

    .hamburguer-menu {

        padding: 30px 22px;
    }

    .hamburguer-menu ul {

        gap: 30px;
    }

    .hamburguer-menu ul a {

        font-size: 20px;
    }

    .close-btn {

        font-size: 30px;
    }

    .CTA a {

        font-size: 17px;
    }

    .Atendimento img {

        width: 42px;
    }

    .Solucoes img {

        width: 24px;
    }

}

@media (max-width:430px) {

    .hamburguer-btn {

        right: 12px;
        top: 20px;
    }

    .hamburguer-menu ul a {

        font-size: 18px;
    }

    .hamburguer-menu img {

        width: 20px;
    }

    .CTA a {

        font-size: 16px;
    }

}

/* ------------------------- FAQ ------------------------ */

/* ================= FAQ HERO ================= */

.faq-hero {
    display: flex;
    justify-content: center;
    padding: 7rem 1.5rem 4rem;
}

.faq-hero-conteudo {
    max-width: 780px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.faq-eyebrow {
    font-variant: small-caps;
    letter-spacing: 3px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F6DA16;
    background-color: #0c3d86;
    padding: 8px 22px;
    border-radius: 999px;
}

.faq-hero-conteudo h1 {
    font-size: 2.6rem;
    line-height: 1.3;
    font-weight: 900;
}

.faq-hero-conteudo h1 em {
    font-style: italic;
    color: #F6DA16;
}

.faq-hero-conteudo p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: .85;
}

/* ================= FAQ LISTA ================= */

.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem 6rem;
}

.faq-item {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(246, 218, 22, .12);
    transition: border-color .3s ease;
}

.faq-item:hover {
    border-color: rgba(246, 218, 22, .3);
}

.faq-item[open] {
    border-color: #F6DA16;
}

/* remove o marcador nativo do <summary> */
.faq-pergunta {
    list-style: none;
}

.faq-pergunta::-webkit-details-marker,
.faq-pergunta::marker {
    display: none;
    content: "";
}

.faq-pergunta {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    padding: 1.6rem 2rem;
    color: whitesmoke;
    font-family: inherit;
    user-select: none;

    background-color: rgba(255, 255, 255, .04);
    transition: background-color .3s ease;
}

.faq-pergunta:hover {
    background-color: rgba(255, 255, 255, .07);
}

.faq-item[open] .faq-pergunta {
    background-color: #0c3d86;
}

.faq-numero {
    flex-shrink: 0;
    font-family: "Bodoni Moda", serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #CE9B02;
    min-width: 40px;
    transition: color .3s ease;
}

.faq-item[open] .faq-numero {
    color: #F6DA16;
}

.faq-texto {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
}

/* seta apontando para a resposta, gira ao abrir */
.faq-icone {
    flex-shrink: 0;
    position: relative;
    width: 28px;
    height: 28px;
}

.faq-icone::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 3px solid #F6DA16;
    border-bottom: 3px solid #F6DA16;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform .35s ease;
}

.faq-item[open] .faq-icone::before {
    transform: translate(-50%, -35%) rotate(225deg);
}

/* corpo da resposta: fundo diferente da pergunta */
.faq-resposta {
    display: grid;
    grid-template-rows: 0fr;
    background-color: rgba(0, 0, 0, .18);
    transition: grid-template-rows .4s ease;
}

.faq-resposta>p {
    overflow: hidden;
    padding: 0 2rem;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: .85;
    transition: padding .4s ease;
}

.faq-item[open] .faq-resposta {
    grid-template-rows: 1fr;
}

.faq-item[open] .faq-resposta>p {
    padding: 1.6rem 2rem;
}

/* fallback para navegadores sem suporte a grid-template-rows animável */
@supports not (grid-template-rows: 0fr) {
    .faq-resposta {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    .faq-item[open] .faq-resposta {
        max-height: 600px;
    }

    .faq-resposta>p {
        padding: 1.6rem 2rem;
    }
}

/* ================= FAQ CTA ================= */

.faq-cta {
    display: flex;
    justify-content: center;
    padding: 2rem 1.5rem 7rem;
}

.faq-cta-conteudo {
    max-width: 640px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 3rem 3rem;
    border-radius: 28px;
    background: linear-gradient(160deg, #CE9B02 0%, #F6DA16 100%);
    color: #001C48;
}

.faq-cta-conteudo h2 {
    font-variant: small-caps;
    font-size: 1.9rem;
    font-weight: 900;
}

.faq-cta-conteudo p {
    font-size: 1.1rem;
    opacity: .9;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 14px;
    background-color: #001C48;
    color: #F6DA16;
    font-variant: small-caps;
    font-size: 1.15rem;
    font-weight: 700;
    border: 3px solid #001C48;
    transition: background-color .3s ease, color .3s ease, transform .2s ease;
}

.faq-cta-btn:hover {
    background-color: transparent;
    color: #001C48;
    transform: translateY(-3px);
}

/* ==================================================
   RESPONSIVIDADE - FAQ
================================================== */

@media (max-width:1200px) {

    .faq-hero {
        padding: 6rem 2rem 4rem;
    }

    .faq-lista {
        max-width: 95%;
    }

}

@media (max-width:992px) {

    .faq-hero {
        padding: 5rem 2rem 3rem;
    }

    .faq-hero-conteudo h1 {
        font-size: 2.2rem;
    }

    .faq-hero-conteudo p {
        font-size: 1.05rem;
    }

    .faq-pergunta {
        padding: 1.4rem 1.6rem;
    }

    .faq-texto {
        font-size: 1.1rem;
    }

    .faq-resposta>p {
        font-size: 1rem;
    }

    .faq-cta-conteudo {
        max-width: 100%;
        padding: 2.5rem;
    }

}

@media (max-width:768px) {

    .faq-hero {

        padding: 4rem 1.5rem 2.5rem;
    }

    .faq-eyebrow {

        font-size: .95rem;

        padding: 7px 18px;
    }

    .faq-hero-conteudo h1 {

        font-size: 1.8rem;

        line-height: 1.35;
    }

    .faq-hero-conteudo p {

        font-size: 1rem;
    }

    .faq-lista {

        padding: 0 1rem 4rem;
    }

    .faq-item {

        border-radius: 16px;
    }

    .faq-pergunta {

        gap: 1rem;

        padding: 1.2rem;
    }

    .faq-numero {

        min-width: 32px;

        font-size: 1.2rem;
    }

    .faq-texto {

        font-size: 1rem;
    }

    .faq-icone {

        width: 22px;

        height: 22px;
    }

    .faq-resposta>p {

        padding: 0 1.2rem;

        font-size: .95rem;

        line-height: 1.7;
    }

    .faq-item[open] .faq-resposta>p {

        padding: 1.2rem;
    }

    .faq-cta {

        padding: 1rem 1rem 4rem;
    }

    .faq-cta-conteudo {

        border-radius: 20px;

        padding: 2rem 1.5rem;
    }

    .faq-cta-conteudo h2 {

        font-size: 1.5rem;
    }

    .faq-cta-conteudo p {

        font-size: 1rem;
    }

    .faq-cta-btn {

        width: 100%;

        padding: 15px;

        font-size: 1rem;
    }

}

@media (max-width:576px) {

    .faq-hero {

        padding: 3rem 1rem 2rem;
    }

    .faq-hero-conteudo {

        gap: 1rem;
    }

    .faq-hero-conteudo h1 {

        font-size: 1.55rem;
    }

    .faq-lista {

        padding: 0 .8rem 3rem;
    }

    .faq-pergunta {

        padding: 1rem;
    }

    .faq-texto {

        font-size: .95rem;
    }

    .faq-numero {

        font-size: 1rem;
    }

    .faq-resposta>p {

        font-size: .9rem;
    }

    .faq-cta-conteudo {

        padding: 1.7rem 1.2rem;
    }

    .faq-cta-conteudo h2 {

        font-size: 1.3rem;
    }

}

@media (max-width:430px) {

    .faq-eyebrow {

        font-size: .85rem;

        letter-spacing: 2px;
    }

    .faq-hero-conteudo h1 {

        font-size: 1.35rem;
    }

    .faq-texto {

        font-size: .9rem;
    }

    .faq-cta-conteudo h2 {

        font-size: 1.15rem;
    }

    .faq-cta-btn {

        font-size: .95rem;
    }

}

/* ================= RESPONSIVO ================= */
/* 
@media (max-width: 640px) {
    .faq-hero-conteudo h1 {
        font-size: 2rem;
    }

    .faq-pergunta {
        padding: 1.2rem 1.4rem;
        gap: 1rem;
    }

    .faq-texto {
        font-size: 1.05rem;
    }

    .faq-item[open] .faq-resposta>p {
        padding: 1.2rem 1.4rem;
    }
} */

/* --------------FOOTER----------------- */
footer {
    background: #0c2c5e;
    margin-top: 4rem;
    border-top: 2px solid transparent;
    border-image: linear-gradient(to right,
            transparent 0%,
            #ce9b02a6 20%,
            #f6dc16dc 50%,
            #CE9B02 80%,
            transparent 100%) 1;
}

.footerContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    min-height: 40vh;
    padding: 4rem 3rem;
    text-align: center;
    gap: 2rem;
}

/* ----DIV111 · CONTATO / ÍCONES----- */
.divfooter1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.4em;
}

.divfooter1>p {
    font-variant: small-caps;
    letter-spacing: 3px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F6DA16;
}

.divfooter1 a img {
    width: 60px;
    height: auto;
    transition: transform .3s ease, opacity .3s ease;
}

.divfooter1 a:hover img {
    transform: scale(1.20);
}

.divfooter1 div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8em;
}

/* ----DIV222 · LOGO / MARCA------- */
.divfooter2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.divfooter2 h1 {
    font-family: "Yantramanav", sans-serif;
    font-variant: small-caps;
    font-style: italic;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #F6DA16;
}

.divfooter2 a img {
    width: 100px;
    transition: transform .3s ease;
}

.divfooter2 a:hover img {
    transform: rotate(8deg) scale(1.08);
}

.divfooter2 p {
    font-family: "Bodoni Moda", serif;
    font-size: 1rem;
    letter-spacing: .5px;
    color: rgba(245, 245, 245, 0.801);
}

/* ----DIV333 · HORÁRIO / QR CODE------ */
.divfooter3 {
    display: flex;
    flex-direction: column;
    width: 20%;
    min-width: 220px;
    justify-content: center;
    align-items: center;
    gap: 1.2em;
}

.divfooter3>p {
    font-variant: small-caps;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 700;
    color: #F6DA16;
}

.divfooter3 div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8em;
    background: rgba(255, 255, 255, .04);
    border: 2px solid rgba(246, 218, 22, .15);
    border-radius: 20px;
    padding: 1.4rem;
}

.divfooter3 div p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(245, 245, 245, 0.801);
}

.divfooter3 img {
    width: 100px;
}


.DEV p {
    font-size: 12px;
}

.confianca-wrapper {
    position: relative;
}

.confianca-seta {
    display: none;
    /* desktop */
}

/* ==================================================
   RESPONSIVIDADE - FOOTER
================================================== */

@media (max-width:1200px) {

    .footerContainer {
        padding: 3rem 2rem;
    }

    .divfooter3 {
        width: 28%;
    }

}

@media (max-width:992px) {

    .footerContainer {

        flex-direction: column;

        gap: 3rem;

        padding: 3rem 2rem;
    }

    .divfooter1,
    .divfooter2,
    .divfooter3 {

        width: 100%;
    }

    .divfooter3 {

        min-width: 0;
    }

}

@media (max-width:768px) {

    footer {

        margin-top: 3rem;
    }

    .footerContainer {

        padding: 2.5rem 1.5rem;
    }

    .divfooter1 div {

        gap: 1.3rem;

        flex-wrap: wrap;
    }

    .divfooter1 a img {

        width: 52px;
    }

    .divfooter2 a img {

        width: 90px;
    }

    .divfooter2 h1 {

        font-size: 1.8rem;
    }

    .divfooter3 div {

        width: 100%;
    }

    .divfooter3 img {

        width: 90px;
    }

}

@media (max-width:576px) {

    .footerContainer {

        padding: 2rem 1rem;
    }

    .divfooter1>p,
    .divfooter3>p {

        font-size: .95rem;
    }

    .divfooter1 a img {

        width: 46px;
    }

    .divfooter2 h1 {

        font-size: 1.5rem;
    }

    .divfooter2 p {

        font-size: .9rem;
    }

    .divfooter3 div {

        padding: 1.2rem;
    }

    .divfooter3 img {

        width: 80px;
    }

}

@media (max-width:430px) {

    .divfooter1 div {

        gap: 1rem;
    }

    .divfooter1 a img {

        width: 42px;
    }

    .divfooter2 a img {

        width: 80px;
    }

    .divfooter2 h1 {

        font-size: 1.35rem;
    }

    .divfooter3 div p {

        font-size: .9rem;
    }

    .DEV p {

        font-size: 10px;
    }

}

@media (max-width:768px) {

    .confianca-cards-wrapper {
        position: relative;
        width: 100%;
    }

    .confianca-cards {
        display: flex;
        flex-direction: column;
        overflow-x: auto;
        gap: 20px;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .confianca-cards::-webkit-scrollbar {
        display: none;
    }

    .confianca-cards .card-confianca {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
    }

    .confianca-seta {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: #ce9b02;
        color: #fff;
        font-size: 28px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 5;
    }

    .confianca-seta-esquerda {
        left: -8px;
    }

    .confianca-seta-direita {
        right: -8px;
    }
}