/*Importação de fontes do Google*/
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

@font-face {
    font-family: 'Nexa';
    src: url('./fonts/Nexa-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    /* ExtraLight */
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nexa", sans-serif;

    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #013974;
    --secondary-color: #0B1F3A;
    --third-color: #E5E7EB;
    --fourth-color: #FFD700;
    --sixth-color: #3401ce;
    --seventh-color: #7b7b7b;

    /* Tamanho da fonte */
    --font-size-xs: 0.75rem;
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.75rem;
    --font-size-xl: 1.9rem;
    --font-size-xxl: 2.3rem;
    --font-size-xxxl: 3.5rem;

    /* Altura da fonte */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-xs: 5px;
    --border-radius-s: 8px;
    --border-radius-m: 16px;
    --border-radius-x: 60px;
    --border-radius-circle: 50%;

    /* Max de comprimento do site */
    --size-max-width: 1300px;
}

html,
body {
    height: 100%;
    margin: 0;
    background-color: var(--white-color);
    /* mesma cor do footer */
    overscroll-behavior-y: none;
    /* trava aquele "elástico" no mobile */
    overflow-x: hidden;
}

.section-content {
    margin: 0 auto;
    padding: 0 0px;
    margin-right: 0px;
    margin-left: 0px;
    max-width: 100%;
}

header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1100;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo {
    text-align: start;
    padding: 15px 40px;
}

.navbar .nav-logo .logo-img {
    max-width: 240px;
    height: auto;
    width: 100%;
    padding-right: 0px;
    padding-top: 6px;
    margin-right: 0px;
}

.navbar .nav-logo .logo-text {
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.nav-menu {
    text-align: end;
    padding-left: 40px;
    padding-bottom: 15px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    gap: 10px;
}

.nav-menu .nav-item {
    list-style: none;
}

.nav-menu .nav-button-parceiro {
    position: absolute;
    right: 40px;
    align-items: center;
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    color: var(--primary-color);
    font-size: var(--font-size-n);
    border-radius: var(--border-radius-xs);
    transition: 0.3s ease;
    text-decoration: var(--primary-color);
    white-space: nowrap;
}

/* Dropdown do Header*/
.nav-item.dropdown {
    position: relative;
}

/* Dropdown menu */
.nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    /* sobe 1px e cola no botão */
    left: 0;
    width: 350px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    /* sem linha entre os dois */
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px 0 0px 0;
    z-index: 1000;
}

.nav-item.dropdown.active>.nav-link {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
    /* cola no dropdown */
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 1001;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
}

.nav-item.dropdown:hover>.nav-link {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 1001;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown:hover .arrow {
    transform: rotate(-90deg);
}

.nav-item.dropdown.active .dropdown-menu {
    display: block;

}

.nav-item.dropdown>.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.nav-item.dropdown .arrow {
    font-size: 1.1em;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

.nav-item.dropdown.active .arrow {
    transform: rotate(-90deg);
}

#nav-button-area-do-parceiro {
    padding: 12.5px 12.5px;
    color: var(--primary-color);
    font-size: var(--font-size-n);
    border-radius: var(--border-radius-s);
    transition: 0.3s ease;
    text-decoration: var(--primary-color);
    white-space: nowrap;
    background-color: var(--third-color);
    border: 1px solid transparent;
    /* borda já existe, mas invisível */
}

#nav-button-seja-parceiro {
    padding: 12.5px 12.5px;
    color: var(--white-color);
    font-size: var(--font-size-n);
    border-radius: var(--border-radius-s);
    transition: 0.3s ease;
    text-decoration: var(--white-color);
    white-space: nowrap;
    background-color: var(--primary-color);
    border: 1px solid transparent
}

#nav-button-area-do-parceiro:hover,
#nav-button-seja-parceiro:hover {
    border: 2px solid var(--seventh-color)
}

.nav-button-parceiro .nav-link {
    display: inline-flex;
    /* ou flex se quiser que ocupe toda a largura */
    align-items: center;
    /* alinha verticalmente */
    gap: 6px;
    /* espaço entre ícone e texto */
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/* itens do dropdown */
.dropdown-menu li {
    list-style: none;
    margin-bottom: 8px;
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.dropdown-menu .dropdown-item {
    display: flex;
    align-items: start;
    gap: 8px;
    padding: 0px 12px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: normal;
    border-radius: 7.5px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--third-color);
}

.dropdown-menu .dropdown-item:hover .dropdown-texts .title {
    color: var(--dark-color);
}

.dropdown-menu .dropdown-item .dropdown-texts {
    padding-top: 5px;
    padding-bottom: 7.5px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    text-align: start;
}

.dropdown-menu .dropdown-item .dropdown-texts .title {
    font-size: 0.95rem;
    color: var(--primary-color);
}

.dropdown-menu .dropdown-item .dropdown-texts .desc {
    padding-top: 2px;
    font-size: 0.75rem;
    color: var(--seventh-color);
    opacity: 0.8;
}

.dropdown-menu .dropdown-item .dropdown-img {
    padding-top: 7.5px;
    /* evita que a imagem encolha */
}

/* Sobre a mendes section styling */
.subheader {
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 1.5px;
    padding-left: 20px;
    padding-right: 20px;
    position: sticky;
    top: 60px;
    /* altura do header principal */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.subheader ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    margin-right: 20px;
}

.subheader a {
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
}

.subheader a:hover {
    color: var(--primary-color);
    /* amarelo de destaque */
}

.subheader a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #2c2c80;
    transition: width 0.3s ease;
}

.subheader a:hover::after,
.subheader a.active::after {
    width: 100%;
}

.mendes-sub-nav {
    padding-right: 5px;
    padding-top: 0px;
    display: flex;
}

.mendes-sub-nav .logo-subheader {
    padding-left: 30px;
}

.mendes-sub-nav .text-subheader {
    text-align: center;
    display: flex;
    width: 500px;
    padding-left: 15px;
    align-items: center;
    font-size: var(--font-size-s);
    color: var(--primary-color);
    font-weight: var(--font-size-l);
}

.mendes-sub-nav .nav-menu {
    justify-content: end;
    right: 40px;
    gap: 40px;
}

.mendes-sub-nav .nav-menu .phone {
    border: 1px transparent;
    border-radius: var(--border-radius-xs);
    padding: 5px;
}

.mendes-sub-nav .nav-menu .phone:hover {
    border: 1px solid;
    border-radius: var(--border-radius-s);
    padding: 7.5px;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.mendes-sub-nav .nav-menu .phone a:hover {
    color: var(--white-color);
}


/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    min-height: 300px;
    padding-top: 60px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 0px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-social a {
    margin-right: 12px;
    font-size: 20px;
    color: var(--third-color);
}

.footer-social a:hover {
    color: var(--fourth-color);
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.footer-links h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--fourth-color);
}

.footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin: 3px 0;
}

.footer-links a:hover {
    color: var(--fourth-color);
}

.footer-right {
    background: #0f1a2d;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 700px;
    height: 225px;
}

.footer-right .att-block {
    flex: 1;
    padding: 10px 15px;
    border-right: 1px solid #233b5c;
}

.footer-right .att-block:last-child {
    border-right: none;
    /* remove linha da última coluna */
}

.footer-right h4 {
    color: var(--fourth-color);
    margin-bottom: 10px;
}

.footer-right .phone {
    font-size: 18px;
    font-weight: bold;
    background: #233b5c;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 5px;
}

.footer-right .link-regulatorios {
    padding-left: 5px;
    padding-top: 7.5px;
}

.footer-right .link-regulatorios :hover {
    color: var(--fourth-color);
}

.footer-right .atendimento {
    padding-left: 5px;
    padding-bottom: 0px
}

.footer-right .att-block a {
    display: block;
    color: #fff;
    margin: 5px 0;
    font-size: 14px;
    text-decoration: none;
}

.att-block .footer-selos-wrapper-img a {
    text-align: center;
}

.footer-right .att-block .att-buttons {
    border-right: 1px solid #233b5c;
}

.footer-right .att-buttons a:hover {
    color: var(--secondary-color);
    background-color: var(--fourth-color);
}

.footer-right .att-buttons a {
    background: var(--white-color);
    color: #000;
    text-align: center;
    margin: 6px 0;
    padding: 13px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.footer-bottom {
    border-top: 1px solid #334d73;
    padding: 20px;
    padding-bottom: 0px;
    text-align: center;
}

.footer-selos-wrapper-img {
    height: 135px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 10px;
}

.footer-selos-wrapper-img {
    height: 130px;
}

.footer-bottom-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-endereco {
    font-size: var(--font-size-xs);
    line-height: 1.8;
    text-align: center;
    color: var(--third-color);
}

.footer-direitos-reservados {
    margin-top: 10px;
    font-size: var(--font-size-xs);
    color: var(--third-color);
}

.footer-text {
    font-size: var(--font-size-xs);
}

/* ===== GALERIA DE VÍDEOS ===== */
.videos-section {
    padding: 40px 120px;
    padding-bottom: 80px;
    text-align: center;
    display: none;
}

.videos-section .videos-title {
    padding-top: 60px;
    padding-bottom: 20px;
}

.videos-section .videos-title .section-title {
    color: var(--secondary-color);
    font-size: var(--font-size-xxl);
    text-align: start;
    font-weight: var(--font-weight-semibold);
    padding-left: 20px;
    border-left: 7.5px solid var(--fourth-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.video-item:hover {
    transform: scale(1.03);
}

.thumbnail {
    background: #000 url("https://img.icons8.com/ios-filled/100/ffffff/play-button-circled--v1.png") no-repeat center center;
    background-size: 50px;
    height: 250px;
}

.video-item p {
    margin: 10px 0;
    font-weight: 500;
}

/* ===== PLAYER ===== */
.video-player {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    z-index: 999;
    text-align: right;
}

.video-player iframe {
    width: 560px;
    height: 315px;
    border-radius: 8px;
}

#closePlayer {
    background: #ff4040;
    border: none;
    color: white;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

#closePlayer:hover {
    background: #d63636;
}

.video-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.video-item img {
    width: 250px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.2s;
}

.video-item img:hover {
    transform: scale(1.05);
}

/* Overlay */
.video-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Caixa do vídeo */
.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: #000;
    border-radius: 10px;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.area-do-parceiro-section {
    min-height: 100vh;
    background-color: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.area-do-parceiro-section .section-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    color: var(--primary-color);
    padding-top: 50px;
    width: 100%;
    margin: 0;
}

.area-do-parceiro-section .area-do-parceiro-detalhes {
    padding-left: 140px;
    padding-top: 120px;
}

.area-do-parceiro-section .area-do-parceiro-detalhes .title {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xxxl);
    font-weight: var(--font-weight-normal);
    color: var(--fourth-color);
}

.area-do-parceiro-section .area-do-parceiro-detalhes .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-medium);
    color: var(--white-color);
    padding-top: 30px;
    text-align: justify;
}

.area-do-parceiro-section .area-do-parceiro-detalhes .description {
    padding-top: 0px;
    padding-right: 300px;
    max-width: 70%;
    margin: 24px 0 40px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    text-align: justify;
    line-height: 25px;
}

.area-do-parceiro-section .area-do-parceiro-detalhes .buttons {
    display: flex;
    gap: 23px;
}

.area-do-parceiro-section .area-do-parceiro-detalhes .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--secondary-color);
    border-radius: var(--border-radius-m);
    background: white;
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    text-decoration: none;
}

.area-do-parceiro-section .area-do-parceiro-detalhes .button:hover,
.area-do-parceiro-section .area-do-parceiro-detalhes .contact-us {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.area-do-parceiro-section .area-do-parceiro-detalhes .contact-us:hover {
    color: var(--primary-color);
    border-color: var(--white-color);
    background: var(--white-color);
}

.area-do-parceiro-section .area-do-parceiro-img-001 {
    justify-content: flex-start;
    flex-shrink: 0;
    align-self: flex-start;
    position: absolute;
    max-width: 1600px;
    display: flex;

    -webkit-mask-image: linear-gradient(to left, transparent, black);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 75% 75%;

    mask-image: linear-gradient(to left, transparent, black);
    mask-repeat: no-repeat;
    mask-size: 80% 80%;

    margin-right: 0;
    padding-top: 20px;
    padding-right: 0;
    top: 0;
    right: 0;
}

.area-do-parceiro-card {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-right: 140px;
    margin-top: 130px;
}

.area-do-parceiro-tag {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 14px;
    background: var(--third-color);
    padding: 4px 10px;
    border-radius: 20px;
}

.area-do-parceiro-contato {
    float: right;
    padding: 6px 14px;
    font-size: 14px;
    border: 1px solid var(--third-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.area-do-parceiro-contato:hover {
    background: var(--primary-color);
    color: #fff;
}

.area-do-parceiro-card h2 {
    font-size: var(--font-size-xl);
    margin: 10px 0 20px;
    color: var(--fourth-color);
    text-align: start;
}

.area-do-parceiro-desc {

    font-weight: var(--font-weight-medium);
    margin-bottom: 20px;
    line-height: 30px;
    color: var(--white-color);
    text-align: start;
}

.area-do-parceiro-list {
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.area-do-parceiro-list .check {
    color: var(--fourth-color);
    /* deixa o visto verde */
    font-weight: bold;
    /* deixa mais forte */
    margin-right: 6px;
    /* dá um espaço entre o visto e o texto */
}

.area-do-parceiro-list li {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--white-color);
}

.area-do-parceiro-btn {
    display: inline-block;
    background: var(--fourth-color);
    border: 1px solid var(--fourth-color);
    color: var(--dark-color);
    padding: 14px 22px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* ===== CAROUSEL DE CARDS ===== */
.carousel {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-left: 140px;
    margin-top: 0px;
    overflow: hidden;
}

/* Mantém os cards sobrepostos e suaves */
.carousel .area-do-parceiro-card {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
    width: 100%;
}

/* Card ativo visível */
.carousel .area-do-parceiro-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    z-index: 2;
}

/* Mantém o efeito da imagem */
.area-do-parceiro-section .area-do-parceiro-img-001 {
    justify-content: flex-start;
    flex-shrink: 0;
    align-self: flex-start;
    position: absolute;
    max-width: 1800px;
    width: 1800px;
    display: flex;
    -webkit-mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to right, transparent, black);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    margin-right: 0;
    padding-top: 20px;
    padding-right: 0;
    top: 0;
    right: 0;
}

@media screen and (max-width: 1300px) {
    .navbar .nav-logo .logo-img {
        width: 171.8px;
    }

    .mendes-sub-nav .logo-subheader {
        padding-left: 10px;
    }

    .subheader {
        padding-left: 5px;
        padding-right: 1.5px;
    }

    .footer-right .att-block .att-buttons {
        border-right: 1px solid #233b5c;
        border-left: 1px solid #233b5c;
    }

    .footer-top {
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer-left {
        text-align: center;
        width: 100%;
    }

    .footer-social {
        text-align: center;
    }

    .footer-links {
        width: 96%;
        gap: 280px;
        text-align: center;
        justify-content: center;
    }

    .footer-right {
        width: 100%;
        margin-top: 20px;
    }

    .area-do-parceiro-section .section-content {
        padding-top: 0px;
    }

    .area-do-parceiro-section .section-content .area-do-parceiro-card .area-do-parceiro-desc {
        max-width: 86%;
    }

    .area-do-parceiroo-img-001 {
        top: 50px;
        right: 0;
    }

    .area-do-parceiro-section .section-content .area-do-parceiro-card {
        margin-right: 20px;
    }
}

@media screen and (max-width: 1250px) {

    /* Header */
    .nav-menu {
        gap: 1px;
        padding-left: 0px;

    }

    .navbar .nav-logo {
        padding-right: 10px;
        padding-left: 10px;
    }

    .nav-menu .nav-button-parceiro {
        right: 10px;
    }

    .navbar .nav-menu .nav-link {
        font-size: var(--font-size-s);
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-left {
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .footer-links {
        gap: 200px;
        text-align: center;
    }

    .footer-right {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1100px) {
    .navbar .nav-logo .logo-img {
        width: 150px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        width: 100%;
    }

    .footer-social {
        padding-bottom: 20px;
    }

    .footer-social a {
        font-size: 1.5rem;
        margin: 8px;
    }


    .footer-links h4 {
        font-size: 1.25rem;
    }

    .footer-links a {
        font-size: 1.25rem;
    }

    .footer-right h4 {
        font-size: 1.25rem;
    }

    .footer-right .phone {
        font-size: 1.25rem;
    }

    .footer-right .att-block a {
        font-size: 1.25rem;
    }


    .footer-right {
        height: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .footer-right .att-block {
        border: none;
        width: 60%;
    }

    .footer-right .att-buttons a {
        width: 100%;
    }

    .footer-selos-wrapper-img {
        justify-content: center;
    }

    .area-do-parceiro-section .section-content .carousel {
        margin-right: 100px;
    }

    .area-do-parceiro-section .section-content .area-do-parceiro-card {
        margin-right: 0px;
    }

}

@media screen and (max-width: 1024px) {

    .navbar .nav-menu .nav-link {
        font-size: var(--font-size-s);
        padding-left: 10px;
        padding-right: 15px;
    }

    #nav-button-area-do-parceiro {
        font-size: 0.85rem;
    }

    #nav-button-seja-parceiro {
        font-size: 0.85rem;
    }

    /*Footer*/
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        width: 100%;
    }

    .footer-social {
        padding-bottom: 20px;
    }

    .footer-social a {
        font-size: 1.5rem;
        margin: 8px;
    }

    .footer-links h4 {
        font-size: 1.25rem;
    }

    .footer-links a {
        font-size: 1.25rem;
    }

    .footer-right h4 {
        font-size: 1.25rem;
    }

    .footer-right .phone {
        font-size: 1.25rem;
    }

    .footer-right .att-block a {
        font-size: 1.25rem;
    }

    .footer-right {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .footer-right .att-block {
        border: none;
        width: 80%;
    }

    .footer-right .att-buttons a {
        width: 100%;
    }

    .footer-selos-wrapper-img {
        justify-content: center;
    }

    .area-do-parceiro-section .section-content .area-do-parceiro-card.active {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 951px) {

    header .navbar {
        width: 100%;
        ;
    }

    /* Barra de navegação */
    #menu-open-button {
        display: block;
        font-size: 1.8rem;
        color: #0B1F3A;
        /* visível sobre fundo branco */
        background: none;
        border: none;
        cursor: pointer;
        margin-right: 25px;
        z-index: 1501;
    }

    #menu-close-button {
        display: block;
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 1.8rem;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
    }

    .navbar .nav-logo .logo-img {
        max-width: 150px;
    }

    .navbar .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 270px;
        background-color: #0B1F3A;
        color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding-top: 80px;
        padding-left: 25px;
        padding-right: 25px;
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 2000;
    }

    .navbar .nav-menu .nav-link {
        color: #fff;
        display: block;
        width: 100%;
        padding: 15px 0;
        font-size: var(--font-size-m);
        text-align: center;
        padding-bottom: 50px;
    }

    .navbar .nav-menu.active {
        right: 0;
        height: 100%;
        width: 400px;
    }

    .nav-item,
    .nav-button-parceiro {
        width: 100%;
        text-align: left;
    }

    .nav-item.dropdown .dropdown-menu {
        display: none;
        flex-direction: column;
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        border-radius: 10px;
        padding: 5px 0 10px 10px;
        margin-top: 10px;
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 1000px;
    }

    .nav-item.dropdown.active>.nav-link {
        background-color: var(--secondary-color);
        color: var(--white-color);
        padding-bottom: 20px;
    }

    .nav-item.dropdown:hover>.nav-link {
        background-color: var(--secondary-color);
        color: var(--white-color);
    }

    .nav-item.dropdown .arrow {
        display: inline-block;
        margin-left: 8px;
        font-weight: bold;
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }

    .nav-item.dropdown.active .arrow {
        transform: rotate(90deg);
    }

    .dropdown-item .dropdown-texts .title {
        color: #fff;
    }

    .dropdown-menu .dropdown-item .dropdown-texts .title {
        color: var(--fourth-color);
    }

    .dropdown-menu .dropdown-item .dropdown-texts .desc {
        color: var(--white-color)
    }

    .nav-menu .nav-button-parceiro {
        position: static;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        left: 0px;
    }

    #nav-button-area-do-parceiro,
    #nav-button-seja-parceiro {
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        gap: 6px;
    }

    .area-do-parceiro-section .section-content .carousel {
        margin-right: 20px;
    }
}

@media screen and (max-width: 850px) {
    .area-do-parceiro-section .section-content {
        margin-right: 0px;
    }

    .carousel .area-do-parceiro-card {
        width: 95%;
    }

    .area-do-parceiro-section .section-content .carousel {
        margin-right: 0px;
    }
}

@media screen and (max-width: 768px) {
    .navbar .nav-logo {
        padding-left: 10px;
    }

    .navbar .nav-logo .logo-img {
        width: 171.8px
    }

    .subheader {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;

        gap: 50px;
    }

    .footer-social a {
        font-size: 1.5rem;
        margin: 8px;
    }


    .footer-links h4 {
        font-size: 1.25rem;
    }

    .footer-links a {
        font-size: 1.25rem;
    }

    .footer-right h4 {
        font-size: 1.25rem;
    }

    .footer-right .phone {
        font-size: 1.25rem;
    }

    .footer-right .att-block a {
        font-size: 1.25rem;
    }


    .footer-right {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .footer-right .att-block {
        border: none;
        width: 100%;
    }

    .footer-right .att-buttons a {
        width: 100%;
    }

    .footer-selos-wrapper-img {
        justify-content: center;
    }

    .area-do-parceiro-section {
        position: relative;
        background: none;
        /* garante que a imagem padrão não conflite */
    }

    .area-do-parceiro-section .area-do-parceiro-img-001 {

        padding-top: 60px;
        inset: 0;
        width: 100%;
        min-height: 150vh;
        object-fit: cover;
        box-shadow: inset 0 0 200px var(--primary-color);
        /* sombra interna suave */
        filter: brightness(0.5);
        /* escurece levemente a imagem */
    }

    .area-do-parceiro-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--secondary-color);
        /* camada escura */
        z-index: 1;
        min-height: 100vh;
    }

    .area-do-parceiro-section .section-content {
        position: relative;
        z-index: 2;
        min-height: 100vh;
        /* texto por cima do escurecimento */
        flex-direction: column;
        align-items: start;
        padding-top: 40px;
    }

    .area-do-parceiro-section .area-do-parceiro-card {
        background-color: transparent;
        padding-left: 0px;
        margin-left: 75px;
        padding-top: 0px;
        padding-right: 0px;
        margin-bottom: 75px;
        text-align: start;
        z-index: 1001;
        box-shadow: none;
        max-width: 900px;
    }

    .area-do-parceiro-section .section-content .area-do-parceiro-card.active {
        padding-bottom: 0px;
    }

    .area-do-parceiro-section .area-do-parceiro-card .title,
    .area-do-parceiro-section .area-do-parceiro-card .active {
        padding-top: 25px;
        font-weight: var(--font-weight-semibold);
        font-size: 2.9rem;
        width: 80%;
    }

    .area-do-parceiro-section .area-do-parceiro-card .area-do-parceiro-desc {
        font-size: var(--font-size-m);
    }

    .area-do-parceiro-section .area-do-parceiro-card .area-do-parceiro-list li {
        font-size: var(--font-size-m);
    }

    .area-do-parceiro-section .section-content .area-do-parceiro-card.active {
        margin-top: 50px;
    }

    .area-do-parceiro-section .carousel {
        margin-left: 0px;
        width: 100%;
        max-width: 950px;
    }
}

@media screen and (max-width: 700px) {
    .sobre-a-mendes-section .sobre-a-mendes-detalhes {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    .area-do-parceiro-section .section-content {
        min-height: 200px;
    }


    .area-do-parceiro-section .area-do-parceiro-card .title {
        font-size: 2.95rem;
        font-weight: var(--font-weight-semibold);
        padding-left: 5px;
        width: 100%;
        margin-bottom: 30px;
    }

    .area-do-parceiro-section .area-do-parceiro-card {
        padding-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
        margin-right: 0px;
        margin-left: 0px;
        width: 600px;
    }

    .area-do-parceiro-section .area-do-parceiro-card .area-do-parceiro-desc {
        display: none;
    }

    .area-do-parceiro-section .area-do-parceiro-card .buttons .area-do-parceiro-btn {
        width: 100%;
        text-align: center;
        flex-direction: column;
        gap: 15px;
        padding: 10px 26px;
        border: 2px solid transparent;
        color: var(--secondary-color);
        border-radius: var(--border-radius-x);
        font-weight: var(--font-weight-medium);
        transition: 0.3s ease;
        text-decoration: none;
    }

    .area-do-parceiro-list {
        padding-left: 5px;
        margin-bottom: 40px;
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {

    .navbar .nav-logo .logo-img {
        width: 171.8px
    }

    #menu-open-button {
        font-size: 1.6rem;
    }

    footer {
        padding: 30px 20px;
    }

    .footer-social {
        text-align: center;
    }

    .footer-social a {
        font-size: 1.75rem;
        margin: 8px;
    }

    .footer-links {
        gap: 40px;
    }

    .footer-links h4 {
        font-size: var(--font-size-l);
    }

    .footer-links a {
        font-size: 1.25rem;
    }

    .footer-right {
        padding: 20px;
    }

    .footer-right h4 {
        font-size: var(--font-size-l);
    }

    .footer-right .phone {
        font-size: 1.65rem;
    }

    .footer-right .att-block a {
        font-size: 1.25rem;
    }

    .footer-bottom {
        font-size: 12px;
        line-height: 1.6;
    }

    .area-do-parceiro-section .area-do-parceiro-card {
        width: 100%;
        margin-top: 0px;
        padding-top: 0px;
    }

    .carousel {
        margin-top: 0px;
    }
}