/*
Theme Name: Carlos Branding
Theme URI: https://seudominio.com
Author: Seu Nome
Author URI: https://seudominio.com
Description: Um tema personalizado para WordPress.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meu-tema
*/

/* ============================================================================================== */

/* Remove margens e preenchimentos do body e do HTML */
html {
    overscroll-behavior-y: contain;
}

html,
body {
    margin: 0;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
    /* Evita rolagem lateral */
}

/* ============================================================================================== */

.grid {
    display: grid;
    grid-template-columns:
        1fr repeat(12, minmax(0, 1fr)) 1fr;
    column-gap: 1.58vw;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
}

@media screen and (min-width: 2000px) {
    .grid {
        width: 100%;
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================================================================== */


/* Variáveis de cor */
:root {
    --cor-verde-principal: #8CD1C9;
    --cor-preto-texto: #1A1A1A;
    --cor-vermelho-destaque: #FF3000;
    --cor-branco-fundo: #fff;
    --cor-cinza-cards: #808080;
}

/* Fonte para os títulos */
h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: 'Inter', serif;
    color: var(--cor-preto-texto);
    letter-spacing: -1px;
}

a {
    letter-spacing: 0px;
}

/* Fonte para os textos */
body,
p {
    font-family: 'Inter', serif;
    color: var(--cor-preto-texto);
}

a {
    text-decoration: none;
}

/* ============================================================================================== */

/* ========= HEADER ========= */
.header {
    background: var(--cor-verde-principal);
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* ========= LOGO ========= */
.header__logo {
    max-width: 540px;
    grid-column: 2 / span 3;
}

.logo a {
    text-decoration: none;
}

@media (min-width: 1001px) and (max-width: 1800px) {
    .header__logo {
        max-width: 300px !important;
        grid-column: 2 / span 2;
    }
}

/* ========= MENU ========= */
.header__menu {
    grid-column: 10 / span 4;
    justify-self: end;
    align-self: end;
    margin-bottom: 11px;
}

.header__lista-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__item-menu a {
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header__item-menu a:hover {
    color: var(--cor-vermelho-destaque);
}

/* Burger Menu: oculto por padrão */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

/* Estilização das barras do burger */
.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--cor-preto-texto);
    transition: all 0.3s ease;
}


/* ========= RESPONSIVO ========= */
@media (max-width: 1000px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        position: relative;
    }

    .header__logo {
        max-width: 300px;
        grid-column: 2 / span 3;
        margin-top: 10px;
    }

    .header__menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;

        background: rgba(26, 26, 26, 0.9);
        color: var(--cor-branco-fundo);
        text-align: center;
        z-index: 1000;

        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .burger-menu {
        grid-column: 12 / span 1;
        top: 1.5rem;
        right: 3rem;
        display: flex;
        position: absolute;
        z-index: 1000;
    }

    .burger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--cor-vermelho-destaque);
        transition: all 0.3s ease;
    }

    .burger-menu.active .line1 {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu.active .line2 {
        opacity: 0;
    }

    .burger-menu.active .line3 {
        transform: translateY(-6px) rotate(-45deg);
    }

    .header__menu.active {
        opacity: 1;
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;

        background: rgba(26, 26, 26, 1);
        color: var(--cor-branco-fundo);
        text-align: left;
        z-index: 1000;
    }

    .header__lista-menu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: flex-start;
    }

    .header__item-menu a {
        color: var(--cor-branco-fundo);
        font-size: 2rem;
        text-decoration: none;
        display: block;
        text-align: center;
    }

    .header__item-menu a:hover {
        color: var(--cor-vermelho-destaque);
    }
}

/* ============================================================================================== */

/* ========= HERO ========= */
.hero {
    background: var(--cor-verde-principal);
    height: 748px;
    min-height: min(748px, 80vh);
    align-items: start;
    display: grid;
    margin-top: 90px;
}

.hero__content {
    grid-column: 4 / span 7;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 10vh;
}

.hero__title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 4.5rem;
    margin-bottom: 2rem;
    color: var(--cor-preto-texto);
    letter-spacing: -1px;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background-color: var(--cor-preto-texto);
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    transition: background-color 0.3s ease;
    max-width: 140px;
}

.hero__button:hover {
    background-color: var(--cor-vermelho-destaque);
}

.hero__button__arrow {
    display: inline-block;
    font-size: 1rem;
    transition: transform 0.3s ease;
    line-height: 1;
    vertical-align: middle;
    transform: rotate(-90deg)
}

/* ========= RESPONSIVO ========= */
@media (max-width: 800px) {
    .hero {
        height: 600px;
        align-items: start;
        display: grid;
        margin-top: 0;
    }

    .hero__content {
        grid-column: 3 / span 7;
    }

    .hero__title {
        line-height: 2.5rem;
    }
}

@media (min-width: 801px) and (max-width: 999px) {
    .hero__content {
        grid-column: 2 / span 12;
    }
}

@media (min-width: 1001px) and (max-width: 1800px) {
    .hero {
        min-height: 75vh;
        height: 100vh;
    }

    .hero__content {
        grid-column: 4 / span 8;
    }

    .hero__title {
        font-size: 60px;
    }
}

/* ============================================================================================== */

/* ========= DEPOIMENTOS ========= */
.depoimentos {
    padding: 8vh 0 0;
    background: var(--cor-branco-fundo);
}

.depoimentos__intro {
    grid-column: 2 / span 3;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-bottom: 0;
    line-height: 3.5rem;
}

.depoimentos__intro h2 {
    font-size: 54px;
    font-weight: 400;
    margin-bottom: 1rem;
}

.depoimentos__intro p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
}

.depoimentos__linkedin {
    text-decoration: underline;
}

.depoimentos__slider {
    grid-column: 6 / span 9;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    position: relative;
}

.slider__alinhamento {
    grid-column: 6 / span 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.hint-arrow,
.hint-text {
    font-family: Inter;
}

.hint-arrow {
    transform: rotate(-90deg);
}

.depoimento__card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 3rem;
    border-radius: 12px;
    min-width: 340px;
    max-width: 480px;
    line-height: 1.5;
}

.depoimento__card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.depoimento__card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.depoimento__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.depoimento__nome {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.depoimento__cargo {
    font-size: 1.5rem;
    margin: 0;
}

.depoimento__texto {
    font-size: 1rem;
    line-height: 1.5;
    margin-left: 100px;
}

.depoimentos__slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.depoimentos__slider::-webkit-scrollbar {
    display: none;
}

.slider-arrow {
    background: var(--cor-preto-texto);
    color: var(--cor-branco-fundo);
    font-family: Inter;
    border: none;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    top: -10vh;
    margin-left: 1rem;
    opacity: 0.8;
    transition: background-color 0.3s;
    z-index: 2;
}

.slider-arrow:hover {
    background-color: var(--cor-vermelho-destaque);
}

.slider-arrow--prev {
    transform: rotate(90deg);
}

.slider-arrow--next {
    transform: rotate(-90deg);
}

@media (min-width: 1024px) {
    .slider-arrow--prev {
        grid-column: 6;
    }

    .slider-arrow--next {
        grid-column: 13;
    }
}

/* ========= RESPONSIVO ========= */
@media (max-width: 1000px) {

    .depoimentos__intro,
    .depoimentos__slider {
        grid-column: 2 / span 12;
    }

    .depoimentos__intro h2 {
        font-size: 2rem;
        margin: 0;
        line-height: 2.5rem;
    }

    .depoimentos__intro p {
        margin-top: 0;
    }

    .depoimento__card {
        padding: 5rem 0 0;
        min-width: auto;
    }

    .depoimento__card__header {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .depoimento__texto {
        margin-left: 0 !important;
    }

    .slider-arrow {
        display: none !important;
    }
}

@media (min-width: 1001px) and (max-width: 1800px) {
    .depoimentos__intro {
        grid-column: 2 / span 4;
        line-height: 3rem;
    }

    .depoimentos__intro h2 {
        font-size: 42px;
    }

}

/* ============================================================================================== */

/* ========= PROJETOS ========= */

.projetos {
    background-color: var(--cor-branco-fundo);
}

.projetos__intro {
    grid-column: 2 / span 12;
}

.projetos__intro h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
}

.projetos__grid {
    grid-column: 2 / span 12;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.projeto__card {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.projeto__link {
    display: flex;
    align-items: center;
    justify-content: start;
}

.projeto__card.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.projeto__thumb {
    width: 100%;
    height: 502px;
}

.projeto__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.projeto__thumb:hover img {
    transform: scale(1.01);
}

.projeto__nome {
    font-size: 1.8rem;
    margin-top: 0.75rem;
    margin-right: 1.5rem;
    color: var(--cor-preto-texto);
    transition: color 0.3s ease;
    ;
}

.projeto__nome:hover {
    color: var(--cor-vermelho-destaque);
}

.projetos__icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--cor-preto-texto);
    color: var(--cor-branco-fundo);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transform: rotate(-90deg);
    margin-top: -15px;
}

.projetos__icon:hover {
    background-color: var(--cor-vermelho-destaque);
}

.projetos__botao {
    grid-column: 7 / span 2;
}

.projetos__botao a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background-color: var(--cor-preto-texto);
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.projetos__botao a:hover {
    background-color: var(--cor-vermelho-destaque);
}

.projetos__button__arrow {
    display: inline-block;
    font-family: Inter;
    font-size: 1rem;
    transition: transform 0.3s ease;
    line-height: 1;
    vertical-align: middle;
}

/* ========= RESPONSIVO ========= */

@media (max-width: 768px) {
    .projetos__grid {
        grid-template-columns: 1fr;
    }

    .projetos__botao {
        display: flex;
        justify-content: center;
    }

    .projeto__thumb {
        height: auto;
        width: 100%;
        height: 200px;
    }

    .projetos__icon {
        flex: 0 0 32px;
    }
}

@media (min-width: 769px) and (max-width: 1800px) {
    .projeto__thumb {
        height: auto;
        width: 100%;
        height: 300px;
    }

    .projetos__botao {
        display: flex;
        justify-content: center;
    }

    .projetos__intro h2 {
        font-size: 48px;
    }
}

/* ============================================================================================== */

/* ========= FAQ ========= */
.faq {
    padding: 8vh 0;
    background-color: var(--cor-branco-fundo);
}

.faq__intro {
    grid-column: 2 / span 12;
    margin: 2rem 0;
}

.faq__intro h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin: 0;
}

.faq__lista {
    grid-column: 2 / span 12;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq__item {
    border-bottom: 2px solid var(--cor-preto-texto);
    padding: 1rem 0;
    position: relative;
}

.faq__pergunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}

.faq__icon {
    font-size: 1rem;
    background-color: var(--cor-preto-texto);
    transition: transform 0.3s ease;
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--cor-branco-fundo);
    align-items: center;
    justify-content: center;
    transform: rotate(0);
    transition: background-color 0.3s ease;
}

.faq__resposta {
    display: none;
    margin-top: 2.5rem;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--cor-preto-texto);
}

.faq__item--aberto .faq__resposta {
    display: block;
}

.faq__item--aberto .faq__icon {
    transform: rotate(180deg);
}

.faq__duvida {
    grid-column: 2 / span 12;
    margin-top: 3rem;
}

.faq__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--cor-preto-texto);
    color: var(--cor-branco-fundo);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.faq__icon:hover,
.faq__button:hover {
    background-color: var(--cor-vermelho-destaque);
}



.faq__button__arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    transform: rotate(-90deg);
}

.faq__button__arrow--left {
    font-size: 1rem;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

/* ========= RESPONSIVO ========= */
@media (max-width: 1000px) {
    .faq__pergunta {
        font-size: 1.5rem;
    }

    .faq__resposta {
        font-size: 1rem;
    }

    .faq__icon {
        display: inline-flex;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: var(--cor-preto-texto);
        color: var(--cor-branco-fundo);
        font-size: 1rem;
        line-height: 1;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
    }

    .faq__duvida {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 1001px) and (max-width: 1800px) {
    .faq__icon {
        display: inline-flex;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: var(--cor-preto-texto);
        color: var(--cor-branco-fundo);
        font-size: 1rem;
        line-height: 1;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
    }

    .faq__intro h2 {
        font-size: 48px;
    }

    .faq__pergunta {
        font-size: 1.5rem;
    }
}

/* ============================================================================================== */

/* ========= SERVIÇOS ========= */

.servicos {
    padding: 8vh 0;
    background: var(--cor-branco-fundo);
}

.servicos-verde {
    padding: 8vh 0;
    background: var(--cor-verde-principal);
}

.servicos__intro {
    grid-column: 2 / span 4;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    line-height: 3.5rem;
}

.servicos__intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin: 0;
}

.servicos__intro p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--cor-preto-texto);
    margin: 0;
}

.servicos__lista {
    grid-column: 7 / span 7;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.servicos__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--cor-preto-texto);
    padding: 1rem 0;
}

.servicos__titulo {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}

.servicos__icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--cor-preto-texto);
    color: var(--cor-branco-fundo);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transform: rotate(-90deg);
}

.servicos__icon:hover {
    background-color: var(--cor-vermelho-destaque);
}

/* ========= RESPONSIVO ========= */
@media (max-width: 1000px) {

    .servicos__intro,
    .servicos__lista {
        grid-column: 2 / span 12;
    }

    .servicos__intro {
        line-height: 2.5rem;
    }

    .servicos__intro p {
        line-height: 2rem;
    }

    .servicos__lista {
        margin-top: 4rem;
    }

    .servicos__titulo {
        font-size: 1.5rem;
    }
}

@media (min-width: 1001px) and (max-width: 1800px) {
    .servicos__intro h2 {
        font-size: 36px;
    }

    .servicos__titulo {
        font-size: 32px;
    }

    .servicos__intro {
        line-height: 3rem;
    }
}


/* ============================================================================================== */

/* ========= BIO ========= */

.bio {
    background: url('assets/bg-bio.jpg') no-repeat center center;
    background-size: cover;
    min-height: 90vh;
    align-items: center;
    padding: 4rem 0;
}

.bio__content {
    grid-column: 10 / span 4;
    padding: 2rem;
}

.bio__content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--cor-branco-fundo);
    line-height: 3.5rem;
}

.bio__content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--cor-branco-fundo);
    max-width: 40ch;
    margin-bottom: 2rem;
}

.bio a {
    color: var(--cor-branco-fundo);
}

.bio__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--cor-preto-texto);
    color: var(--cor-branco-fundo);
    padding: 0.75rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.bio__button__arrow {
    display: inline-block;
    font-size: 1rem;
    transition: transform 0.3s ease;
    line-height: 1;
    vertical-align: middle;
    transform: rotate(-90deg);
}

.bio__button:hover {
    background-color: var(--cor-vermelho-destaque);
}

.bio__foto-mobile {
    display: none;
}

/* ========= RESPONSIVO ========= */
@media (max-width: 800px) {

    .bio {
        background: var(--cor-branco-fundo);
        margin-top: 0;
        padding-top: 0;
    }

    .bio__content {
        grid-column: 2 / span 12;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .bio__foto-mobile {
        display: block;
        width: 100vw;
        margin: 0;
        padding: 0;
        object-fit: cover;
        object-position: center;
    }

    .bio__content p,
    .bio__content h2 {
        color: var(--cor-preto-texto);
        max-width: 90vw;
        margin: 0;
    }

    .bio__content h2 {
        margin-top: 1rem;
        line-height: 2.5rem;
    }


    .bio__content p {
        font-size: 1rem;
    }

    .bio__content a {
        color: var(--cor-preto-texto);
    }

    .bio__button {
        color: var(--cor-branco-fundo) !important;
    }

}

@media (min-width: 801px) and (max-width: 999px) {
    .bio {
        min-height: 35vh;
        height: 35vh;
        padding-top: 2rem;
    }

    .bio__content {
        grid-column: 9 / span 6;
        padding: 0 1rem;
    }

    .bio__content h2 {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .bio__content p {
        font-size: 14px;
    }

    .bio__button {
        margin-top: 0;
    }
}

@media (min-width: 1001px) and (max-width: 1800px) {
    .bio {
        min-height: 75vh;
        height: 75vh;
    }

    .bio__content h2 {
        font-size: 28px;
        line-height: 2.5rem;
    }


    .bio__content p {
        font-size: 16px;
    }
}

/* ============================================================================================== */

/* ========= CLIENTES ========= */

.clientes {
    padding: 8vh 0;
    background-color: var(--cor-branco-fundo);
    margin-top: 30px;
}

.clientes__intro {
    grid-column: 2 / span 3;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    line-height: 3.5rem;
}

.clientes__intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin: 0;
}

.clientes__intro p {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0;
}

.clientes__lista {
    grid-column: 6 / span 7;
    display: flex;
    gap: 5rem;
}

.clientes__marcas {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.clientes__marcas li {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ========= RESPONSIVO ========= */
@media (max-width: 1000px) {
    .clientes {
        padding-bottom: 0;
    }

    .clientes__intro,
    .clientes__lista {
        grid-column: 2 / span 12;
    }

    .clientes__intro h2 {
        line-height: 2.5rem;
    }

    .clientes__intro p {
        font-size: 1rem;
    }

    .clientes__lista {
        flex-direction: column;
        gap: 2rem;
        display: block;
        margin-top: 2rem;
    }

    .clientes__marcas {
        display: block !important;
        columns: unset !important;
        -webkit-columns: unset !important;
        -moz-columns: unset !important;
        padding: 0;
    }

    .clientes__marcas li {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 1001px) and (max-width: 1800px) {
    .clientes__intro h2 {
        font-size: 32px;
        line-height: 2.5rem;
    }

    .clientes__marcas li {
        font-size: 1.2rem;
    }
}

/* ============================================================================================== */

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

.footer {
    background-color: var(--cor-verde-principal);
    padding: 10vh 0;
    margin-top: 5vh;
}

.footer__content__left {
    grid-column: 2 / span 3;
    display: flex;
}

.footer__content__right {
    grid-column: 5 / span 4;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin: 0;
    line-height: 3.5rem;
}

.footer__text {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0;
    max-width: 35ch;
}

.footer__button {
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 130px;
    background-color: var(--cor-preto-texto);
    color: var(--cor-branco-fundo);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin: 80px 0 20px;
}

.footer__button:hover {
    background-color: var(--cor-vermelho-destaque);
}

.footer__button__arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    transform: rotate(-90deg);
}

.footer__social {
    display: flex;
    gap: 1.5rem;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--cor-preto-texto);
    color: var(--cor-verde-principal);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer__social a:hover {
    color: var(--cor-vermelho-destaque);
}

/* ========= RESPONSIVO ========= */
@media (max-width: 1000px) {
    .footer {
        padding: 7vh 0;
    }

    .footer__content__left,
    .footer__content__right {
        grid-column: 2 / span 12;
        display: flex;
    }

    .footer__title {
        margin-bottom: 2rem;
        line-height: 2.5rem;
    }

    .footer__text {
        font-size: 1rem;
    }

    .footer__button {
        margin-top: 1rem;
    }

    .footer__social {
        gap: 1rem;
        margin-bottom: 2rem;
    }

}

@media (min-width: 1001px) and (max-width: 1800px) {
    .footer__title {
        font-size: 32px;
        line-height: 2.5rem;
    }
}

/* ===== Pop-up de saída ===== */
#popup-saida {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Inter', sans-serif;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#popup-saida.shown {
    opacity: 1;
    pointer-events: auto;
}

#popup-conteudo {
    background: #111;
    color: #fff;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: left;
    box-sizing: border-box;
    margin-top: 50vh;
    margin-left: 50vw;
    transform: translate(-50%, -50%);
}

#popup-fechar {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

#popup-saida .titulo {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 300;
    color: #fff;
}

#popup-saida .cta {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 30px;
}

#popup-saida .aviso {
    font-size: 12px;
    color: #888;
}