/* =========================================================
   VARIÁVEIS
========================================================= */

:root {
    --azul: #0b365d;
    --azul-escuro: #061d35;
    --azul-claro: #2f668d;

    --vinho: #8b2c31;
    --vinho-escuro: #6f1f26;

    --texto: #10243a;
    --texto-claro: #5d6d7e;

    --branco: #ffffff;

    --cinza: #f5f7f9;
    --cinza-2: #edf1f4;

    --linha: #dde4ea;

    --sombra:
        0 18px 45px
        rgba(6, 29, 53, .12);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--texto);
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

section {
    scroll-margin-top: 90px;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    background: rgba(255, 255, 255, .97);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid
        rgba(11, 54, 93, .10);

    z-index: 1000;

    transition: .3s;
}

.header.scrolled {
    box-shadow:
        0 5px 25px
        rgba(6, 29, 53, .10);
}

.header-inner {
    width: min(1350px, calc(100% - 40px));

    height: 80px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   LOGO HEADER
========================================================= */

.header-logo {
    display: flex;
    align-items: center;

    max-width: calc(100% - 75px);

    min-width: 0;

    flex-shrink: 1;

    overflow: hidden;
}

.header-logo img {
    display: block;

    width: 175px;
    max-width: 100%;

    height: 52px;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   BOTÃO HAMBÚRGUER
========================================================= */

.menu-button {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border: 0;

    border-radius: 10px;

    background: var(--azul);

    cursor: pointer;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 5px;

    transition: .25s;

    position: relative;

    z-index: 1002;
}

.menu-button:hover {
    background: var(--vinho);
}

.menu-button span {
    width: 23px;
    height: 2px;

    background: #ffffff;

    border-radius: 20px;

    transition: .3s;
}

.menu-button.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   OVERLAY
========================================================= */

.menu-overlay {
    position: fixed;

    inset: 0;

    background:
        rgba(2, 13, 24, .58);

    backdrop-filter: blur(3px);

    z-index: 998;

    opacity: 0;

    visibility: hidden;

    transition: .3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MENU LATERAL
========================================================= */

.side-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 90vw);
    height: 100vh;

    background:
        linear-gradient(
            160deg,
            var(--azul-escuro),
            var(--azul)
        );

    z-index: 999;

    transform: translateX(105%);

    transition:
        transform .35s ease;

    padding:
        120px
        35px
        40px;

    overflow-y: auto;
}

.side-menu.active {
    transform: translateX(0);
}

.menu-title {
    color:
        rgba(255, 255, 255, .55);

    text-transform: uppercase;

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.menu-links {
    list-style: none;
}

.menu-links li {
    border-bottom:
        1px solid
        rgba(255, 255, 255, .10);
}

.menu-links a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px 0;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-weight: 600;

    font-size: 16px;

    transition: .25s;
}

.menu-links a::after {
    content: "›";

    font-size: 26px;

    color: #c66a6f;
}

.menu-links a:hover {
    color: #ffffff;
    padding-left: 7px;
}

.menu-contact {
    margin-top: 35px;

    padding: 22px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .08);

    color: #ffffff;
}

.menu-contact small {
    color:
        rgba(255, 255, 255, .65);
}

.menu-contact strong {
    display: block;

    margin-top: 5px;

    overflow-wrap: anywhere;
}


.menu-contact a {
    display: inline-block;

    margin-top: 10px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.45;

    overflow-wrap: anywhere;

    transition: opacity .2s ease;
}


.menu-contact a:hover {
    opacity: .78;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding-top: 80px;

    min-height: 760px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,

            #ffffff 0%,
            #ffffff 47%,

            #edf2f6 47.2%,

            #0a3156 47.4%,

            #061d35 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .4;

    background-image:
        linear-gradient(
            rgba(11, 54, 93, .05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 54, 93, .05) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.hero-inner {
    position: relative;

    z-index: 2;

    width: min(1370px, calc(100% - 60px));

    margin: auto;

    min-height: 680px;

    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 70px;

    align-items: center;

    padding:
        55px 0
        100px;
}


/* =========================================================
   HERO TEXTO
========================================================= */

.hero-logo {
    width: min(310px, 80%);

    margin-bottom: 35px;
}

.hero-logo img {
    display: block;

    width: 100%;
    height: auto;

    mix-blend-mode: multiply;
}

.accent {
    display: flex;

    gap: 7px;

    margin-bottom: 17px;
}

.accent span {
    width: 45px;
    height: 4px;

    border-radius: 5px;
}

.accent span:first-child {
    background: var(--vinho);
}

.accent span:last-child {
    background: var(--azul);
}

.hero h1 {
    font-family: "Montserrat", sans-serif;

    font-size: clamp(38px, 4vw, 63px);

    line-height: 1.03;

    letter-spacing: -.04em;

    color: var(--azul-escuro);

    max-width: 650px;
}

.hero h1 span {
    color: var(--vinho);
}

.hero-description {
    font-size: 18px;

    line-height: 1.65;

    color: #43576a;

    margin-top: 25px;

    max-width: 600px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}


/* =========================================================
   BOTÕES
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 7px;

    font-weight: 700;

    transition: .25s;

    cursor: pointer;
}

.btn-primary {
    color: #ffffff;

    background: var(--vinho);

    border:
        2px solid
        var(--vinho);
}

.btn-primary:hover {
    background: var(--vinho-escuro);

    border-color: var(--vinho-escuro);

    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--azul);

    border:
        2px solid
        var(--azul);

    background: transparent;
}

.btn-secondary:hover {
    background: var(--azul);

    color: #ffffff;
}


/* =========================================================
   VÍDEO
========================================================= */

.video-area {
    min-width: 0;
}

.video-label {
    color:
        rgba(255, 255, 255, .75);

    text-transform: uppercase;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.video-frame {
    position: relative;

    overflow: hidden;

    border-radius: 17px;

    border:
        2px solid
        rgba(255, 255, 255, .65);

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, .32);

    background: #000;
}

#videoInstitucional {
    width: 100%;

    display: block;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    background: #000;
}

.video-caption {
    color:
        rgba(255, 255, 255, .82);

    margin-top: 18px;

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;
}

.video-caption-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 50%;

    background: var(--vinho);

    display: grid;

    place-items: center;

    color: #ffffff;

    font-size: 12px;
}


/* =========================================================
   DESTAQUES
========================================================= */

.highlights-wrap {
    position: relative;

    z-index: 5;

    margin-top: -58px;
}

.highlights {
    background: #ffffff;

    border-radius: 16px;

    box-shadow: var(--sombra);

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    overflow: hidden;

    border:
        1px solid
        var(--linha);
}

.highlight {
    padding: 28px 22px;

    display: flex;

    gap: 15px;

    align-items: center;
}

.highlight + .highlight {
    border-left:
        1px solid
        var(--linha);
}

.highlight-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 24px;

    background: var(--azul);
}

.highlight:nth-child(even) .highlight-icon {
    background: var(--vinho);
}

.highlight strong {
    display: block;

    font-family: "Montserrat", sans-serif;

    color: var(--azul-escuro);

    font-size: 15px;

    margin-bottom: 4px;
}

.highlight p {
    color: var(--texto-claro);

    font-size: 13px;

    line-height: 1.45;
}


/* =========================================================
   TÍTULOS
========================================================= */

.section-header {
    max-width: 750px;

    margin-bottom: 45px;
}

.section-label {
    display: inline-block;

    color: var(--vinho);

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 12px;

    margin-bottom: 12px;
}

.section-header h2 {
    font-family: "Montserrat", sans-serif;

    color: var(--azul-escuro);

    font-size: clamp(31px, 4vw, 46px);

    line-height: 1.12;

    letter-spacing: -.03em;
}

.section-header p {
    color: var(--texto-claro);

    font-size: 17px;

    line-height: 1.7;

    margin-top: 17px;
}


/* =========================================================
   SOBRE
========================================================= */

.sobre {
    padding:
        130px
        0
        100px;

    background: #ffffff;
}

.sobre-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 85px;

    align-items: center;
}

.sobre-content p {
    font-size: 17px;

    color: var(--texto-claro);

    line-height: 1.75;

    margin-bottom: 18px;
}

.sobre-points {
    margin-top: 30px;

    display: grid;

    gap: 15px;
}

.sobre-point {
    display: flex;

    gap: 13px;

    align-items: flex-start;
}

.check {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--vinho);

    color: #ffffff;

    font-weight: bold;

    margin-top: 1px;
}

.sobre-point strong {
    color: var(--azul-escuro);
}


.sobre-visual {
    width: 100%;

    min-height: 0;

    padding: 0;

    margin: 0;

    background: transparent;

    border: none;

    border-radius: 0;

    box-shadow: none;

    overflow: hidden;
}


.sobre-visual-imagem {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;

    padding: 0;

    border: none;
    border-radius: 16px;

    object-fit: contain;
}


/* MOBILE */

@media (max-width: 720px) {

    .sobre-visual {
        margin-top: 20px;

        background: transparent;
    }


    .sobre-visual-imagem {
        width: 100%;
        height: auto;

        border-radius: 12px;
    }

}

/* =========================================================
   NÚMEROS
========================================================= */

.numeros {
    background: var(--azul-escuro);

    color: #ffffff;

    padding: 75px 0;
}

.numeros-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.numero {
    text-align: center;

    padding: 20px;
}

.numero + .numero {
    border-left:
        1px solid
        rgba(255, 255, 255, .15);
}

.numero strong {
    display: block;

    font-family: "Montserrat", sans-serif;

    font-size: clamp(36px, 5vw, 53px);

    color: #ffffff;
}

.numero span {
    color: #aebfce;

    font-size: 14px;
}

.numero strong span {
    color: #ffffff;

    font-size: inherit;
}

.numero small {
    color: #c66a6f;

    font-size: 22px;

    font-weight: bold;
}


/* =========================================================
   SERVIÇOS
========================================================= */

.servicos {
    padding: 105px 0;

    background: var(--cinza);
}

.servicos-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.servico-card {
    position: relative;

    background: #ffffff;

    border:
        1px solid
        var(--linha);

    border-radius: 13px;

    padding: 32px;

    min-height: 245px;

    transition: .3s;

    overflow: hidden;
}

.servico-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--vinho);

    transform: scaleX(0);

    transform-origin: left;

    transition: .3s;
}

.servico-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--sombra);
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-icon {
    width: 57px;
    height: 57px;

    border-radius: 10px;

    display: grid;

    place-items: center;

    background: var(--azul);

    color: #ffffff;

    font-size: 25px;

    margin-bottom: 24px;
}

.servico-card:nth-child(even) .servico-icon {
    background: var(--vinho);
}

.servico-card h3 {
    font-family: "Montserrat", sans-serif;

    font-size: 18px;

    color: var(--azul-escuro);

    margin-bottom: 12px;
}

.servico-card p {
    color: var(--texto-claro);

    line-height: 1.6;

    font-size: 14px;
}


/* =========================================================
   PORTFÓLIO / CARROSSEL
========================================================= */

.portfolio {
    padding: 100px 0;
    background: #f5f7f9;
    overflow: hidden;
}


/* CABEÇALHO */

.portfolio-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}


.portfolio-top .section-header {
    margin-bottom: 0;
}


.portfolio-top .section-header p {
    max-width: 600px;
}


/* =========================================================
   CARROSSEL
========================================================= */

.portfolio-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;

    touch-action: pan-y;
}


.portfolio-track {
    display: flex;
    gap: 22px;

    transition:
        transform .65s
        cubic-bezier(.22,.61,.36,1);

    will-change: transform;
}


/* =========================================================
   SLIDE
========================================================= */

.portfolio-slide {
    position: relative;

    flex:
        0
        0
        calc((100% - 44px) / 3);

    height: 420px;

    overflow: hidden;

    border-radius: 18px;

    background: #061d35;
}


/* FOTO */

.portfolio-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    user-select: none;
    -webkit-user-drag: none;

    transition:
        transform .7s ease;
}


.portfolio-slide:hover img {
    transform: scale(1.06);
}


/* SOMBRA SOBRE A FOTO */

.portfolio-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,

            transparent 35%,

            rgba(4, 20, 37, .22) 55%,

            rgba(4, 20, 37, .92) 100%
        );

    pointer-events: none;
}


/* =========================================================
   INFORMAÇÃO DA OBRA
========================================================= */

.portfolio-slide-info {
    position: absolute;

    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        28px
        25px;
}


.portfolio-slide-info h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 20px;

    font-weight: 700;
}


.portfolio-slide-info span {
    color: rgba(255,255,255,.82);

    font-size: 14px;

    font-weight: 500;
}


/* LINHA DECORATIVA */

.portfolio-slide-info::before {
    content: "";

    display: block;

    width: 45px;

    height: 3px;

    margin-bottom: 12px;

    border-radius: 10px;

    background: #8b2c31;
}


/* =========================================================
   SETAS
========================================================= */

.portfolio-arrow {
    position: absolute;

    z-index: 10;

    top: 50%;

    transform:
        translateY(-50%);

    width: 52px;

    height: 52px;

    border: none;

    border-radius: 50%;

    display: grid;

    place-items: center;

    cursor: pointer;

    background:
        rgba(255,255,255,.94);

    color: #061d35;

    font-size: 36px;

    line-height: 1;

    box-shadow:
        0
        8px
        30px
        rgba(0,0,0,.15);

    transition:
        all .25s ease;
}


.portfolio-arrow:hover {
    color: #ffffff;

    background: #8b2c31;

    transform:
        translateY(-50%)
        scale(1.06);
}


.portfolio-prev {
    left: 18px;
}


.portfolio-next {
    right: 18px;
}


/* =========================================================
   INDICADORES
========================================================= */

.portfolio-dots {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 27px;
}


.portfolio-dot {
    width: 9px;

    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    background: #bcc7d0;

    transition: .3s ease;
}


.portfolio-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #8b2c31;
}


/* BOTÃO EXCLUSIVO DO CELULAR */

.portfolio-mobile-button {
    display: none;

    margin-top: 30px;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .portfolio-slide {
        flex:
            0
            0
            calc((100% - 22px) / 2);

        height: 380px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 720px) {

    .portfolio {
        padding:
            75px
            0;
    }


    .portfolio-top {
        display: block;

        margin-bottom: 30px;
    }


    /*
     * ESCONDE O BOTÃO DO CABEÇALHO
     */

    .portfolio-top > .btn {
        display: none;
    }


    /*
     * UMA FOTO POR VEZ
     */

    .portfolio-slide {
        flex:
            0
            0
            100%;

        height: 360px;
    }


    .portfolio-track {
        gap: 0;
    }


    .portfolio-slide-info {
        padding:
            24px
            20px;
    }


    .portfolio-slide-info h3 {
        font-size: 18px;
    }


    /*
     * SETAS MENORES
     */

    .portfolio-arrow {
        width: 43px;

        height: 43px;

        font-size: 30px;
    }


    .portfolio-prev {
        left: 10px;
    }


    .portfolio-next {
        right: 10px;
    }


    .portfolio-mobile-button {
        display: block;
    }


    .portfolio-mobile-button .btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   CLIENTES E PARCEIROS
========================================================= */

.parceiros {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #f7f9fb 0%,
            #ffffff 100%
        );

    overflow: hidden;
}


.parceiros .section-header {
    max-width: 720px;

    margin-bottom: 36px;
}


.parceiros-carousel {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding:
        8px
        0
        14px;
}


/*
 * A largura "max-content" é necessária
 * para o movimento contínuo do carrossel
 * criado no index.html.
 */
.parceiros-track {
    display: flex;

    align-items: center;

    gap: 18px;

    width: max-content;

    will-change: transform;
}


.parceiro-item {
    flex:
        0 0
        220px;

    width: 220px;
    height: 118px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: #ffffff;

    border:
        1px solid
        #e1e7ec;

    border-radius: 14px;

    text-decoration: none;

    box-shadow:
        0 8px 24px
        rgba(6, 29, 53, .06);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


.parceiro-item:hover {
    transform:
        translateY(-4px);

    border-color:
        #c7d2dc;

    box-shadow:
        0 14px 30px
        rgba(6, 29, 53, .11);
}


.parceiro-item img {
    display: block;

    width: 100%;
    max-width: 170px;

    height: 72px;

    object-fit: contain;

    object-position: center;

    filter:
        grayscale(15%);

    transition:
        filter .2s ease,
        transform .2s ease;
}


.parceiro-item:hover img {
    filter:
        grayscale(0);

    transform:
        scale(1.03);
}


/* =========================================================
   CLIENTES E PARCEIROS - MOBILE
========================================================= */

@media (max-width: 720px) {

    .parceiros {
        padding:
            68px
            0;
    }


    .parceiros .section-header {
        margin-bottom:
            26px;
    }


    /*
     * No celular o movimento automático é removido
     * e a navegação passa a ser pelo toque.
     */
    .parceiros-carousel {
        overflow-x:
            auto;

        overflow-y:
            hidden;

        scroll-snap-type:
            x mandatory;

        scroll-behavior:
            smooth;

        scrollbar-width:
            none;

        -webkit-overflow-scrolling:
            touch;
    }


    .parceiros-carousel::-webkit-scrollbar {
        display: none;
    }


    .parceiros-track {
        width:
            max-content;

        padding:
            4px
            14px
            12px;

        gap:
            14px;

        transform:
            none !important;
    }


    .parceiro-item {
        flex:
            0 0
            42vw;

        width:
            42vw;

        min-width:
            145px;

        max-width:
            190px;

        height:
            104px;

        padding:
            14px;

        scroll-snap-align:
            center;

        scroll-snap-stop:
            always;
    }


    .parceiro-item img {
        max-width:
            135px;

        height:
            58px;
    }

}


/* =========================================================
   CLIENTES E PARCEIROS - ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .parceiros-track {
        transform:
            none !important;
    }


    .parceiro-item,
    .parceiro-item img {
        transition:
            none;
    }

}


/* =========================================================
   TRABALHE CONOSCO
========================================================= */

.carreiras {
    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            var(--azul-escuro),
            var(--azul)
        );

    color: #ffffff;

    position: relative;

    overflow: hidden;
}

.carreiras::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: var(--vinho);

    opacity: .15;

    right: -160px;

    top: -190px;
}

.carreiras-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    align-items: center;

    gap: 60px;
}

.carreiras h2 {
    font-family: "Montserrat", sans-serif;

    font-size: clamp(31px, 4vw, 47px);

    line-height: 1.1;
}

.carreiras p {
    color: #d5e1eb;

    line-height: 1.7;

    max-width: 700px;

    margin-top: 18px;

    font-size: 17px;
}

.carreiras .btn {
    white-space: nowrap;

    background: #ffffff;

    color: var(--azul-escuro);

    border:
        2px solid
        #ffffff;
}

.carreiras .btn:hover {
    background: var(--vinho);

    border-color: var(--vinho);

    color: #ffffff;
}


/* =========================================================
   CONTATO
========================================================= */

.contato {
    background: #ffffff;

    padding: 100px 0;
}

.contato-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;
}

.contato-botao {
    margin-top: 30px;
}

.contact-cards {
    display: grid;

    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 17px;

    width: 100%;
    padding: 20px 22px;

    /* REMOVE A BORDA */
    border: none;

    /* FUNDO SUAVE */
    background: #ffffff;

    border-radius: 14px;

    /* SOMBRA LEVE */
    box-shadow:
        0 8px 25px rgba(6, 29, 53, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 32px rgba(6, 29, 53, 0.13);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    border-radius: 12px;

    background: rgba(8, 40, 74, 0.08);

    color: var(--azul);

    font-size: 20px;
    font-weight: 700;
}

.contact-card strong {
    display: block;

    margin-bottom: 4px;

    color: var(--azul-escuro);

    font-size: 15px;
    font-weight: 700;
}


.contact-card span,
.contact-card a {
    color: var(--texto-claro);

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;
}


.contact-card a:hover {
    color: var(--vinho);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #05182a;

    color: #ffffff;

    padding:
        65px 0
        25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        .8fr
        .8fr;

    gap: 55px;

    padding-bottom: 45px;
}

.footer-logo {
    display: block;

    width: 190px;

    max-width: 100%;

    height: auto;

    padding: 13px;

    border-radius: 6px;

    background: #ffffff;

    margin-bottom: 20px;
}

.footer-description {
    color: #9fb0bf;

    line-height: 1.65;

    max-width: 430px;

    font-size: 14px;
}

footer h4 {
    font-family: "Montserrat", sans-serif;

    font-size: 15px;

    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #aab9c6;

    font-size: 14px;

    transition: .2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    padding-top: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, .10);

    text-align: center;

    color: #8296a7;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        background: #ffffff;
    }


    .hero-inner {
        width: min(
            900px,
            calc(100% - 40px)
        );

        grid-template-columns: 1fr;

        padding-top: 55px;

        gap: 45px;
    }


    .hero-copy {
        text-align: center;
    }


    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }


    .accent {
        justify-content: center;
    }


    .hero h1,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {
        justify-content: center;
    }


    /* =====================================================
       VÍDEO

       Mantém o vídeo dentro da única coluna do grid.
       Não existe mais fundo azul atrás do player.
    ===================================================== */

    .video-area {
        position: relative;

        width: 100%;
        min-width: 0;

        margin: 0;

        padding:
            20px
            0
            65px;

        background: transparent;
    }


    .video-area::before,
    .video-area::after {
        content: none !important;

        display: none !important;
    }


    .video-frame {
        width: 100%;

        margin: 0;

        background: #000;

        border-radius: 17px;

        overflow: hidden;
    }


    #videoInstitucional {
        display: block;

        width: 100%;

        max-width: 100%;

        height: auto;

        aspect-ratio: 16 / 9;

        object-fit: cover;
    }


    .video-caption {
        justify-content: center;

        color: var(--texto-claro);
    }


    /* =====================================================
       DESTAQUES
    ===================================================== */

    .highlights {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .highlight:nth-child(3) {
        border-left: 0;

        border-top:
            1px solid
            var(--linha);
    }


    .highlight:nth-child(4) {
        border-top:
            1px solid
            var(--linha);
    }


    /* =====================================================
       SOBRE
    ===================================================== */

    .sobre-grid {
        gap: 50px;
    }


    /* =====================================================
       SERVIÇOS
    ===================================================== */

    .servicos-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    /* =====================================================
       HEADER
    ===================================================== */

    .header {
        height: 70px;
    }


    .header-inner {
        height: 70px;

        width: calc(100% - 28px);

        gap: 14px;
    }


    .header-logo {
        max-width: calc(100% - 60px);

        overflow: hidden;
    }


    .header-logo img {
        width: 145px;

        max-width: 100%;

        height: 44px;

        object-fit: contain;

        object-position: left center;
    }


    .menu-button {
        width: 43px;
        height: 43px;

        flex: 0 0 43px;
    }


    .side-menu {
        width: min(340px, 88vw);

        padding:
            105px
            25px
            35px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        padding-top: 70px;

        background: #ffffff;
    }


    .hero-inner {
        width: calc(100% - 28px);

        /*
         * Garante explicitamente uma única coluna.
         */
        grid-template-columns: minmax(0, 1fr);

        padding-top: 40px;

        gap: 32px;
    }


    /*
     * Importante para impedir que qualquer
     * filho force uma segunda largura/coluna.
     */

    .hero-copy,
    .video-area {
        width: 100%;

        min-width: 0;

        max-width: 100%;
    }


    .hero-logo {
        width: 225px;

        max-width: 80%;

        margin-bottom: 28px;
    }


    .hero h1 {
        font-size: 38px;
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    /* =====================================================
       VÍDEO MOBILE
       SOMENTE O PLAYER
    ===================================================== */

    .video-area {
        position: relative;

        width: 100%;

        min-width: 0;

        max-width: 100%;

        margin: 0;

        padding:
            10px
            0
            55px;

        background: transparent;

        overflow: visible;
    }


    .video-area::before,
    .video-area::after {
        content: none !important;

        display: none !important;
    }


    .video-frame {
        display: block;

        width: 100%;

        max-width: 100%;

        margin: 0;

        border-radius: 12px;

        overflow: hidden;

        background: #000;

        /*
         * Sombra mais leve,
         * sem criar aparência de card.
         */
        box-shadow:
            0 10px 30px
            rgba(6, 29, 53, .14);

        border:
            1px solid
            rgba(6, 29, 53, .10);
    }


    #videoInstitucional {
        display: block;

        width: 100%;

        max-width: 100%;

        height: auto;

        aspect-ratio: 16 / 9;

        object-fit: cover;

        background: #000;
    }


    .video-caption {
        justify-content: center;

        padding: 0;

        margin-top: 12px;

        color: var(--texto-claro);

        text-align: center;
    }


    /* =====================================================
       DESTAQUES
    ===================================================== */

    .highlights-wrap {
        margin-top: -53px;
    }


    .highlights {
        grid-template-columns: 1fr;
    }


    .highlight + .highlight {
        border-left: 0;

        border-top:
            1px solid
            var(--linha);
    }


    /* =====================================================
       SOBRE
    ===================================================== */

    .sobre {
        padding:
            105px
            0
            75px;
    }


    .sobre-grid {
        grid-template-columns: minmax(0, 1fr);

        gap: 45px;
    }


    .sobre-content,
    .sobre-visual {
        min-width: 0;

        max-width: 100%;
    }


    .sobre-visual {
        min-height: 0;

        width: 100%;

        padding: 0;

        margin-top: 20px;

        background: transparent;
    }


    .sobre-visual-imagem {
        display: block;

        width: 100%;

        height: auto;

        max-width: 100%;

        border-radius: 12px;
    }


    /* =====================================================
       NÚMEROS
    ===================================================== */

    .numeros-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .numero:nth-child(3) {
        border-left: 0;

        border-top:
            1px solid
            rgba(255, 255, 255, .15);
    }


    .numero:nth-child(4) {
        border-top:
            1px solid
            rgba(255, 255, 255, .15);
    }


    /* =====================================================
       SERVIÇOS
    ===================================================== */

    .servicos {
        padding: 80px 0;
    }


    .servicos-grid {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       TRABALHE CONOSCO
    ===================================================== */

    .carreiras {
        padding: 75px 0;
    }


    .carreiras-inner {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    .carreiras .btn {
        width: 100%;
    }


    /* =====================================================
       CONTATO
    ===================================================== */

    .contato {
        padding: 75px 0;
    }


    .contato-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}

/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 390px) {

    .header-inner {
        width: calc(100% - 22px);
    }

    .header-logo img {
        width: 135px;

        height: 42px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-logo {
        width: 205px;
    }

    .sobre-visual {
        min-height: 0;
        padding: 0;
    }


    .numero {
        padding: 20px 10px;
    }
}

/* =========================================================
   MAPA - LOCALIZAÇÃO
========================================================= */

.mapa-localizacao {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin-top: 8px;

    /* remove qualquer borda externa */
    border: none;
    outline: none;

    border-radius: 14px;

    background: transparent;

    overflow: hidden;
}


.mapa-localizacao iframe {
    display: block;

    width: 100%;
    max-width: 100%;

    height: 280px;

    /* remove bordas do iframe */
    border: none !important;
    outline: none;

    border-radius: 14px;

    /* sombra bem suave */
    box-shadow:
        0 8px 25px rgba(6, 29, 53, 0.08);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .mapa-localizacao {
        width: 100%;

        margin-top: 10px;

        border: none;

        border-radius: 12px;
    }


    .mapa-localizacao iframe {
        width: 100%;
        height: 220px;

        border: none !important;
        border-radius: 12px;

        box-shadow:
            0 6px 20px rgba(6, 29, 53, 0.07);
    }

}


.contact-whatsapp-link {
    display: block;

    margin-top: 4px;

    color: #25d366;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.contact-whatsapp-link:hover {
    text-decoration: underline;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 18px;

    border-radius: 999px;

    background: #25d366;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, .20);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, .25);
}

@media (max-width: 720px) {

    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 56px;
        height: 56px;

        padding: 0;

        border-radius: 50%;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float svg {
        width: 29px;
        height: 29px;
    }

}


/* =========================================================
   FORMULÁRIO DE CONTATO
========================================================= */

.contato-form-area {
    width: 100%;
    min-width: 0;
}


.form-contato {
    width: 100%;

    margin-top: 30px;
}


.linha-campos {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


.form-campo {
    width: 100%;

    margin-bottom: 16px;
}


.form-campo label {
    display: block;

    margin-bottom: 7px;

    color: #08284a;

    font-size: 13px;
    font-weight: 700;
}


.form-contato input,
.form-contato textarea {
    display: block;

    width: 100%;

    padding: 14px 16px;

    border:
        1px solid #dce3e8;

    border-radius: 8px;

    outline: none;

    background: #ffffff;

    color: #08284a;

    font-family: inherit;
    font-size: 14px;

    box-sizing: border-box;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.form-contato input:focus,
.form-contato textarea:focus {
    border-color: #0b365d;

    box-shadow:
        0 0 0 3px
        rgba(11, 54, 93, .08);
}


.form-contato textarea {
    min-height: 145px;

    resize: vertical;
}


.form-contato input::placeholder,
.form-contato textarea::placeholder {
    color: #89949e;
}


.form-submit {
    border: 0;

    cursor: pointer;
}


/* HONEYPOT */

.campo-site {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================================
   FORMULÁRIO MOBILE
========================================================= */

@media (max-width: 720px) {

    .linha-campos {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .form-contato {
        margin-top: 24px;
    }


    .form-submit {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   CARROSSEL DE SERVIÇOS - MOBILE
========================================================= */

@media (max-width: 720px) {

    .servicos {
        overflow: hidden;
    }

    .servicos .container {
        overflow: visible;
    }

    .servicos-grid {
        display: grid !important;

        grid-template-columns: none !important;
        grid-auto-flow: column !important;

        grid-auto-columns:
            calc(100vw - 65px) !important;

        width: calc(100% + 28px);
        max-width: none;

        margin-left: -14px;
        margin-right: -14px;

        padding:
            6px
            14px
            22px;

        gap: 16px;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        scroll-snap-type:
            x mandatory;

        scroll-behavior:
            smooth;

        scroll-padding-left:
            14px;

        overscroll-behavior-x:
            contain;

        -webkit-overflow-scrolling:
            touch;

        scrollbar-width:
            none;
    }


    .servicos-grid::-webkit-scrollbar {
        display: none;
    }


    /* CADA SERVIÇO = 1 SLIDE */

    .servicos-grid > .servico-card {
        width: 100% !important;

        min-width: 0 !important;
        max-width: none !important;

        margin: 0 !important;

        scroll-snap-align:
            center;

        scroll-snap-stop:
            always;

        box-sizing:
            border-box;
    }


    /* EVITA CONTEÚDO ESTOURANDO O CARD */

    .servico-card h3,
    .servico-card p {
        min-width: 0;

        max-width: 100%;

        overflow-wrap:
            anywhere;
    }


    /* REMOVE EFEITO DE HOVER NO TOQUE */

    .servico-card:hover {
        transform: none;
    }

}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 390px) {

    .servicos-grid {
        grid-auto-columns:
            calc(100vw - 50px)
            !important;

        gap: 14px;
    }

}


/* =========================================================
   STATUS DO FORMULÁRIO
========================================================= */

.form-status {
    display: none;

    margin-top: 16px;

    padding: 13px 16px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.45;
}


.form-status.sucesso {
    display: block;

    background: #eaf8ef;

    border: 1px solid #b8e4c6;

    color: #176c35;
}


.form-status.erro {
    display: block;

    background: #fff0f0;

    border: 1px solid #efc2c2;

    color: #9b2626;
}


.form-submit:disabled {
    opacity: .65;

    cursor: wait;
}