/*Importação de fontes do Google*/
/*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.5rem;
    --font-size-xl: 2rem;
    --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: 30px;
    --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;
    overflow-x: hidden;
    /* trava aquele "elástico" no mobile */
}

.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: 1002;
    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: 300px;
    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;
}

/* 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: 40px;
}

.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;
}

.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-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);
}

/*-------------------------------- Tela Inicial ---------------------------------*/
.inicio-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 0 12%;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 30px;
}

.inicio-card {
    background-color: var(--secondary-color);
    /* leve transparência */
    backdrop-filter: blur(10px);
    /* efeito vidro */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    padding-top: 50px;
    padding-bottom: 0px;
    max-width: 1300px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding-left: 90px;
    min-width: 100%;
    transition: opacity 0.5s ease;
    padding-right: 5px;
    max-height: 552px;
}

.inicio-card-3 {
    background-color: var(--secondary-color);
    /* leve transparência */
    backdrop-filter: blur(10px);
    /* efeito vidro */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    padding-top: 20px;
    padding-bottom: 0px;
    max-width: 1300px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding-left: 90px;
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.card2 {
    padding-left: 20px;
    padding-right: 90px;
}

.inicio-card-3 .inicio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: wrap;
}

.inicio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: wrap;
}

.inicio-card-3 .inicio-content .inicio-text {
    flex: 1;
    max-width: 55%;
    margin-top: -30px;
}

.inicio-text {
    flex: 1;
    max-width: 55%;
    margin-top: 10px;
}

.inicio-text-two-card {
    flex: 1;
    max-width: 55%;
    margin-top: 75px;
}


.inicio-text-three-card {
    max-width: 55%;
    margin-top: -50px;
}

/*Three Card*/
.inicio-text-three-card h2 {
    font-size: 2.75rem;
    font-weight: 550;
    color: var(--fourth-color);
    margin-bottom: 20px;
}

.inicio-text-three-card h3 {
    font-weight: var(--font-weight-semibold);
    font-size: 1.2rem;
    color: var(--third-color);
    margin-bottom: 0px;
    text-align: justify;
    margin-bottom: 15px;
}

.inicio-text-three-card p {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 45px;
    text-align: justify;
    line-height: 2rem;
}

/**********************************************/

.inicio-text-two-card h2 {
    font-size: 2.75rem;
    font-weight: 550;
    color: var(--fourth-color);
    margin-bottom: 20px;
}

.inicio-text-two-card h3 {
    font-weight: var(--font-weight-semibold);
    font-size: 1.2rem;
    color: var(--third-color);
    margin-bottom: 0px;
    text-align: justify;
    margin-bottom: 15px;
}

.inicio-text-two-card p {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 45px;
    text-align: justify;
    line-height: 2rem;
}

.inicio-text h2 {
    font-size: 2.75rem;
    font-weight: 550;
    color: var(--fourth-color);
    margin-bottom: 20px;
}

.inicio-text h3 {
    font-weight: var(--font-weight-semibold);
    font-size: 1.2rem;
    color: var(--third-color);
    margin-bottom: 0px;
    text-align: justify;
    margin-bottom: 15px;
}

.inicio-text p {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 45px;
    text-align: justify;
    line-height: 2rem;
}

.btn-acessar {
    padding: 15px 50px;
    border: 2px solid var(--fourth-color);
    color: var(--primary-color);
    border-radius: var(--border-radius-s);
    background: var(--fourth-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    text-decoration: none;
    font-size: var(--font-size-m);
}

.btn-acessar:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: var(--fourth-color);
}

.inicio-imagem {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.inicio-imagem-two-card {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: -50px;
}

.inicio-imagem-two-card img {
    width: 400px;
}

.inicio-imagem-three-card {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: -50px;
}

.inicio-imagem-three-card img {
    width: 350px;
    height: 530px;
    margin-right: 50px;
}

.inicio-imagem img {
    width: 850px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.inicio-frase {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.inicio-frase-two-card {
    position: absolute;
    bottom: -120px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.inicio-frase-three-card {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.inicio-frase-three-card .somos-three-card {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white-color);
    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.6),
        1px 1px 0 var(--fourth-color);
}

.inicio-frase-three-card .portabilidade-three-card {
    display: inline-block;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--fourth-color);
    padding: 6px 16px;
    border-radius: 6px;
    margin-top: 8px;
    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.6),
        1px 1px 0 var(--fourth-color);
}

.inicio-frase-two-card .somos-two-card {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white-color);
    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.6),
        1px 1px 0 var(--fourth-color);
}

.inicio-frase-two-card .portabilidade-two-card {
    display: inline-block;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--fourth-color);
    padding: 6px 16px;
    border-radius: 6px;
    margin-top: 8px;
    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.6),
        1px 1px 0 var(--fourth-color);
}

.inicio-frase .somos {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white-color);
    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.6),
        1px 1px 0 var(--fourth-color);
}

.inicio-frase .portabilidade {
    display: inline-block;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--fourth-color);
    padding: 6px 16px;
    border-radius: 6px;
    margin-top: 8px;
    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.6),
        1px 1px 0 var(--fourth-color);
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.7s ease-in-out;
}



/* ==== SETAS DE NAVEGAÇÃO ==== */
.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: var(--white-color);
    font-size: 3rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-controls button:hover {
    background-color: transparent;
    color: var(--fourth-color);
    border-color: var(--white-color);
}

.prev {
    left: 100px;
}

.next {
    right: 100px;
}

/* ==== BOLINHAS INDICADORAS ==== */
.slider-dots {
    text-align: center;
    margin-top: 25px;
}

.slider-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots span.active {
    background-color: var(--fourth-color);
}

/* Galeria de Parceiros*/
.parceiros-section {
    background-color: var(--third-color);
    text-align: center;
    padding: 60px 20px;
    color: #002e6b;
}

.parceiros-section .section-title {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    color: #002e6b;
    margin-bottom: 10px;
}

.parceiros-section .section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 25px;
    align-items: center;
    justify-items: center;
    margin-left: 160px;
    margin-right: 160px;
}

.logo-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 120px;
    align-content: center;
    height: 120px;
    width: 125px;
}

.logo-item img {
    width: 100%;
    max-width: 125px;
    border-radius: 15px;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 1);
}

.logo-item:hover img {
    filter: none;
}


/*----------------------------------------------------*/

.oferecimento-section {
    background: var(--white-color);
    padding: 80px 20px;
    color: #0a0a40;
    font-family: "Poppins", sans-serif;
}

.oferecimento-section .title {
    text-align: center;
}

.oferecimento-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.oferecimento-header h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 1px 1px 0 var(--secondary-color);
}

.oferecimento-header .highlight {
    color: #0095ff;
}

.oferecimento-header h1 {
    font-size: var(--font-size-xxl);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.oferecimento-header p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

.oferecimento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-right: 275px;
    padding-left: 275px;
}

.oferecimento-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 50, 0.08);
    padding: 30px;
    gap: 20px;
}

.oferecimento-card img {
    width: 45px;
    height: 45px;
}

.oferecimento-card h2 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.oferecimento-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding-left: 55px;
    text-align: justify;
}

.oferecimento-card .selo {
    align-items: start;
    display: inline-flex;
}

.oferecimento-button {
    text-align: center;
    margin-top: 60px;
}

.oferecimento-button a {
    background: #fff;
    border: 1px solid var(--primary-color);
    padding: 17.5px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s;
}

.oferecimento-button a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/*Trabalhe conosco*/
.mendes-trabalhe {
    background: var(--secondary-color);
    padding: 100px 200px;
    font-family: "Poppins", sans-serif;
}

.mendes-info .title {
    color: var(--fourth-color);
    font-size: 3rem;
    font-weight: var(--font-weight-semibold);
}

.mendes-header {
    text-align: center;
    margin-bottom: 60px;
}

.mendes-trabalhe .mendes-container {
    position: relative;
    width: 100%;
    height: 430px;
    /* ajuste conforme necessário */
    overflow: hidden;
    /* impede que a imagem vaze */
    border-radius: 20px;
    /* opcional */
    background-color: #000;
    /* ou a cor que quiser */
}

.mendes-header h3 {
    color: #003399;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mendes-header p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.mendes-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 50, 0.08);
    gap: 60px;
}

.mendes-image img {
    width: 550px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 430px;
}

.mendes-info {
    margin-top: -20px;
    flex: 1;
}

.mendes-tag {
    color: var(--third-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mendes-info h2 {
    color: #003399;
    font-size: 32px;
    margin: 10px 0 20px;
}

.mendes-info p {
    color: var(--white-color);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 50px;
    width: 80%;
    text-align: justify;
}

.mendes-btn {
    padding: 15px 26px;
    border: 2px solid var(--fourth-color);
    color: var(--fourth-color);
    border-radius: var(--border-radius-s);
    background: transparent;
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
    text-decoration: none;
}

.mendes-btn:hover {
    color: var(--primary-color);
    border-color: var(--fourth-color);
    background: var(--fourth-color);
}

/*Conheça a Mendes Section*/
.conheca-a-mendes-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
}

.conheca-a-mendes-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.conheca-a-mendes-image {
    flex: 1 1 450px;
    max-width: 525px;
    border-radius: 40px;
    overflow: hidden;
}

.conheca-a-mendes-image img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 40px;
}

.conheca-a-mendes-content {
    flex: 1 1 400px;
    max-width: 550px;
}

.conheca-a-mendes-subtitle {
    font-size: var(--font-size-l);
    color: var(--seventh-color);
    display: block;
    margin-bottom: 10px;
    font-weight: var(--font-weight-semibold);
}

.conheca-a-mendes-title {
    font-size: var(--font-size-xxl);
    line-height: 1.3;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.conheca-a-mendes-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    text-align: justify;
}

.conheca-a-mendes-button {
    background: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 17.5px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s;
}

.conheca-a-mendes-button:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/*Section trabalhe conosco teste*/

.trabalhe-conosco-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
}

.trabalhe-conosco-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.trabalhe-conosco-image {
    flex: 1 1 450px;
    max-width: 525px;
    border-radius: 40px;
    overflow: hidden;
}

.trabalhe-conosco-image img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 40px;
}

.trabalhe-conosco-content {
    flex: 1 1 400px;
    max-width: 550px;
}

.trabalhe-conosco-subtitle {
    font-size: var(--font-size-l);
    color: var(--white-color);
    display: block;
    margin-bottom: 10px;
    font-weight: var(--font-weight-semibold);
}

.trabalhe-conosco-title {
    font-size: var(--font-size-xxl);
    line-height: 1.3;
    color: var(--fourth-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.trabalhe-conosco-text {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    text-align: justify;
}

.trabalhe-conosco-button {
    background: transparent;
    border: 1px solid var(--fourth-color);
    padding: 17.5px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: var(--fourth-color);
    transition: 0.3s;
}

.trabalhe-conosco-button:hover {
    background: var(--fourth-color);
    color: var(--secondary-color);
}


/**/


.missao-section,
.valores-section,
.depoimentos-section,
.onde-nos-encontrar-section,
.vagas-section,
.a-mendes-section,
.vem-ser-mendes-section {
    scroll-margin-top: 100px;
}


/*--------------------------------------------------- Responsividades Demais Telas -----------------------------------------------*/

@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;
    }

    .sobre-a-mendes-section .sobre-a-mendes-detalhes .description {
        max-width: 86%;
    }

    .sobre-a-mendes-img-001 {
        top: 50px;
        right: 0;
    }

    .inicio-card {
        height: 500px;
        padding-top: 10px;
    }


    .inicio-text {
        margin-top: -125px;
    }

    .inicio-text-three-card {
        margin-top: 30px;
    }

    .inicio-text h2 {
        font-size: 2rem;
    }

    .inicio-imagem {
        margin-top: 50px;
        max-height: 531px;
        height: 531px;
    }

    .inicio-imagem-two-card {
        width: 350px;
    }

    .inicio-imagem img {
        width: 450px;
        max-height: 300px;
    }

    .inicio-imagem-three-card {
        margin-top: 0px;
    }

    .inicio-imagem-three-card img {
        height: 420px;
        width: 280px;
    }

    .inicio-frase .portabilidade {
        font-size: 1.5rem;
    }

    .inicio-frase {
        bottom: 150px;
    }

    .inicio-frase-three-card {
        bottom: 0px;
    }

    /*Conheça a Mendes*/
    .conheca-a-mendes-container {
        gap: 50px;
    }

    .conheca-a-mendes-title {
        font-size: 2.3rem;
    }

    /* Trabalhe conosco */
    .trabalhe-conosco-container {
        gap: 50px;
    }

    .trabalhe-conosco-title {
        font-size: 2.3rem;
    }

    /*Oferecimento*/
    .oferecimento-container {
        max-width: 1250px;
    }
}

@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;
    }

    .inicio-imagem {
        margin-top: 20px;
        max-height: 531px;
        height: 531px;
    }

    .inicio-imagem img {
        width: 440px;
        max-height: 420px;
    }

    .inicio-frase .portabilidade {
        font-size: 1.5rem;
    }

    .inicio-frase {
        bottom: 100px;
    }

    /*Conheça a Mendes*/
    .conheca-a-mendes-image {
        max-width: 480px;
    }

    .conheca-a-mendes-title {
        font-size: 2.2rem;
    }

    /*Trabalhe conosco*/
    .trabalhe-conosco-image {
        max-width: 480px;
    }

    .trabalhe-conosco-title {
        font-size: 2.2rem;
    }

    /*Oferecimento*/
    .oferecimento-grid {
        gap: 25px;
    }
}

@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;
    }

    .inicio-text {
        margin-top: -90px;
        margin-left: -35px;
    }

    .inicio-text-two-card {
        margin-right: -50px;
    }

    .inicio-text-three-card {
        margin-left: -30px;
    }

    .inicio-text p {
        font-size: 1.1rem;
    }

    .inicio-text h3 {
        font-size: 1rem;
    }

    .inicio-frase {
        bottom: 120px;
    }

    .inicio-frase .portabilidade {
        font-size: 1.25rem;
    }

    .inicio-frase .somos {
        font-size: 3rem;
    }

    .inicio-frase-two-card .somos-two-card {
        font-size: 3rem;
    }

    .inicio-frase-three-card .somos-three-card {
        font-size: 3rem;
    }

    .inicio-imagem {
        padding-top: 50px;
    }

    .inicio-imagem img {
        max-height: 275px;
    }

    .inicio-imagem-two-card img {
        max-width: 350px;
    }

    .prev {
        left: 50px;
    }

    .next {
        right: 50px;
    }

    /*Conheça a Mendes*/
    .conheca-a-mendes-section {
        padding: 60px 40px;
    }

    .conheca-a-mendes-title {
        font-size: 1.9rem;
    }

    .conheca-a-mendes-text {
        font-size: 15px;
    }

    /*Trabalhe conosco*/
    .trabalhe-conosco-section {
        padding: 60px 40px;
    }

    .trabalhe-conosco-title {
        font-size: 1.9rem;
    }

    .trabalhe-conosco-text {
        font-size: 15px;
    }

    /*Oferecimento*/
    .oferecimento-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-right: 150px;
        padding-left: 150px;
    }

    .logos-grid {
        margin-left: 75px;
        margin-right: 75px;
    }
}

@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;
    }

    .inicio-text {
        margin-top: -60px;
        margin-left: 10px;
    }

    .inicio-text-three-card {
        margin-left: 0px;
    }

    .inicio-text-three-card h2 {
        font-size: 1.9rem;
        margin-top: 20px;
    }

    .inicio-text h2 {
        font-size: 1.9rem;
        margin-top: 20px;
    }

    .inicio-text-two-card h2 {
        font-size: 2.25rem;
    }

    .inicio-text p {
        font-size: 1.12rem;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .inicio-frase .somos {
        font-size: 2.5rem;
    }

    .inicio-frase-two-card .somos-two-card {
        font-size: 2.5rem;
    }

    .inicio-frase-three-card .somos-three-card {
        font-size: 2.5rem;
    }

    .inicio-frase .portabilidade {
        font-size: 1.1rem;
    }

    .inicio-frase-two-card .portabilidade-two-card {
        font-size: 1.1rem;
    }

    .inicio-frase-three-card .portabilidade-three-card {
        font-size: 1.1rem;
    }

    .btn-acessar {
        font-size: 1rem;
    }

    .inicio-card {
        padding-right: 0px;
        padding-left: 50px;
        padding-top: 0px;
        height: 475px;
    }

    .inicio-imagem {
        margin-top: 10px;
        padding-top: 80px;
    }

    .inicio-imagem img {
        width: 325px;
        height: 225px;
    }

    .inicio-imagem-two-card img {
        max-width: 300px;
    }

    .inicio-imagem-three-card {
        margin-top: 50px;
    }

    .inicio-imagem-three-card img {
        width: 200px;
        max-height: 340px;
    }

    .inicio-frase {
        bottom: 150px;
    }

    /*Conheça a Mendes*/
    .conheca-a-mendes-image,
    .conheca-a-mendes-content {
        max-width: 90%;
    }

    .conheca-a-mendes-text {
        text-align: justify;
    }

    .conheca-a-mendes-button {
        display: inline-block;
    }

    .conheca-a-mendes-image img {
        max-width: 500px;
    }

    .conheca-a-mendes-section {
        padding: 60px 35px;
    }

    .conheca-a-mendes-container {
        gap: 30px;
    }

    /* Trabalhe conosco */
    .trabalhe-conosco-image,
    .trabalhe-conosco-content {
        max-width: 90%;
    }

    .trabalhe-conosco-text {
        text-align: justify;
    }

    .trabalhe-conosco-button {
        display: inline-block;
    }

    .trabalhe-conosco-image img {
        max-width: 500px;
    }

    .trabalhe-conosco-section {
        padding: 60px 35px;
    }

    .trabalhe-conosco-container {
        gap: 30px;
    }

    /*Oferecimento*/
    .oferecimento-header h1 {
        font-size: 2.1rem;
    }

    .oferecimento-card {
        padding: 25px 20px;
    }

    .logos-grid {
        margin-left: 25px;
        margin-right: 25px;
    }
}

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

    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;
    }

    .inicio-card {
        padding-right: 5px;
        height: 475px;
    }

    .inicio-imagem {
        margin-top: 30px
    }

    .inicio-imagem img {
        height: 375px;
        max-width: 300px;
    }

    .inicio-text {
        margin-top: -100px;
    }

    .inicio-frase {
        bottom: 135px;
    }

    .inicio-frase .somos {
        font-size: 2.35rem;
    }

    .inicio-text p {
        font-size: 0.9rem;
    }

    .inicio-frase .portabilidade {
        font-size: 1.1rem;
    }

    /* Conheca a mendes*/
    .conheca-a-mendes-section {
        gap: 30px;
    }

    .conheca-a-mendes-title {
        font-size: 2rem;
    }

    .conheca-a-mendes-text {
        font-size: 14.5px;
    }

    .conheca-a-mendes-image img {
        max-width: 500px;
    }

    .conheca-a-mendes-image {
        max-width: 50%;
    }

    .conheca-a-mendes-image,
    .conheca-a-mendes-content {
        max-width: 50%;
    }

    .conheca-a-mendes-container {
        gap: 10px;
        display: contents;
    }

    /*Trabalhe conosco*/
    .trabalhe-conosco-section {
        gap: 30px;
    }

    .trabalhe-conosco-title {
        font-size: 2rem;
    }

    .trabalhe-conosco-text {
        font-size: 14.5px;
    }

    .trabalhe-conosco-image img {
        max-width: 500px;
    }

    .trabalhe-conosco-image {
        max-width: 50%;
    }

    .trabalhe-conosco-image,
    .trabalhe-conosco-content {
        max-width: 50%;
    }

    .trabalhe-conosco-container {
        gap: 10px;
        display: contents;
    }

    /*Oferecimento*/
    .oferecimento-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-right: 100px;
        padding-left: 100px;

    }
}

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

    .btn-acessar {
        padding: 12.5px 50px;
    }

    .inicio-section {
        padding-left: 7%;
        padding-right: 7%;
    }

    .inicio-content {
        padding-top: 10px;
    }

    .inicio-imagem {
        margin-top: 0px;
    }

    .inicio-imagem img {
        margin-top: 30px;
        width: 275px;
        height: 200px;
    }

    .inicio-frase {
        bottom: 111px;
    }

    .next {
        right: 10px;
    }

    .prev {
        left: 10px;
    }

    .conheca-a-mendes-container {
        gap: 40px;
    }

    .conheca-a-mendes-image img {
        height: auto;
    }

    .conheca-a-mendes-button {
        padding: 12.5px 50px;
    }

    .conheca-a-mendes-section {
        align-items: flex-start;
    }

    /* Trabalhe conosco*/
    .trabalhe-conosco-container {
        gap: 40px;
    }

    .trabalhe-conosco-image img {
        height: auto;
    }

    .trabalhe-conosco-button {
        padding: 12.5px 50px;
    }

    .trabalhe-conosco-section {
        align-items: center;
    }

    /*Oferecimento*/
    .oferecimento-header h1 {
        font-size: 2rem;
    }

    .oferecimento-header p {
        font-size: 14.5px;
    }

    .oferecimento-card p {
        font-size: 14.5px;
    }

    .oferecimento-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-right: 50px;
        padding-left: 50px;
    }
}

@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;
    }

    /* Carousel */
    .slider-container {
        max-width: 750px;
    }

    .inicio-content {
        flex-direction: column;
    }

    .inicio-card {
        height: 850px;
        padding-right: 50px;
    }

    .inicio-content {
        height: 600px;
        flex-direction: column-reverse;
    }

    .inicio-imagem {
        width: 1000px;
        max-width: 100%;
        justify-content: center;
        padding-top: 0px;
    }

    .inicio-imagem-two-card {
        height: 300px;
        max-width: 100%;
        justify-content: center;
        padding-top: 0px;
        margin-top: -575px;
    }

    .inicio-imagem-three-card {
        width: 1000px;
        max-width: 100%;
        justify-content: center;
        padding-top: 0px;
        margin-top: 60px;
    }

    .inicio-imagem img {
        margin-top: 80px;
        height: 600px;
        width: 400px;
    }

    .inicio-imagem-two-card img {
        margin-top: 80px;
        height: 250px;
        width: auto;
    }

    .inicio-imagem-three-card img {
        margin-top: 0px;
        margin-right: 0px;
        height: 480px;
        width: 250px;
    }

    .inicio-text {
        max-width: 100%;
        margin-top: -500px;
    }

    .inicio-text-two-card {
        max-width: 100%;
        margin-top: 0px;
        height: 300px;
        margin-right: 0px;
    }

    .inicio-text-three-card {
        max-width: 100%;
        margin-top: -500px;
        margin-bottom: 100px;
        width: 500px;
    }

    .inicio-text h2 {
        margin-top: 315px;
    }

    .inicio-text-two-card h2 {
        margin-top: 375px;
        font-size: 1.9rem;

    }

    .inicio-text-three-card h2 {
        margin-top: 365px;

    }

    .inicio-text-two-card h3 {
        padding-top: 27.5px;
    }

    .inicio-text p {
        display: none;
    }

    .inicio-text-two-card p {
        display: none;
    }

    .inicio-text-three-card p {
        display: none;
    }

    .inicio-frase {
        margin-bottom: 75px;
    }

    .inicio-frase-two-card {
        margin-bottom: 300px;
    }

    .inicio-frase-two-card .somos-two-card {
        font-size: 2.35rem;
    }

    .inicio-frase-three-card {
        margin-bottom: 125px;
    }

    .inicio-frase-three-card .somos-three-card {
        font-size: 2.35rem;
    }

    /*******************************/

    .conheca-a-mendes-section {
        padding: 60px 4%;
        flex-direction: column;
    }

    .conheca-a-mendes-title {
        font-size: 1.9rem;
    }

    .conheca-a-mendes-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .conheca-a-mendes-button {
        padding: 15px 26px;
        font-size: 1rem;
        width: 100%;
        padding: 10px 26px;
        border: 2px solid var(--secondary-color);
        color: var(--white-color);
        border-radius: var(--border-radius-m);
        background: var(--secondary-color);
        font-weight: var(--font-weight-medium);
        transition: 0.3s ease;
        text-decoration: none;

    }

    .conheca-a-mendes-image,
    .conheca-a-mendes-content {
        max-width: 100%;
        text-align: center;
        align-self: center;
    }

    .conheca-a-mendes-subtitle {
        font-size: 1.25rem;
        font-weight: var(--font-weight-semibold);
    }

    .conheca-a-mendes-content {
        margin-bottom: -150px;
    }

    /*Trabalhe Conosco*/
    .trabalhe-conosco-section {
        padding: 60px 4%;
        flex-direction: column;
    }

    .trabalhe-conosco-title {
        font-size: 1.9rem;
    }

    .trabalhe-conosco-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .trabalhe-conosco-button {
        padding: 15px 26px;
        font-size: 1rem;
        width: 100%;
        padding: 10px 26px;
        border: 2px solid var(--white-color);
        color: var(--secondary-color);
        border-radius: var(--border-radius-m);
        background: var(--white-color);
        font-weight: var(--font-weight-medium);
        transition: 0.3s ease;
        text-decoration: none;

    }

    .trabalhe-conosco-image,
    .trabalhe-conosco-content {
        max-width: 100%;
        text-align: center;
        align-self: center;
        margin-bottom: -150px;
    }

    .trabalhe-conosco-subtitle {
        font-size: 1.25rem;
        font-weight: var(--font-weight-semibold);
    }

    .trabalhe-conosco-image {
        margin-bottom: -115px;
    }

    /* Parceiros Responsividade*/
    .parceiros-section {
        padding: 60px 10px;
    }

    .parceiros-section .section-title {
        font-size: 1.6rem;
    }

    .logos-grid {
        gap: 20px;
    }

    /*Oferecimento*/
    .oferecimento-header h1 {
        font-size: 1.9rem;
    }

    .oferecimento-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-right: 25px;
        padding-left: 25px;
    }

    .oferecimento-button a {
        padding: 12.5px 26px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        border: 2px solid var(--secondary-color);
        color: var(--white-color);
        border-radius: var(--border-radius-m);
        background: var(--secondary-color);
        font-weight: var(--font-weight-medium);
        transition: 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

}

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

    .conheca-a-mendes-title {
        font-size: 1.8rem;
    }

    .conheca-a-mendes-subtitle {
        font-size: 1.05rem;
    }

    .trabalhe-conosco-title {
        font-size: 1.8rem;
    }

    .trabalhe-conosco-subtitle {
        font-size: 1.05rem;
    }

    .oferecimento-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media screen and (max-width: 600px) {
    .conheca-a-mendes-section {
        padding: 50px 3%;
    }

    .conheca-a-mendes-text {
        font-size: 0.9rem;
    }

    .conheca-a-mendes-title {
        font-size: 1.9rem;
        font-weight: 600;
    }

    .conheca-a-mendes-content {
        margin-bottom: -125px;
    }

    .trabalhe-conosco-section {
        padding: 50px 3%;
    }

    .trabalhe-conosco-text {
        font-size: 0.9rem;
    }

    .trabalhe-conosco-title {
        font-size: 1.9rem;
        font-weight: 600;
    }

    .trabalhe-conosco-content {
        margin-bottom: -125px;
    }

    .trabalhe-conosco-image {
        margin-bottom: -110px;
    }

    .oferecimento-card {
        padding: 20px 18px;
    }

    .oferecimento-header h1 {
        font-size: 1.6rem;
    }

    .logos-grid {
        margin-left: 0px;
        margin-right: 0px;
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    }

    .inicio-text-two-card h2 {
        padding-right: 20px;
    }
}

@media screen and (max-width: 550px) {
    .conheca-a-mendes-section {
        max-height: 900px;
    }
}

@media screen and (max-width: 500px) {
    .inicio-text-two-card h2 {
        padding-right: 30px;
    }
}

@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;
    }

    .inicio-section {
        padding: 0px;
    }

    .inicio-content {
        height: 750px;
        flex-direction: column-reverse;
    }

    .inicio-imagem {
        margin-top: 75px;
        height: 750px;
    }

    .inicio-imagem-three-card img {
        margin-top: 75px;
    }

    .inicio-text h3 {
        text-align: center;
        font-size: 1.3rem;
        margin-left: -20px;
    }

    .inicio-frase {
        margin-bottom: -10px;
    }

    .inicio-frase-two-card {
        margin-bottom: 340px;
    }

    .inicio-frase-three-card {
        margin-bottom: 175px;
    }

    .inicio-imagem-two-card img {
        margin-top: 30px;
    }

    .inicio-card {
        padding-left: 10px;
        padding-right: 10px;
        max-height: 750px;
        border-radius: 0px;
    }

    .inicio-text-three-card {
        max-width: 100%;
        margin-top: -475px;
        margin-bottom: 100px;
        width: 500px;
        height: 435px;
        margin-left: 10px;
        padding-right: 10px;
    }

    .inicio-text-three-card h2 {
        margin-top: 400px;
    }

    .inicio-text h2 {
        padding-left: 10px;
        margin-top: 400px;
        /**************** add*/
    }

    .inicio-text-two-card {
        margin-top: 80px;
    }

    .inicio-text-two-card h2 {
        text-align: center;
        margin-top: 415px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .inicio-text-two-card h3 {
        text-align: center;
        font-size: 1.3rem;
    }

    .inicio-text-three-card h3 {
        margin-top: -95px;
        text-align: center;
    }

    .btn-acessar {
        display: inline-block;
        text-align: center;
        width: 97%;
    }

    .slider-dots {
        display: none;
    }

    .slider-controls button {
        padding: 10px 0px;
        top: 60%;
    }

    .conheca-a-mendes-section {
        padding: 40px 5%;
        margin-bottom: 0px;
        padding-bottom: 0px;
        gap: 0px;
    }

    .conheca-a-mendes-content {
        margin-bottom: 0px;
    }

    .conheca-a-mendes-title {
        font-size: 1.9rem;
        line-height: 1.4;
    }

    .conheca-a-mendes-subtitle {
        font-size: 1rem;
    }

    .conheca-a-mendes-text {
        font-size: 0.85rem;
        line-height: 22px;
        margin-bottom: 35px;
    }

    .conheca-a-mendes-button {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .conheca-a-mendes-image,
    .conheca-a-mendes-content {
        margin-top: 0px;
    }

    /* Trabalhe conosco*/
    .trabalhe-conosco-section {
        padding: 40px 5%;
        margin-bottom: 0px;
        padding-bottom: 0px;
        gap: 0px;
    }

    .trabalhe-conosco-content {
        margin-bottom: 0px;
    }

    .trabalhe-conosco-title {
        font-size: 1.9rem;
        line-height: 1.4;
    }

    .trabalhe-conosco-subtitle {
        font-size: 1rem;
    }

    .trabalhe-conosco-text {
        font-size: 0.85rem;
        line-height: 22px;
        margin-bottom: 35px;
    }

    .trabalhe-conosco-button {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .trabalhe-conosco-image,
    .trabalhe-conosco-content {
        margin-top: 0px;
    }

    .selo h2 {
        font-size: 1.05rem;
    }

    .card-text p {
        font-size: 0.9rem;
    }

    .oferecimento-button a {
        font-size: 0.95rem;
        padding: 12px 24px;
    }

    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        margin-left: 0px;
        margin-right: 0px;
    }

    .logo-item {
        height: 90px;
        width: 90px;
    }

    .oferecimento-section {
        padding: 50px 20px;
    }
}

@media screen and (max-width: 400px) {
    .navbar .nav-menu.active {
        padding-right: 15px;
    }

    .conheca-a-mendes-image {
        max-height: 340px;
    }

    .conheca-a-mendes-content {
        padding-bottom: 20px;
        margin-top: 30px;
                margin-bottom: 15px;
    }

    .trabalhe-conosco-image {
        max-height: 340px;
    }

    .trabalhe-conosco-image {
        padding-top: 0px;
        margin-bottom: 0px;
        max-height: 260px;
    }

    .trabalhe-conosco-content {
        align-content: flex-end;
        padding-bottom: 40px;
    }

    .oferecimento-header h1 {
        font-size: 1.4rem;
    }

    .oferecimento-header p {
        font-size: 0.9rem;
    }
}