/* =========================================================================
   ALIANÇA ATACADISTA - CSS ORGANIZADO
   Site institucional e comercial
   Última atualização: Janeiro 2026

   ESTRUTURA:
   - Estilos base por página (sem media queries)
   - Media queries consolidadas ao final (organizadas por breakpoint)

   PÁGINAS:
   1. Header e Navegação
   2. Home Page (Banner, Tabs, Stats)
   3. Hero Internal
   4. Catalog Page
   5. Partners Page
   6. Careers Page
   7. Contact Page
   8. About Page
   9. Footer
   10. Media Queries (Consolidadas)
   ========================================================================= */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #4C566F;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter Tight', sans-serif;
}

/* Header */
.header {
    background: #F2F2F2;
    color: #4C566F;
    padding: 1rem 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
    max-width: 1226px;
    margin: 0 auto;
    padding: 0 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-family: 'Manrope', sans-serif;
    color: #707070;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.nav-menu a:hover {
    color: #267BC7;
}

.nav-menu li {
    position: relative; /* <<< importante */
}

.nav-menu li a {
    position: relative; /* garante que o ::after se baseie no link */
    font-family: 'Manrope', sans-serif;
    color: #707070;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0; /* dá espaço para o underline */
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -24px; /* distância abaixo do texto */
    width: 100%;
    height: 6px; /* espessura do identificador */
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    background-color: #267BC7; /* cor azul da marca */
    transform: scaleX(0); /* escondido inicialmente */
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: scaleX(1); /* aparece no hover ou ativo */
}

.nav-menu li a:hover {
    color: #0a3fa1; /* muda a cor do texto no hover */
}

.fale-conosco-btn {
    background: #267BC7;
    font-family: 'Manrope', sans-serif;
    color: #fff !important; /* garante que o texto fique branco */
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.fale-conosco-btn:hover {
    transform: translateY(-1px);
}

/* Hero Section */
/* =========================
   Hero Section (AJUSTADO)
========================= */

.banner-container {
    width: 100%;
    margin: 0;
    background: #00417B;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* banner-content NÃO É MAIS USADO */
.banner-content {
    display: none;
}

/* =========================
   SLIDES AGORA SÃO FULL
========================= */

.slide-content {
    display: none;
    animation: fadeIn 0.6s ease-in-out;

    width: 100%;
    min-height: 500px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.slide-content.active {
    display: block;
}

/* Overlay simples (opcional – pode remover se não quiser) */
.slide-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(0, 65, 123, 0.9) 0%,
            rgba(0, 65, 123, 0.85) 40%,
            rgba(0, 65, 123, 0.4) 65%,
            rgba(0, 65, 123, 0) 100%
    );
}

/* =========================
   CONTENT AREA = antigo banner-content
========================= */

.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;

    min-height: 500px;
    display: flex;
    align-items: center;

    position: relative;
    z-index: 2;
}

.slide-1 {
    background-image: url("../images/banner-estrutura.png");
}

.slide-2 {
    background-image: url("../images/banner-produtos.png");
}

.content-area {
    justify-content: flex-start;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-text h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3949ab;
    color: white;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #303f9f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* =========================
   Texto ocupa 50% do container
========================= */

.content-text {
    width: 50%;
    max-width: 520px; /* opcional, mantém boa leitura */
}

.tabs-container {
    display: flex;
    background: #012F58;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    gap: 0;
    align-items: flex-end;
}

.tab {
    flex: 1;
    padding: 25px 40px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    background: #012F58;
    height: 87px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border-radius: 0;
}

.tab-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.tab-number::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    margin-top: 5px;
    border-radius: 2px;
}

.tab-title {
    display: block;
    font-size: 15px;
    color: white;
    line-height: 1.4;
    transition: all 0.3s ease;
    flex: 1;
}

.tab.active {
    background: #022443;
    height: 103px;
    border-left: 3px dotted #0161B7;
    border-top: none;
    margin-top: -16px;
}

.tab.active .tab-number {
    color: #64b5f6;
}

.tab.active .tab-number::after {
    background: white;
}

.tab.active .tab-title {
    color: white;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes slideRight {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}

/* Indicador de progresso */
.progress-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: #0161B7;
    width: 0%;
    transition: width 0.1s linear;
}

.tab.active .progress-indicator {
    animation: progress 5s linear;
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}



/* Info Blocks */
.info-blocks {
    background: #1e40af;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.info-blocks-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
}

.info-block-number {
    font-size: 24px;
    font-weight: 700;
    color: #60a5fa;
    min-width: 40px;
}

.info-block-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* Stats Section */
.stats {
    background: #f8fafc;
    padding: 6rem 0;
}

.stats-header {
    text-align: left;
    margin-bottom: 4rem;
}

.stats-header h2 {
    font-size: 36px;
    color: #4C566F;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-description {
    color: #1e40af;
    font-size: 16px;
    font-weight: 500;
}



/* Connection Section */
.connection {
    padding: 4rem 0;
    background: white;
}

/* Content Grid */
.connection-content {
    display: grid;
    grid-template-columns: 708px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Image Slider Container */
.connection-image-slider {
    position: relative;
    width: 708px;
}

.image-slider-wrapper {
    position: relative;
}

.image-slider-container {
    overflow: hidden;
    border-radius: 20px;
}

.connection-image {
    position: relative;
    background-color: #F0EFEF;
    /* padding movido para .slider-inner */
    border-radius: 20px;
    overflow: hidden;
    width: 708px;
    height: 328px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: #4C566F;
}

.slider-nav:hover {
    background: #4C566F;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
    left: -25px;
}

.slider-nav.next {
    right: -25px;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    background: white;
    color: #4C566F;
    transform: translateY(-50%) scale(1);
}

/* Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #4C566F;
    width: 32px;
    border-radius: 6px;
}

.indicator:hover:not(.active) {
    background: #9CA3AF;
}

/* Text Content - Permanece fixo */
.connection-text {
    max-width: 600px;
}

.connection-text h2 {
    font-size: 32px;
    font-family: 'Manrope', sans-serif;
    color: #4C566F;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.connection-text p {
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    color: #00417B;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.learn-more-btn {
    background: transparent;
    color: #00417B;
    padding: 0.875rem 2rem;
    border: 2px solid #00417B;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s;
}

.learn-more-btn:hover {
    background: #00417B;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */






/* ===== Ajustes para manter espaço interno e evitar vazamento ===== */
.connection-image {
    position: relative;
    background-color: #F0EFEF;
    border-radius: 20px;
    overflow: hidden;
    width: 708px;
    height: 328px;
}

/* Novo wrapper interno para manter padding sem quebrar overflow */
.slider-inner {
    /*padding: 22px;*/
    height: 100%;
    box-sizing: border-box;
}

.image-slider-container {
    overflow: hidden;
    border-radius: 20px;
    width: 708px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    margin: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}


/* ===== Versão estável: mantém espaço cinza e elimina vazamento ===== */
.connection-image {
    position: relative;
    background-color: #F0EFEF;
    border-radius: 20px;
    overflow: hidden;
    width: 708px;
    height: 328px;
}

.slider-inner {
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    padding: 22px; /* respiro cinza mantido */
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* ===========================================
   SECTION CONNECTION - AJUSTES RESPONSIVOS
   =========================================== */

/* Tablets e Mobile (até 968px) */


/* Mobile pequeno (até 480px) */


/* Landscape em mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .connection-image {
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }

    .connection {
        padding: 40px 0;
    }
}

/* Tablet específico (768px - 968px) */
@media (min-width: 768px) and (max-width: 968px) {
    .connection-text {
        max-width: 600px;
        margin: 0 auto;
    }

    .connection-image {
        max-width: 600px;
        margin: 0 auto;
    }
}


/* Value Section */
.value-section {
    background: #f8fafc;
    padding: 6rem 0;
}

.value-header {
    text-align: center;
    margin-bottom: 4rem;
}

.value-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    color: #4C566F;
    margin-bottom: 2rem;
    font-weight: 600;
}

.value-tabs {
    display: inline-flex;
    gap: 0;
    background: white;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #4C566F;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Manrope', sans-serif;
}

.tab-btn.active {
    background: #044B8A;
    color: white;
}

.tab-btn svg {
    flex-shrink: 0;
}

.value-content {
    margin-top: 3rem;
}

.tab-content {
    display: none;
    padding: 3.5rem;
    background-color: #f0efef;
    max-width: 1126px;
    margin: 0 auto;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    min-height: 552px;
}

/* Background para a tab comercial */
.tab-content#comercial {
    background-image: url('../images/mapa_caminhao02.png');
}

/* Background para a tab logística */
.tab-content#logistica {
    background-image: url('../images/empilhadeira_alianca.png');
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.value-text {
    max-width: 550px;
}

.value-text h3 {
    font-size: 32px;
    color: #00417b;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.value-subtitle {
    font-weight: 600;
    color: #4C566F;
    margin-bottom: 1rem;
    font-size: 16px;
}

.value-text p {
    color: #4C566F;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 16px;
}

.value-features {
    margin: 2rem 0;
}

.feature-item {
    font-family: 'Manrope';
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: #00417B;
    font-weight: 400
}

.check-icon {
    background: url('../images/icon_feature.png');
    width: 17px;
    height: 17px;
    margin-top: 2px;
}

.value-btn {
    background: transparent;
    color: #00417b;
    padding: 12px 28px;
    border: 2px solid #00417b;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 14px;
    margin-top: 1rem;
}

.value-btn:hover {
    background: #00417b;
    color: white;
}

/* Remover o elemento value-image já que agora é background */
.value-image {
    display: none;
}

/* Responsivo */






/* Catalog Section */


.catalog-image {
    position: relative;
    width: 600px;
    height: 554px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fundo com círculos */
.background-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-circles img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Celulares */
.phones {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
}

.phones img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Efeito parallax suave ao passar o mouse */
.catalog-image:hover .phones {
    transform: translate(10px, -10px);
}

.catalog-section {
    background: white;
    padding: 6rem 0;
}

.catalog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.catalog-content-internal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.phones-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.phone-1 {
    z-index: 2;
    margin-right: -50px;
}

.phone-2 {
    z-index: 1;
}

.phone img {
    width: 200px;
    height: auto;
    display: block;
}

.catalog-text h2 {
    font-size: 36px;
    color: #4C566F;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.catalog-text-internal h2 {
    font-size: 32px;
    color: #4C566F;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.catalog-text p {
    color: #4C566F;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 16px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: 219px;
    height: 43px;

    border: 2px solid #003A78; /* azul escuro */
    border-radius: 30px;

    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #003A78;

    text-decoration: none;
    padding: 0 18px;

    transition: background-color .2s ease, color .2s ease;
}

.download-btn:hover {
    background-color: #003A78;
    color: white;
}

/* Ícone */
.download-btn .icon-catalog {
    width: 18px;
    height: 18px;
    background-image: url('../images/icn_btn_catalog.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/*
.catalog-btn {
    background: transparent;
    color: #00417b;
    padding: 0.5rem 1rem;
    border: 2px solid #00417b;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 10px;
}

.catalog-btn:hover {
    background: #00417b;
    color: white;
}
 */

/* ===========================================
   SECTION CATALOG HOME - AJUSTES RESPONSIVOS
   =========================================== */

/* Tablets e Mobile (até 968px) */


/* Tablet específico (768px - 968px) */
@media (min-width: 768px) and (max-width: 968px) {
    .catalog-image {
        max-width: 450px;
        min-height: 400px;
    }

    .catalog-text {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile pequeno (até 480px) */


/* Landscape em mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .catalog-section {
        padding: 40px 0 !important;
    }

    .catalog-image {
        min-height: 280px !important;
        max-width: 400px;
    }

    .catalog-content {
        gap: 30px !important;
    }
}

/* Extra small devices */


.catalog-text-internal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600; /* SemiBold */
    height: 43px;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.catalog-text-internal .download-btn {
    width: 219px;
    border: 1px solid #00417B;
    color: #00417B;
    background-color: transparent;
}

.catalog-text-internal .download-btn:hover {
    background-color: #00417B;
    color: #ffffff;
}

/* Botão: Falar com um representante */
.catalog-text-internal .talk-btn {
    width: 227px;
    background-color: #267BC7;
    color: #ffffff;
    border: 1px solid #267BC7;
}

.catalog-text-internal .talk-btn:hover {
    background-color: #1f69aa;
    border-color: #1f69aa;
}

.catalog-text-internal .catalog-actions {
    display: flex;
    gap: 16px; /* espaço entre os botões */
    margin-top: 24px;
}

/* Why Choose Section */
.why-choose-section {
    background: url('../images/bg_whychoose.png') no-repeat top center;
    padding: 6rem 0;
}



.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.logo-icon {
    margin-top: -170px;
    text-align: center;
}

.why-choose-text h2 {
    font-family: 'Manrope';
    font-size: 32px;
    color: #4C566F;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.3;
}

.why-features {
    margin-bottom: 2rem;
}

.client-btn {
    width: 161px;
    height: 43px;
    border: 1px solid #00417B;
    border-radius: 30px;
    background: transparent;
    color: #00417B;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
    padding: 8px 0;
}

.client-btn:hover {
    background: #00417B;
    color: white;
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Career Section */
.career-section {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.career-text {
    color: white;
    text-align: left;
}

.career-text img {
    height: 60px;
    margin-bottom: 1rem;
}

.career-text h2 {
    font-size: 36px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.career-btn {
    background: white;
    color: #1e40af;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.career-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.career-image img {
    max-width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #07569D 0%, #05508A 50%, #00417B 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 2rem;
    margin-top: 80px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-address p {
    margin-bottom: 0.5rem;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
}

/*
.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 14px;
    opacity: 0.8;
}
 */

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre ícone e texto */
}

.contact-info img {
    width: 20px; /* Ajuste conforme necessário */
    height: 20px;
}

.contact-info p:not(:last-child) {
    margin-bottom: 10px; /* Aplica espaço apenas entre os itens, não no último */
}

/* ===================================================
   TRANSPARENCY REPORT HIGHLIGHT - OPTION 3
   Destaque para o Relatório de Transparência
   =================================================== */
li.transparency-highlight {
    background: #FFFEF8;
    border-radius: 8px;
    padding: 12px 15px 12px 18px;
    margin-top: 10px;
    margin-bottom: 0;
    border-left: 5px solid #F5C842;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
}

li.transparency-highlight:hover {
    background: #FFF9E6;
    border-left-width: 8px;
    box-shadow: 0 4px 12px rgba(245, 200, 66, 0.3);
    transform: translateX(3px);
}

li.transparency-highlight a {
    color: #8B6914 !important;
    font-weight: 600;
    font-size: 11px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 1 !important;
    line-height: 1.4;
}

li.transparency-highlight a::after {
    content: "\2192";
    font-size: 11px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

li.transparency-highlight:hover a::after {
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.8;
}



/* Additional Responsive Design */

.opportunities {
    width: 100%;
    height: 204px;
    background: url("../images/tarja_alianca.png");
    background-size: cover;
    background-position: center;
    margin-top: -200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 75px;
    padding-left: 185px;
    box-sizing: border-box;
    border-radius: 20px;
}

.opportunities span {
    color: white;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Manrope';
    text-align: center;
}

.opportunities a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.opportunities a:hover {
    transform: translateY(-2px);
}

.opportunities img {
    display: block;
    width: 266px;
    height: 148px;
    cursor: pointer;
    margin-top: 20px;
}

/* ===========================================
   OPPORTUNITIES BANNER - AJUSTES RESPONSIVOS
   Design Simplificado: Bloco azul limpo
   =========================================== */

/* Tablets e Mobile (até 968px) */


/* Mobile pequeno (até 480px) */


/* Extra small devices */


/* Landscape em mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .opportunities {
        flex-direction: row !important;
        padding: 24px 30px !important;
        gap: 24px;
        min-height: auto;
        margin-top: -60px !important;
        align-items: center;
        justify-content: center;
    }

    .opportunities span {
        font-size: 18px !important;
        text-align: left;
        flex: 1;
    }

    .opportunities a {
        flex-shrink: 0;
    }
}

/* Be Seller - Footer*/

.be-seller {
    width: 1226px;
    height: 309px;
    background: url("../images/banner-mulher-rodape.png") no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 185px;
    padding-top: 75px;
    position: relative;
    margin-top: -315px;
}

.be-seller-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
    margin-left: 315px;
}

.be-seller-content p {
    font-size: 18px;
    color: #4C566F;
    font-weight: 500;
    margin: 0;
}

.btn-expand img {
    display: block;
}

/* Pages - Internal */
.cards-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    flex: 1;
    background: #F0EFEF;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    position: relative;
}

.icon {
    width: 42px;
    height: 42px;
    background: #1e3a8a;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #4C566F;
    margin-bottom: 15px;
}

.card-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #00417B;
    line-height: 1.5;
}

.text-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px dashed #e0e0e0;
}

.text-section p {
    color: #1e3a8a;
    line-height: 1.8;
    text-align: center;
}



.logistics {
    margin-top: 120px;
    padding: 60px 40px;
    background-color: #F0EFEF;
}

/*
.logistics .container {
    max-width: 1200px;
    margin: 0 auto;
}
 */

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

.logistics .content-left {
    flex: 1;
    padding-right: 40px;
}

.logistics .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066CC;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.logistics .tag::before {
    content: "⚙";
    font-size: 16px;
}

.logistics .title {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #0E5BA0;
    margin-bottom: 24px;
}

.logistics .description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0E5BA0;
    line-height: 1.6;
}

.logistics .logistics-image {
    flex-shrink: 0;
}

.logistics .logistics-image img {
    width: 350px;
    height: auto;
    border-radius: 50%;
}

.logistics .cards-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -125px;
}

.logistics .card {
    width: 380px;
    height: 371px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.logistics .icon {
    width: 60px;
    height: 60px;
    background: #E8F2FF;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066CC;
    font-size: 28px;
}

.logistics .card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #4C566F;
    margin-bottom: 20px;
    text-align: left;
}

.logistics .card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logistics .card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.logistics .card-item::before {
    content: "⚙";
    color: #0066CC;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.logistics .card-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4C566F;
    line-height: 1.5;
    text-align: left;
}

/* Link Saiba Mais */
.saiba-mais-link {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0066CC;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.saiba-mais-link::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.3s ease;
}

.saiba-mais-link:hover {
    color: #004a99;
}

.saiba-mais-link:hover::after {
    transform: translateX(4px);
}

/* ===========================================
   MODAIS DE LOGÍSTICA
   =========================================== */

.modal-logistics {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-logistics.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 10000;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: #F0EFEF;
    border-radius: 50%;
    font-size: 24px;
    color: #4C566F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #F0EFEF;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: #E8F2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-icon img {
    width: 32px;
    height: 32px;
}

.modal-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #012F58;
    margin: 0;
    line-height: 1.3;
}

.modal-body {
    padding: 32px 40px 40px;
}

.modal-body p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4C566F;
    margin-bottom: 20px;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-body strong {
    color: #012F58;
    font-weight: 600;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.modal-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4C566F;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.modal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
    font-size: 18px;
}

.modal-list li:last-child {
    margin-bottom: 0;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.section-title {
    color:#4C566F;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 600;
}

/* Contact Section */
.contact-us {
    background-color: #F0EFEF;
    padding: 0 40px 80px;
}

.contact-us .container {
    max-width: 1200px;
    min-height: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.contact-us .info-column {
    flex: 1;
    padding-top: 60px;
}

.contact-us .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2948B1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-us .info-text {
    font-size: 16px;
    color: #4C566F;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-us .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-us .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-us .contact-icon {
    width: 40px;
    height: 40px;
    background: #E8F2FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2948B1;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-us .contact-link {
    font-size: 18px;
    color: #2948B1;
    text-decoration: none;
    font-weight: 500;
}

.contact-us .contact-link:hover {
    text-decoration: underline;
}

.contact-us .map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-us .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Right Column - Form */
.contact-us .form-column {
    flex: 1;
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.contact-us .form-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 585px;
    height: 584px;
}

.contact-us .form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-us .form-icon {
    color: #2948B1;
    font-size: 24px;
}

.contact-us .form-title {
    font-size: 18px;
    color: #0E5BA0;
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
}

.contact-us .form-group {
    margin-bottom: 20px;
}

.contact-us .form-input,
.contact-us .form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #4C566F;
    transition: border-color 0.3s;
}

.contact-us .form-input:focus,
.contact-us .form-textarea:focus {
    outline: none;
    border-color: #2948B1;
}

.contact-us .form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-us .form-button {
    width: 100%;
    padding: 16px;
    background: #2948B1;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-us .form-button:hover {
    background: #1E3A8A;
}




/* Hero Base */
.hero-internal {
    width: 100%;
    height: 562px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Variações de Background - Imagens */
.hero-contact {
    background: url('../images/banner-faleconosco.jpg') no-repeat center;
}

.hero-about {
    background: url('../images/banner-sobre.png') no-repeat center;
    height: 562px;
}

.hero-catalog {
    background: url('../images/banner-catalogo.jpg') no-repeat center;
    height: 562px;
}

.hero-partners {
    background: url('../images/banner-parceiros.jpg') no-repeat center;
    height: 562px;
}

/*
.hero-services {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&h=562&fit=crop');
}

.hero-careers {
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&h=562&fit=crop');
}

.hero-logistics {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&h=562&fit=crop');
}
 */

/* Responsivo */


.about-us-icon-container {
    text-align: center;
    margin-top: 113px;
}

.about-us-main-text {
    text-align: center;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-us-main-text h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin-top: 10px;
}

.about-us-main-text p {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
    color: #00417B;
}

p.about-us-secondary-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #00417B;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   MVV CONTAINER - MISSÃO E VISÃO
   =========================================== */

.mvv-container {
    max-width: 1000px;
    margin: 50px auto;
    background: #F0EFEF;
    border-radius: 16px;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.mvv-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.mvv-content {
    flex: 1;
}

.mvv-content h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #012F58;
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: left;
}

.mvv-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4C566F;
    margin: 0;
    text-align: left;
}

/* ===========================================
   VALUES CARDS - NOSSOS VALORES
   =========================================== */

.values-cards-wrapper {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: #F0EFEF;
    border-radius: 12px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Card de introdução - Nossos Valores */
.value-card-intro {
    background: #F0EFEF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.value-title-intro {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #012F58;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

.value-description-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #4C566F;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Ícones dos valores */
.value-icon {
    width: 42px;
    height: 42px;
    background: #1e3a8a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* Títulos dos valores */
.value-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #4C566F;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

/* Descrições dos valores */
.value-description {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #00417B;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* ===========================================
   ONDE ESTAMOS - ESTADOS E CIDADES
   =========================================== */

.onde-estamos {
    padding: 80px 0;
    background: #fff;
}

.onde-estamos-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.onde-estamos .section-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: #012F58;
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4C566F;
    margin-bottom: 20px;
    text-align: left;
}

.section-intro strong {
    color: #012F58;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #012F58;
    margin-top: 32px;
    text-align: left;
}

.estados-tables {
    width: 100%;
    margin: 40px auto 0;
}

.estados-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.estados-table thead {
    background: #F0EFEF;
}

.estados-table thead th {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #012F58;
    text-align: left;
    padding: 20px 24px;
    border-bottom: 2px solid #e0e0e0;
}

.estados-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.estados-table tbody tr:last-child {
    border-bottom: none;
}

.estados-table tbody tr:hover {
    background-color: #f8f9fa;
}

.estado-cell {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #012F58;
    padding: 18px 24px;
}

.cidades-cell {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #4C566F;
    padding: 18px 24px;
}

/* ===========================================
   ABOUT US PAGE - AJUSTES RESPONSIVOS
   =========================================== */

/* Tablets e Mobile (até 968px) */


/* Mobile pequeno (até 480px) */


/* Extra small devices */


/* Landscape em mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero-internal {
        height: 250px !important;
    }

    .logistics .logistics-header {
        flex-direction: row !important;
        gap: 30px;
    }

    .logistics .content-left {
        text-align: left;
    }

    .logistics .tag-how-we-do {
        text-align: left;
    }

    .logistics .title {
        text-align: left;
    }

    .logistics .description {
        text-align: left;
    }

    .logistics .logistics-image img {
        width: 200px !important;
    }

    .logistics .cards-wrapper {
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .logistics .card {
        width: calc(50% - 10px) !important;
    }
}

/* ===== Careers Page Styles ===== */

.careers-icon-container {
    text-align: center;
    margin-top: 113px;
}

.careers-icon-container img {
    width: 114px;
    height: 33px;
}

.careers-main-text {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.careers-main-text h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #00417B;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
}

.careers-main-text p {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #4C566F;
    text-align: center;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 60px;
}

.careers-mosaic {
    width: 100%;
    max-width: 1226px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.careers-mosaic img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.careers-benefits {
    background: #F8F9FA;
    padding: 80px 0;
}

.benefits-tag {
    text-align: center;
    margin-bottom: 30px;
}

.benefits-tag img {
    height: 33px;
}

.benefits-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #0E5BA0;
    text-align: center;
    margin: 0 auto 30px;
    max-width: 600px;
    line-height: 1.3;
}

.benefits-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #777A81;
    text-align: left;
    margin: 0 auto 60px;
    max-width: 1040px;
    line-height: 1.6;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(4, 266px);
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
}

.benefit-card {
    width: 266px;
    height: 260px;
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #E8F2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/*
.benefit-icon img {
    width: 30px;
    height: 30px;
}
 */

.benefit-card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #4C566F;
    line-height: 1.4;
    text-align: left;
}

/* Responsive */


/* ===== Jobs Section ===== */

.careers-jobs {
    background: #ffffff;
    padding: 100px 0;
}

/* Tag */
.jobs-tag {
    text-align: center;
    margin-bottom: 25px;
}

.jobs-tag img {
    height: 33px;
}

/* Title */
.jobs-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #0E5BA0;
    text-align: center;
    margin-bottom: 20px;
}

/* Description */
.jobs-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #777A81;
    text-align: center;
    margin-bottom: 60px;
}

/* Cards grid */
.jobs-cards {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    gap: 30px;
    justify-content: center;
}

/* Card */
.job-card {
    background: #ffffff;
    border: 1px solid #E6E8EC;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Location */
.job-location {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #4C566F;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.job-location img {
    width: 16px;
    height: 16px;
}

/* Job title */
.job-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #2E3440;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* Button */
.job-button {
    width: fit-content;
    padding: 14px 28px;
    background: #1E56C5;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.job-button:hover {
    background: #1746A2;
}

/* Responsive */




/* ===== Talent Section ===== */

.careers-talent {
    background: #ffffff;
    padding: 120px 0;
    text-align: center;
}

/* Title */
.talent-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #1E2E5C;
    margin-bottom: 20px;
}

/* Description */
.talent-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #6B7280;
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Form container */
.talent-form-container {
    width: 585px;
    height: 769px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: left;
}

/* Form title */
.talent-form-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #0E5BA0;
    margin-bottom: 30px;
}

/* Form */
.talent-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Inputs */
.talent-form input[type="text"],
.talent-form input[type="email"],
.talent-form input[type="tel"] {
    height: 56px;
    border-radius: 16px;
    border: 1px solid #EAE8E8;
    background-color: #F8F8F8;
    padding: 0 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #1E2E5C;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.talent-form input::placeholder {
    color: #9CA3AF;
}

/* Focus */
.talent-form input:focus {
    border-color: #0E5BA0;
    background-color: #FFFFFF;
}

/* Upload */
.talent-upload {
    height: 96px;
    border: 1px dashed #EAE8E8;
    border-radius: 16px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.talent-upload:hover {
    border-color: #0E5BA0;
    background-color: #FFFFFF;
}

/* Upload icon */
.upload-icon {
    width: 28px;
    height: 28px;
    background: url('images/icn_upload.png') center / contain no-repeat;
}

/* Checkbox */
.talent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
}

.talent-checkbox input {
    margin-top: 4px;
}

.talent-checkbox a {
    color: #0E5BA0;
    text-decoration: underline;
}

/* Button */
.talent-button {
    margin-top: 20px;
    height: 56px;
    background: #0B5394;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.talent-button:hover {
    background: #083E73;
}

/* Responsive */



/* ===============================
   Catalog > Features
   =============================== */

.catalog .catalog-main-text {
    color: #00417B;
    font-size: 16px;
    max-width: 585px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.catalog .features {
    width: 100%;
    margin-top: 64px;
}

/* Container dos cards */
.catalog .features .features__container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 283px);
    justify-content: center;
    gap: 24px;
}

/* Card */
.catalog .features .feature-card {
    width: 283px;
    height: 196px;

    background-color: #F0EFEF;
    border-radius: 16px;

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

    padding: 24px;
    text-align: center;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover (opcional, mas elegante) */
.catalog .features .feature-card:hover {
    opacity: 1;
    transform: translateY(-4px);
}

/* Ícone */
.catalog .features .feature-card__icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
}

.catalog .features .feature-card__icon svg,
.catalog .features .feature-card__icon img {
    width: 32px;
    height: 32px;
    display: block;
}

/* Texto */
.catalog .features .feature-card__text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #0A3D91;
}

/* ===============================
   Responsividade
   =============================== */





.partners-icon-container {
    text-align: center;
    margin-top:115px;
}

.partners-main-text {
    color: #00417B;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.partners-main-image {
    width: 100%;
    height: auto;
    display: block;
}


/* Section vantagens parceiros */
.partners-advantages {
    background: #F6F8FA;
    padding: 80px 0;
    text-align: center;
}

.partners-badge {
    width: 145px;
    margin-left: auto;
    margin-right: auto;
}

.partners-advantages h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #0B3C89;
    margin-bottom: 48px;
}

/* Cards */
.partners-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-card {
    width: 266px;
    height: 260px;
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #E7F0FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 18px;
    height: 18px;
}

.partner-card p {
    font-size: 16px;
    line-height: 1.4;
    color: #2E3A59;
    font-weight: 500;
}



/* Section para quem são as parcerias */
.partners-target {
    background: #ffffff;
    padding: 100px 0;
}

.partners-target-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Imagens */
.partners-target-image {
    display: flex;
    justify-content: center;
}

.partners-target-image img {
    width: 220px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Texto central */
.partners-target-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.partners-target-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0A58CA;
    margin-bottom: 16px;
}

.partners-target-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5F6B7A;
}

/* ===========================================
   FOOTER - AJUSTES RESPONSIVOS
   =========================================== */

/* Tablets e Mobile (até 968px) */


/* Mobile pequeno (até 480px) */


/* Extra small devices */


/* Landscape em mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .footer-content {
        margin-top: 40px !important;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 32px !important;
    }

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

    .social-links {
        justify-content: flex-start;
    }

    .contact-info {
        align-items: flex-start;
    }

    .contact-info p {
        justify-content: flex-start;
    }
}

/* ===================================================
   AJUSTES RESPONSIVOS PARA HERO-INTERNAL
   =================================================== */

/* Hero base - mantendo o padrão desktop */
.hero-internal {
    width: 100%;
    height: 562px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-about {
    background: url('../images/banner-sobre.png') no-repeat center;
    background-size: cover;
    height: 562px;
}

/* ===================================================
   TABLET (até 968px)
   =================================================== */


/* ===================================================
   MOBILE MÉDIO (até 768px)
   =================================================== */


/* ===================================================
   MOBILE PEQUENO (até 480px)
   =================================================== */


/* ===================================================
   MOBILE EXTRA PEQUENO (até 360px)
   =================================================== */


/* ===================================================
   LANDSCAPE MODE (Modo paisagem em mobile)
   =================================================== */
@media (max-width: 968px) and (orientation: landscape) {
    .hero-internal {
        height: 280px !important; /* Reduzido para landscape */
    }

    .hero-about {
        background-position: center 40%; /* Ajusta verticalmente */
    }
}

/* ===================================================
   AJUSTES ADICIONAIS PARA MELHOR VISUALIZAÇÃO
   =================================================== */

/* Se você tiver overlay ou gradiente no hero */
.hero-internal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0, 65, 123, 0.1) 0%,
            rgba(0, 65, 123, 0.3) 100%
    );
    pointer-events: none;
}

/* Remove o overlay em mobile se necessário */


/* ===================================================
   AJUSTES RESPONSIVOS - CATALOG SECTION INTERNAL
   Página de catálogo com layout de imagem + texto
   =================================================== */

/* ===================================================
   DESKTOP - Base (já existe no CSS)
   =================================================== */
.catalog-section {
    background: white;
    padding: 6rem 0;
}

.catalog-content-internal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.catalog-image {
    position: relative;
    width: 600px;
    height: 554px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-text-internal h2 {
    font-size: 32px;
    color: #4C566F;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.catalog-text-internal p {
    color: #4C566F;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 16px;
}

.catalog-text-internal .catalog-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* ===================================================
   TABLET E MOBILE - até 968px
   =================================================== */


/* ===================================================
   TABLET ESPECÍFICO - 768px a 968px
   =================================================== */
@media (min-width: 768px) and (max-width: 968px) {
    .catalog-image {
        max-width: 450px;
        min-height: 400px;
    }

    .catalog-text-internal {
        max-width: 600px;
        margin: 0 auto;
    }

    .catalog-text-internal .catalog-actions {
        flex-direction: row;
        justify-content: center;
    }

    .catalog-text-internal .download-btn,
    .catalog-text-internal .talk-btn {
        width: auto !important;
        min-width: 219px;
        max-width: none;
    }
}

/* ===================================================
   MOBILE PEQUENO - até 480px
   =================================================== */


/* ===================================================
   EXTRA SMALL - até 360px
   =================================================== */


/* ===================================================
   LANDSCAPE MODE - Mobile em paisagem
   =================================================== */
@media (max-width: 968px) and (orientation: landscape) {
    .catalog-section {
        padding: 40px 0 !important;
    }

    .catalog-image {
        min-height: 280px !important;
        max-width: 400px;
    }

    .catalog-content-internal {
        gap: 30px !important;
    }

    .catalog-text-internal h2 {
        font-size: 24px !important;
    }

    .catalog-text-internal .catalog-actions {
        flex-direction: row;
        justify-content: center;
    }

    .catalog-text-internal .download-btn,
    .catalog-text-internal .talk-btn {
        width: auto !important;
        max-width: 220px;
    }
}

/* ===================================================
   AJUSTES RESPONSIVOS - PARTNERS PAGE
   Página de Parceiros com hero, cards e seção target
   =================================================== */

/* ===================================================
   DESKTOP - Base (já existe no CSS)
   =================================================== */

/* Icon container */
.partners-icon-container {
    text-align: center;
    margin-top: 115px;
}

/* Main text */
.partners-main-text {
    color: #00417B;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.partners-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Section vantagens parceiros */
.partners-advantages {
    background: #F6F8FA;
    padding: 80px 0;
    text-align: center;
}

.partners-badge {
    width: 145px;
    margin-left: auto;
    margin-right: auto;
}

.partners-advantages h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #0B3C89;
    margin-bottom: 48px;
}

/* Cards */
.partners-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-card {
    width: 266px;
    height: 260px;
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Section para quem são as parcerias */
.partners-target {
    background: #ffffff;
    padding: 100px 0;
}

.partners-target-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 40px;
}

.partners-target-image {
    display: flex;
    justify-content: center;
}

.partners-target-image img {
    width: 220px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.partners-target-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.partners-target-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0A58CA;
    margin-bottom: 16px;
}

.partners-target-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5F6B7A;
}

/* ===================================================
   TABLET E MOBILE - até 968px
   =================================================== */


/* ===================================================
   MOBILE PEQUENO - até 480px
   =================================================== */


/* ===================================================
   EXTRA SMALL - até 360px
   =================================================== */


/* ===================================================
   LANDSCAPE MODE - Mobile em paisagem
   =================================================== */
@media (max-width: 968px) and (orientation: landscape) {

    .partners-icon-container {
        margin-top: 40px !important;
    }

    .partners-advantages {
        padding: 40px 20px !important;
    }

    .partners-advantages h2 {
        font-size: 24px !important;
        margin-bottom: 24px;
    }

    .partners-target {
        padding: 40px 0 !important;
    }

    /* Imagens lado a lado em landscape */
    .partners-target-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    .partners-target-content {
        grid-column: 1 / -1;
        order: 1;
    }

    .partners-target-image.left {
        order: 2;
    }

    .partners-target-image.right {
        order: 3;
    }

    .partners-target-image img {
        max-width: 160px;
    }
}

/* ===================================================
   OPÇÃO ALTERNATIVA: OCULTAR IMAGENS NO MOBILE
   Descomente estas regras se preferir ocultar as imagens
   =================================================== */

/*

*/

/* ===================================================
   AJUSTES RESPONSIVOS - CAREERS PAGE
   Página de Carreiras com hero, benefits, jobs e talent
   =================================================== */

/* ===================================================
   DESKTOP - Base (já existe no CSS)
   =================================================== */

/* Careers Main Section */
.careers-icon-container {
    text-align: center;
    margin-top: 113px;
}

.careers-icon-container img {
    width: 114px;
    height: 33px;
}

.careers-main-text {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.careers-main-text h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #00417B;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
}

.careers-main-text p {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #4C566F;
    text-align: center;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 60px;
}

.careers-mosaic {
    width: 100%;
    max-width: 1226px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.careers-mosaic img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.careers-benefits {
    background: #F8F9FA;
    padding: 80px 0;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(4, 266px);
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
}

.benefit-card {
    width: 266px;
    height: 260px;
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
}

/* Jobs Section */
.careers-jobs {
    background: #ffffff;
    padding: 100px 0;
}

.jobs-cards {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    gap: 30px;
    justify-content: center;
}

.job-card {
    background: #ffffff;
    border: 1px solid #E6E8EC;
    border-radius: 12px;
    padding: 30px;
    min-height: 230px;
}

/* Talent Section */
.careers-talent {
    background: #ffffff;
    padding: 120px 0;
    text-align: center;
}

.talent-form-container {
    width: 585px;
    height: 769px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ===================================================
   TABLET E MOBILE - até 968px
   =================================================== */


/* ===================================================
   MOBILE PEQUENO - até 600px
   =================================================== */


/* ===================================================
   MOBILE EXTRA PEQUENO - até 360px
   =================================================== */


/* ===================================================
   LANDSCAPE MODE - Mobile em paisagem
   =================================================== */
@media (max-width: 968px) and (orientation: landscape) {

    .careers-icon-container {
        margin-top: 40px !important;
    }

    .careers-main-text {
        margin-bottom: 32px;
    }

    .careers-benefits {
        padding: 50px 20px !important;
    }

    .benefits-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 700px;
    }

    .benefit-card {
        min-height: 180px;
    }

    .careers-jobs {
        padding: 50px 20px !important;
    }

    .jobs-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 700px;
        margin: 0 auto;
    }

    .careers-talent {
        padding: 50px 20px !important;
    }

    .talent-form-container {
        max-width: 550px;
    }
}

/* ===================================================
   TABLET ESPECÍFICO - 768px a 968px
   =================================================== */
@media (min-width: 768px) and (max-width: 968px) {

    .benefits-cards {
        max-width: 650px;
    }

    .jobs-cards {
        max-width: 750px;
    }

    .talent-form-container {
        max-width: 550px;
    }
}

/* ===================================================
   AJUSTES RESPONSIVOS - CONTACT US PAGE
   Página de Contato com hero, info e formulário
   =================================================== */

/* ===================================================
   DESKTOP - Base (já existe no CSS)
   =================================================== */

.contact-us {
    background-color: #F0EFEF;
    padding: 0 40px 80px;
}

.contact-us .container {
    max-width: 1200px;
    min-height: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.contact-us .info-column {
    flex: 1;
    padding-top: 60px;
}

.contact-us .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2948B1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-us .info-text {
    font-size: 16px;
    color: #4C566F;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-us .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-us .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-us .contact-icon {
    width: 40px;
    height: 40px;
    background: #E8F2FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-us .contact-link {
    font-size: 18px;
    color: #2948B1;
    text-decoration: none;
    font-weight: 500;
}

.contact-us .map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-us .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Right Column - Form */
.contact-us .form-column {
    flex: 1;
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.contact-us .form-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 585px;
    height: 584px;
}

.contact-us .form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-us .form-title {
    font-size: 18px;
    color: #0E5BA0;
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
}

.contact-us .form-group {
    margin-bottom: 20px;
}

.contact-us .form-input,
.contact-us .form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #4C566F;
}

.contact-us .form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-us .form-button {
    width: 100%;
    padding: 16px;
    background: #2948B1;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* ===================================================
   TABLET E MOBILE - até 968px
   =================================================== */


/* ===================================================
   MOBILE PEQUENO - até 600px
   =================================================== */


/* ===================================================
   MOBILE EXTRA PEQUENO - até 360px
   =================================================== */


/* ===================================================
   LANDSCAPE MODE - Mobile em paisagem
   =================================================== */
@media (max-width: 968px) and (orientation: landscape) {

    .contact-us {
        padding: 0 20px 40px;
    }

    .contact-us .container {
        gap: 30px;
    }

    .contact-us .info-column {
        padding-top: 30px;
    }

    .contact-us .map-container {
        height: 220px;
    }

    .contact-us .form-card {
        max-width: 650px;
    }

    .contact-us .form-textarea {
        min-height: 80px;
    }
}

/* ===================================================
   TABLET ESPECÍFICO - 768px a 968px
   =================================================== */
@media (min-width: 768px) and (max-width: 968px) {

    .contact-us .container {
        gap: 50px;
    }

    .contact-us .info-column {
        padding-top: 50px;
    }

    .contact-us .map-container {
        height: 300px;
    }

    .contact-us .form-card {
        max-width: 650px;
        padding: 32px 28px;
    }

    .contact-us .form-input,
    .contact-us .form-textarea {
        padding: 15px;
        font-size: 16px;
    }

    .contact-us .form-textarea {
        min-height: 120px;
    }

    .contact-us .form-button {
        padding: 16px;
        font-size: 16px;
    }
}



/* =========================================================================
   MEDIA QUERIES RESPONSIVAS (CONSOLIDADAS)
   Organizadas por breakpoint para evitar duplicação
   ========================================================================= */


/* ---------------------------------------------------------------------------
   LARGE SCREEN - max-width: 1200px
   --------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    /* Home Page */
    .connection-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
    }
    .connection-image-slider {
        width: 100%;
        max-width: 708px;
    }
    .connection-image {
        width: 100%;
        height: auto;
        aspect-ratio: 708 / 328;
    }
    .connection-text {
        text-align: center;
    }

    /* General */
    .catalog .features .features__container {
        grid-template-columns: repeat(2, 283px);
    }
}


/* ---------------------------------------------------------------------------
   TABLET LARGE - max-width: 1024px
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    /* General */
    .jobs-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}


/* ---------------------------------------------------------------------------
   TABLET E MOBILE - max-width: 968px
   --------------------------------------------------------------------------- */
@media (max-width: 968px) {
    /* Home Page */
    .banner-content {
        flex-direction: column;
    }
    .tabs-container {
        flex-direction: column;
    }
    .connection {
        padding: 60px 0;
    }
    .connection-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .connection-image-slider {
        width: 100%;
        max-width: 100%;
    }
    .connection-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 250px;
        border-radius: 16px;
    }
    .connection-text {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }
    .connection-text h2 {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .connection-text p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    /* Hero Internal */
    .hero-internal {
        height: 300px !important;
    }
    .hero-about {
        background-position: center;
    }
    .hero-internal {
        height: 400px !important; /* Aumentado de 300px para 400px */
    }
    .hero-about {
        background-position: center center;
        background-size: cover;
    }

    /* Catalog Page */
    .catalog-section {
        padding: 60px 0;
    }

    /* Catalog HOME (section_catalog_home.php) - Texto primeiro, imagem depois */
    .catalog-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 20px;
    }
    .catalog-content .catalog-text {
        order: 1;
        text-align: center;
    }
    .catalog-content .catalog-image {
        order: 2;
        width: 100% !important;
        height: auto !important;
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
        min-height: 350px;
    }
    .download-btn {
        width: auto !important;
        min-width: 219px;
        padding: 0 24px !important;
        height: 48px !important;
        font-size: 15px !important;
        margin: 0 auto;
    }
    .download-btn .icon-catalog {
        width: 20px !important;
        height: 20px !important;
    }

    /* Catalog PÁGINA (section_catalog.php) - Imagem primeiro, texto depois */
    .catalog-content-internal {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 20px;
    }
    .catalog-content-internal .catalog-image {
        order: 1;
    }
    .catalog-content-internal .catalog-text-internal {
        order: 2;
        text-align: center;
    }
    .catalog-content-internal .catalog-image {
        width: 100% !important;
        height: auto !important;
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
        min-height: 350px;
    }
    .catalog-content-internal .catalog-text-internal .catalog-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 24px;
    }
    .catalog-content-internal .catalog-text-internal .download-btn,
    .catalog-content-internal .catalog-text-internal .talk-btn {
        width: 100% !important;
        max-width: 300px;
        height: 48px !important;
        font-size: 15px !important;
    }

    /* Estilos comuns de catalog-image */
    .catalog-image:hover .phones {
        transform: none;
    }

    /* Partners Page */
    .partners-icon-container {
        margin-top: 60px !important;
        padding: 0 20px;
    }
    .partners-icon-container img {
        max-width: 200px;
        height: auto;
    }
    .partners-main-text {
        font-size: 15px !important;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    .partners-main-image {
        padding: 0 20px;
        margin: 30px 0;
    }
    .partners-advantages {
        padding: 60px 20px !important;
    }
    .partners-badge {
        width: 120px;
    }
    .partners-advantages h2 {
        font-size: 26px !important;
        margin-bottom: 36px;
        padding: 0 20px;
    }
    .partners-cards {
        gap: 20px;
        padding: 0 20px;
    }
    .partner-card {
        width: 100% !important;
        max-width: 350px;
        height: auto !important;
        min-height: 180px;
        padding: 28px 24px !important;
    }
    .partner-card p {
        font-size: 15px !important;
    }
    .partners-target {
        padding: 60px 0 !important;
    }
    .partners-target-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 20px;
    }
    .partners-target-content {
        order: 1;
        max-width: 100%;
    }
    .partners-target-image.left {
        order: 2;
    }
    .partners-target-image.right {
        order: 3;
    }
    .partners-target-image {
        display: flex;
        justify-content: center;
    }
    .partners-target-image img {
        width: 100%;
        max-width: 200px;
        height: auto;
        border-radius: 16px;
    }
    .partners-target-content h2 {
        font-size: 24px !important;
        margin-bottom: 16px;
    }
    .partners-target-content p {
        font-size: 15px !important;
        line-height: 1.6;
    }
    .partners img[src*="banner-rodape"] {
        width: 100%;
        height: auto;
        padding: 0 20px;
        margin-top: 40px;
    }

    /* Careers Page */
    .careers-icon-container {
        margin-top: 60px !important;
        padding: 0 20px;
    }
    .careers-icon-container img {
        width: 100px;
        height: auto;
    }
    .careers-main-text {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .careers-main-text h1 {
        font-size: 32px !important;
        max-width: 100%;
        margin-top: 24px;
        margin-bottom: 16px;
    }
    .careers-main-text p {
        font-size: 16px !important;
        margin-bottom: 40px;
        max-width: 100%;
    }
    .careers-mosaic {
        padding: 0 20px;
    }
    .careers-benefits {
        padding: 60px 20px !important;
    }
    .benefit-card {
        width: 100% !important;
        height: auto !important;
        min-height: 220px;
        padding: 32px 24px !important;
    }
    .benefit-card-title {
        font-size: 16px !important;
    }
    .careers-jobs {
        padding: 60px 20px !important;
    }
    .job-card {
        min-height: 220px;
    }
    .careers-talent {
        padding: 60px 20px !important;
    }
    .talent-title {
        font-size: 26px !important;
        padding: 0 20px;
        margin-bottom: 16px;
    }
    .talent-description {
        font-size: 15px !important;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .talent-form-container {
        width: calc(100% - 40px) !important;
        max-width: 500px;
        height: auto !important;
        padding: 40px 30px !important;
    }
    .talent-form-title {
        font-size: 20px !important;
        margin-bottom: 24px;
    }
    .talent-form {
        gap: 16px;
    }
    .talent-form input[type="tel"] {
        height: 52px !important;
        font-size: 14px !important;
    }
    .talent-upload {
        height: 88px !important;
        font-size: 13px !important;
    }
    .talent-button {
        height: 52px !important;
        font-size: 15px !important;
    }

    /* Contact Page */
    .contact-us .container {
        flex-direction: column;
    }
    .contact-us .form-column {
        margin-top: 0;
    }
    .contact-us {
        padding: 0 20px 60px;
    }
    .contact-us .container {
        flex-direction: column !important;
        gap: 40px;
        min-height: auto !important;
    }
    .contact-us .info-column {
        padding-top: 40px;
        width: 100%;
    }
    .contact-us .section-tag {
        font-size: 13px;
        margin-bottom: 24px;
    }
    .contact-us .info-text {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .contact-us .contact-methods {
        gap: 16px;
        margin-bottom: 32px;
    }
    .contact-us .contact-icon {
        width: 38px;
        height: 38px;
    }
    .contact-us .contact-icon img {
        width: 20px;
        height: 20px;
    }
    .contact-us .contact-link {
        font-size: 16px;
    }
    .contact-us .map-container {
        height: 280px;
        border-radius: 10px;
    }
    .contact-us .form-column {
        margin-top: 0 !important;
        width: 100%;
    }
    .contact-us .form-card {
        width: 100% !important;
        height: auto !important;
        padding: 28px 24px;
        max-width: 600px;
        margin: 0 auto;
    }
    .contact-us .form-header {
        margin-bottom: 24px;
        gap: 10px;
    }
    .contact-us .form-icon img {
        width: 22px;
        height: 22px;
    }
    .contact-us .form-title {
        font-size: 17px;
    }
    .contact-us .form-group {
        margin-bottom: 16px;
    }
    .contact-us .form-textarea {
        padding: 14px;
        font-size: 15px;
        border-radius: 8px;
    }
    .contact-us .form-textarea {
        min-height: 110px;
    }
    .contact-us .form-button {
        padding: 15px;
        font-size: 15px;
    }

    /* About Page */
    .about-us-icon-container {
        margin-top: 60px !important;
        padding: 0 20px;
    }
    .about-us-icon-container img {
        max-width: 120px;
        height: auto;
    }
    .about-us-main-text {
        padding: 0 20px;
        margin-bottom: 40px !important;
    }
    .about-us-main-text h1 {
        font-size: 28px !important;
        margin-top: 20px;
    }
    .about-us-main-text p {
        font-size: 15px !important;
        line-height: 1.6;
        margin-top: 16px;
    }
    p.about-us-secondary-text {
        font-size: 15px !important;
        padding: 0 20px;
        line-height: 1.6;
    }

    /* MVV - Missão e Visão */
    .mvv-container {
        margin: 40px auto;
        padding: 40px 24px;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mvv-content h2 {
        font-size: 17px;
    }
    .mvv-content p {
        font-size: 14px;
    }

    /* Values Cards */
    .values-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .value-card {
        padding: 24px 20px;
    }
    .value-title,
    .value-title-intro {
        font-size: 18px;
    }
    .value-description,
    .value-description-intro {
        font-size: 14px;
    }
    .logistics {
        margin-top: 60px !important;
        padding: 40px 20px !important;
    }
    .logistics .logistics-header {
        flex-direction: column !important;
        gap: 40px;
    }
    .logistics .content-left {
        padding-right: 0 !important;
        text-align: center;
    }
    .logistics .tag-how-we-do {
        text-align: center;
    }
    .logistics .tag-how-we-do img {
        max-width: 150px;
        height: auto;
    }
    .logistics .title {
        font-size: 26px !important;
        margin-bottom: 20px;
        text-align: center;
    }
    .logistics .description {
        font-size: 15px !important;
        text-align: center;
    }
    .logistics .logistics-image {
        text-align: center;
    }
    .logistics .logistics-image img {
        width: 250px !important;
        max-width: 100%;
    }
    .logistics .cards-wrapper {
        margin-top: 40px !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0;
    }
    .logistics .card {
        width: 100% !important;
        height: auto !important;
        padding: 32px 24px !important;
    }

    /* Modais - Responsivo */
    .modal-content {
        max-width: 90%;
        margin: 0 20px;
    }
    .modal-header {
        padding: 32px 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .modal-title {
        font-size: 24px;
    }
    .modal-body {
        padding: 24px;
    }
    .modal-body p,
    .modal-list li {
        font-size: 15px;
    }
    .logistics .icon {
        width: 52px !important;
        height: 52px !important;
        margin-bottom: 20px;
    }
    .logistics .icon img {
        width: 28px;
        height: 28px;
    }
    .logistics .card-title {
        font-size: 20px !important;
        margin-bottom: 16px;
        text-align: center;
    }
    .logistics .card-content {
        gap: 14px;
    }
    .logistics .card-text {
        font-size: 14px !important;
        text-align: center;
    }
    .logistics .card-item {
        justify-content: center;
        text-align: center;
    }
    /* Onde Estamos */
    .onde-estamos {
        padding: 60px 0;
    }
    .onde-estamos-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .onde-estamos .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .section-intro,
    .section-subtitle {
        font-size: 15px;
        text-align: center;
    }
    .estados-tables {
        padding: 0 20px;
    }
    .estados-table thead th {
        font-size: 15px;
        padding: 16px 20px;
    }
    .estado-cell {
        font-size: 15px;
        padding: 16px 20px;
    }
    .cidades-cell {
        font-size: 14px;
        padding: 16px 20px;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-top: 60px !important;
        padding: 0 20px;
    }
    .footer-logo {
        text-align: center;
        margin: 0 auto;
        max-width: 300px;
    }
    .footer-logo img {
        height: 50px !important;
        margin-bottom: 20px;
    }
    .footer-address {
        text-align: center;
    }
    .footer-address p {
        font-size: 13px !important;
        margin-bottom: 8px;
        opacity: 0.9;
    }
    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        max-width: 100%;
    }
    .footer-column {
        text-align: center;
    }
    .footer-column h4 {
        font-size: 15px !important;
        margin-bottom: 16px;
        font-weight: 700;
        opacity: 1;
    }
    .footer-column ul {
        padding: 0;
    }
    .footer-column ul li {
        margin-bottom: 12px;
    }
    .footer-column ul li a {
        font-size: 14px !important;
        opacity: 0.85;
    }
    .footer-bottom {
        flex-direction: column !important;
        gap: 12px;
        text-align: center;
        padding: 24px 20px 0;
        margin-top: 40px;
    }
    .footer-bottom p {
        font-size: 13px;
    }

    /* General */
    .content-text {
        width: 100%;
        max-width: 100%;
    }
    .content-area {
        padding: 40px 30px;
    }
    .content-text h1 {
        font-size: 32px;
    }
    .tab {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .image-slider-container {
        width: 100%;
        border-radius: 16px;
    }
    .slider-nav {
        width: 44px;
        height: 44px;
    }
    .slider-nav.prev {
        left: 10px;
    }
    .slider-nav.next {
        right: 10px;
    }
    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
    .slider-indicators {
        margin-top: 20px;
        gap: 8px;
    }
    .indicator {
        width: 10px;
        height: 10px;
    }
    .indicator.active {
        width: 28px;
    }
    .learn-more-btn {
        font-size: 15px;
        padding: 12px 28px;
    }
    .value-grid {
        grid-template-columns: 1fr;
    }
    .tab-content {
        padding: 2rem;
        background-size: 50%;
        background-position: right bottom;
    }
    .value-tabs {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    .value-text h3 {
        font-size: 24px;
    }
    .value-text {
        max-width: 100%;
    }
    .catalog-text {
        order: 1;
        text-align: center;
    }
    .background-circles {
        width: 100%;
        height: 100%;
    }
    .background-circles img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .phones {
        width: 100%;
        height: 100%;
    }
    .phones img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .catalog-text h2 {
        font-size: 28px !important;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .catalog-text p {
        font-size: 15px !important;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    .opportunities {
        width: calc(100% - 40px) !important;
        max-width: 100%;
        height: auto !important;
        margin-top: -80px !important; /* Mantém sobreposição, mas reduzida */
        margin-left: 20px;
        margin-right: 20px;
        padding: 40px 30px !important;
        flex-direction: column;
        gap: 24px;

        /* Remove background image e usa cor sólida */
        background-image: none !important;
        background: linear-gradient(135deg, #4A9FDB 0%, #3B8BC9 100%) !important;
        border-radius: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    .opportunities span {
        font-size: 22px !important;
        font-weight: 600 !important;
        line-height: 1.4;
        color: white !important;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }
    .opportunities img {
        width: 220px !important;
        height: auto !important;
        margin-top: 0 !important;
        max-width: 100%;
    }
    .opportunities a {
        display: inline-block;
        align-self: center;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-image {
        width: 300px;
        right: 5%;
    }
    .cards-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 20px;
        margin-bottom: 40px !important;
    }
    .card {
        width: 100% !important;
        padding: 24px 20px !important;
    }
    .icon {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 16px;
    }
    .icon img {
        width: 24px;
        height: 24px;
    }
    .card-title {
        font-size: 20px !important;
        margin-bottom: 12px;
    }
    .card-description {
        font-size: 14px !important;
    }
    .social-links {
        justify-content: center;
        gap: 16px;
    }
    .social-link img {
        width: 36px;
        height: 36px;
    }
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .contact-info p {
        justify-content: center;
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }
    .contact-info img {
        width: 18px !important;
        height: 18px !important;
    }
    .catalog-text-internal {
        order: 2;
        text-align: center;
    }
    .background-circles {
        width: 100%;
        height: 100%;
    }
    .background-circles img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .phones {
        width: 100%;
        height: 100%;
    }
    .phones img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .catalog-text-internal h2 {
        font-size: 28px !important;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .catalog-text-internal p {
        font-size: 15px !important;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    .catalog-text-internal .catalog-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 24px;
    }
    .catalog-text-internal .talk-btn {
        width: 100% !important;
        max-width: 300px;
        height: 48px !important;
        font-size: 15px !important;
    }
    .benefits-tag img {
        height: 28px;
    }
    .benefits-title {
        font-size: 28px !important;
        padding: 0 20px;
        margin-bottom: 24px;
    }
    .benefits-description {
        font-size: 15px !important;
        padding: 0 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        padding: 0 20px;
        max-width: 600px;
        margin: 0 auto;
    }
    .benefit-icon {
        width: 52px !important;
        height: 52px !important;
        margin-bottom: 24px !important;
    }
    .jobs-tag img {
        height: 28px;
    }
    .jobs-title {
        font-size: 28px !important;
        padding: 0 20px;
        margin-bottom: 16px;
    }
    .jobs-description {
        font-size: 15px !important;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .jobs-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        padding: 0;
        max-width: 100%;
    }
    .job-title {
        font-size: 20px !important;
        margin-bottom: 24px;
    }
    .job-button {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}


/* ---------------------------------------------------------------------------
   MOBILE - max-width: 768px
   --------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Home Page */
    .connection {
        padding: 3rem 0;
    }
    .connection-text h2 {
        font-size: 28px;
    }
    .connection-text p {
        font-size: 14px;
    }

    /* Hero Internal */
    .hero-internal {
        height: 350px;
    }
    .hero-internal {
        height: 350px !important; /* Altura média para mobile comum */
    }
    .hero-about {
        background-position: 65% center; /* Ajusta o foco da imagem */
        background-size: cover;
    }
    .hero-internal::before {
        background: linear-gradient(
                to bottom,
                rgba(0, 65, 123, 0.05) 0%,
                rgba(0, 65, 123, 0.2) 100%
        );
    }

    /* Partners Page */
    .partners-target-image {
        display: none !important;
    }
    .partners-target-grid {
        grid-template-columns: 1fr !important;
    }
    .partners-target-content {
        order: 1;
    }

    /* Careers Page */
    .careers-icon-container {
        margin-top: 60px;
    }
    .careers-main-text h1 {
        font-size: 32px;
        max-width: 100%;
    }
    .careers-main-text p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .careers-mosaic {
        padding: 0 20px;
    }
    .talent-form-container {
        width: calc(100% - 40px);
        height: auto;
        padding: 40px 25px;
    }
    .talent-title {
        font-size: 26px;
    }

    /* About Page */
    .logistics .header {
        flex-direction: column;
        text-align: center;
    }
    .logistics .content-left {
        padding-right: 0;
    }
    .logistics .image-right {
        margin-top: 30px;
    }
    .logistics .title {
        font-size: 36px;
    }
    .logistics .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* General */
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    .slider-nav.prev {
        left: 5px;
    }
    .slider-nav.next {
        right: 5px;
    }
    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
    .career-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .value-tabs {
        flex-direction: column;
        align-items: center;
    }
    .phones-mockup {
        flex-direction: column;
        gap: 1rem;
    }
    .phone-1 {
        margin-right: 0;
    }
    .cards-wrapper {
        flex-direction: column;
    }
}


/* ---------------------------------------------------------------------------
   MOBILE MÉDIO - max-width: 640px
   --------------------------------------------------------------------------- */
@media (max-width: 640px) {
    /* Home Page */
    .connection {
        padding: 2rem 0;
    }
    .connection-content {
        gap: 2rem;
    }
    .connection-text h2 {
        font-size: 24px;
    }

    /* General */
    .slider-indicators {
        margin-top: 1rem;
    }
    .tab-content {
        background-image: none !important;
    }
    .catalog .features .features__container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .catalog .features .feature-card {
        width: 100%;
        max-width: 320px;
    }
}


/* ---------------------------------------------------------------------------
   MOBILE PEQUENO - max-width: 600px
   --------------------------------------------------------------------------- */
@media (max-width: 600px) {
    /* Careers Page */
    .careers-icon-container {
        margin-top: 40px !important;
        padding: 0 15px;
    }
    .careers-icon-container img {
        width: 90px;
    }
    .careers-main-text {
        padding: 0 15px;
        margin-bottom: 32px;
    }
    .careers-main-text h1 {
        font-size: 26px !important;
        margin-top: 20px;
    }
    .careers-main-text p {
        font-size: 15px !important;
        margin-bottom: 32px;
    }
    .careers-mosaic {
        padding: 0 15px;
    }
    .careers-benefits {
        padding: 40px 15px !important;
    }
    .benefit-card {
        min-height: 200px;
        padding: 28px 20px !important;
    }
    .benefit-card-title {
        font-size: 15px !important;
    }
    .careers-jobs {
        padding: 40px 15px !important;
    }
    .job-card {
        min-height: 200px;
        padding: 24px 20px !important;
    }
    .careers-talent {
        padding: 40px 15px !important;
    }
    .talent-title {
        font-size: 22px !important;
        padding: 0 15px;
        margin-bottom: 12px;
    }
    .talent-description {
        font-size: 14px !important;
        padding: 0 15px;
        margin-bottom: 32px;
    }
    .talent-form-container {
        width: calc(100% - 30px) !important;
        padding: 32px 24px !important;
    }
    .talent-form-title {
        font-size: 18px !important;
        margin-bottom: 20px;
    }
    .talent-form {
        gap: 14px;
    }
    .talent-form input[type="tel"] {
        height: 50px !important;
        font-size: 14px !important;
        padding: 0 16px;
    }
    .talent-upload {
        height: 80px !important;
        font-size: 13px !important;
        padding: 0 16px;
    }
    .talent-button {
        height: 50px !important;
        font-size: 14px !important;
        margin-top: 16px;
    }

    /* Contact Page */
    .contact-us {
        padding: 0 15px 40px;
    }
    .contact-us .container {
        gap: 32px;
    }
    .contact-us .info-column {
        padding-top: 32px;
    }
    .contact-us .section-tag {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .contact-us .info-text {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .contact-us .contact-methods {
        gap: 14px;
        margin-bottom: 28px;
    }
    .contact-us .contact-icon {
        width: 36px;
        height: 36px;
    }
    .contact-us .contact-icon img {
        width: 18px;
        height: 18px;
    }
    .contact-us .contact-link {
        font-size: 15px;
        word-break: break-word;
    }
    .contact-us .map-container {
        height: 250px;
        border-radius: 8px;
    }
    .contact-us .form-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .contact-us .form-header {
        margin-bottom: 20px;
        gap: 8px;
    }
    .contact-us .form-icon img {
        width: 20px;
        height: 20px;
    }
    .contact-us .form-title {
        font-size: 16px;
    }
    .contact-us .form-group {
        margin-bottom: 14px;
    }
    .contact-us .form-textarea {
        padding: 13px;
        font-size: 14px;
    }
    .contact-us .form-textarea {
        min-height: 100px;
    }
    .contact-us .form-button {
        padding: 14px;
        font-size: 14px;
    }

    /* General */
    .jobs-cards {
        grid-template-columns: 1fr;
    }
    .jobs-title {
        font-size: 28px;
    }
    .benefits-tag img {
        height: 26px;
    }
    .benefits-title {
        font-size: 24px !important;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    .benefits-description {
        font-size: 14px !important;
        padding: 0 15px;
        margin-bottom: 32px;
    }
    .benefits-cards {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 15px;
        max-width: 400px;
    }
    .benefit-icon {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 20px !important;
    }
    .jobs-tag img {
        height: 26px;
    }
    .jobs-title {
        font-size: 24px !important;
        padding: 0 15px;
        margin-bottom: 12px;
    }
    .jobs-description {
        font-size: 14px !important;
        padding: 0 15px;
        margin-bottom: 32px;
    }
    .jobs-cards {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    .job-location {
        font-size: 13px !important;
        margin-bottom: 16px;
    }
    .job-title {
        font-size: 18px !important;
        margin-bottom: 20px;
    }
    .job-button {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
}


/* ---------------------------------------------------------------------------
   MOBILE PEQUENO - max-width: 480px
   --------------------------------------------------------------------------- */
@media (max-width: 480px) {
    /* Home Page */
    .connection {
        padding: 40px 0;
    }
    .connection-content {
        gap: 30px;
        padding: 0 15px;
    }
    .connection-image {
        min-height: 200px;
        aspect-ratio: 4 / 3;
    }
    .connection-text h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    .connection-text p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* Hero Internal */
    .hero-internal {
        height: 250px !important;
    }
    .hero-internal {
        height: 300px !important; /* Altura reduzida mas adequada */
    }
    .hero-about {
        background-position: 60% center;
        background-size: cover;
    }

    /* Catalog Page */
    .catalog-section {
        padding: 40px 0 !important;
    }
    .catalog-content {
        gap: 30px !important;
        padding: 0 15px !important;
    }
    .catalog-image {
        max-width: 100% !important;
        min-height: 300px !important;
        aspect-ratio: 1 / 1;
    }
    .download-btn {
        width: 100% !important;
        max-width: 280px;
        height: 46px !important;
        font-size: 14px !important;
        justify-content: center;
    }
    .catalog-section {
        padding: 40px 0 !important;
    }
    .catalog-content-internal {
        gap: 30px !important;
        padding: 0 15px !important;
    }
    .catalog-image {
        max-width: 100% !important;
        min-height: 300px !important;
        aspect-ratio: 1 / 1;
    }

    /* Partners Page */
    .partners-icon-container {
        margin-top: 40px !important;
        padding: 0 15px;
    }
    .partners-icon-container img {
        max-width: 160px;
    }
    .partners-main-text {
        font-size: 14px !important;
        padding: 0 15px;
        margin-bottom: 24px;
    }
    .partners-main-image {
        padding: 0 15px;
        margin: 24px 0;
    }
    .partners-advantages {
        padding: 40px 15px !important;
    }
    .partners-badge {
        width: 100px;
    }
    .partners-advantages h2 {
        font-size: 22px !important;
        margin-bottom: 28px;
        padding: 0;
        line-height: 1.3;
    }
    .partners-cards {
        gap: 16px;
        padding: 0;
    }
    .partner-card {
        max-width: 100%;
        min-height: 160px;
        padding: 24px 20px !important;
    }
    .partner-card p {
        font-size: 14px !important;
        line-height: 1.4;
    }
    .partners-target {
        padding: 40px 0 !important;
    }
    .partners-target-grid {
        gap: 24px !important;
        padding: 0 15px;
    }
    .partners-target-image img {
        max-width: 180px;
        border-radius: 12px;
    }
    .partners-target-content h2 {
        font-size: 20px !important;
        margin-bottom: 12px;
    }
    .partners-target-content p {
        font-size: 14px !important;
        line-height: 1.5;
    }
    .partners img[src*="banner-rodape"] {
        padding: 0 15px;
        margin-top: 32px;
    }

    /* About Page */
    .about-us-icon-container {
        margin-top: 40px !important;
        padding: 0 15px;
    }
    .about-us-icon-container img {
        max-width: 100px;
    }
    .about-us-main-text {
        padding: 0 15px;
        margin-bottom: 32px !important;
    }
    .about-us-main-text h1 {
        font-size: 24px !important;
    }
    .about-us-main-text p {
        font-size: 14px !important;
    }
    p.about-us-secondary-text {
        font-size: 14px !important;
        padding: 0 15px;
    }

    /* MVV - Missão e Visão */
    .mvv-container {
        margin: 32px auto;
        padding: 32px 20px;
    }
    .mvv-content h2 {
        font-size: 16px;
    }
    .mvv-content p {
        font-size: 13px;
    }

    /* Values Cards */
    .values-cards-wrapper {
        padding: 0 15px;
        margin-bottom: 32px;
    }
    .value-card {
        padding: 20px 18px;
    }
    .value-icon {
        width: 38px;
        height: 38px;
    }
    .value-icon img {
        width: 20px;
        height: 20px;
    }
    .value-title,
    .value-title-intro {
        font-size: 17px;
    }
    .value-description,
    .value-description-intro {
        font-size: 13px;
    }
    .logistics {
        margin-top: 40px !important;
        padding: 32px 15px !important;
    }
    .logistics .title {
        font-size: 22px !important;
    }
    .logistics .description {
        font-size: 14px !important;
    }
    .logistics .logistics-image img {
        width: 200px !important;
    }
    .logistics .cards-wrapper {
        margin-top: 32px !important;
        gap: 16px !important;
    }
    .logistics .card {
        padding: 28px 20px !important;
    }
    .logistics .card-title {
        font-size: 18px !important;
    }
    .logistics .card-text {
        font-size: 13px !important;
    }
    .saiba-mais-link {
        font-size: 13px;
    }

    /* Modais - Mobile */
    .modal-logistics {
        padding: 10px;
    }
    .modal-content {
        max-height: 95vh;
    }
    .modal-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
        font-size: 20px;
    }
    .modal-header {
        padding: 28px 20px 16px;
    }
    .modal-icon {
        width: 50px;
        height: 50px;
    }
    .modal-icon img {
        width: 26px;
        height: 26px;
    }
    .modal-title {
        font-size: 20px;
    }
    .modal-body {
        padding: 20px;
    }
    .modal-body p,
    .modal-list li {
        font-size: 14px;
    }
    .modal-list li {
        padding-left: 28px;
    }

    /* Onde Estamos */
    .onde-estamos {
        padding: 40px 0;
    }
    .onde-estamos-header {
        padding: 0 15px;
        margin-bottom: 32px;
    }
    .onde-estamos .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .section-intro,
    .section-subtitle {
        font-size: 14px;
    }
    .estados-tables {
        padding: 0 15px;
    }
    .estados-table {
        border-radius: 8px;
    }
    .estados-table thead th {
        font-size: 14px;
        padding: 14px 16px;
    }
    .estado-cell {
        font-size: 14px;
        padding: 14px 16px;
    }
    .cidades-cell {
        font-size: 13px;
        padding: 14px 16px;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    .footer-content {
        gap: 32px !important;
        margin-top: 50px !important;
        padding: 0 15px;
    }
    .footer-logo img {
        height: 45px !important;
        margin-bottom: 16px;
    }
    .footer-address p {
        font-size: 12px !important;
    }
    .footer-links {
        gap: 28px !important;
    }
    .footer-column h4 {
        font-size: 14px !important;
        margin-bottom: 14px;
    }
    .footer-column ul li {
        margin-bottom: 10px;
    }
    .footer-column ul li a {
        font-size: 13px !important;
    }
    .footer-bottom {
        padding: 20px 15px 0;
        margin-top: 32px;
    }
    .footer-bottom p {
        font-size: 12px;
    }

    /* General */
    .slider-nav {
        width: 36px;
        height: 36px;
    }
    .slider-nav.prev {
        left: 8px;
    }
    .slider-nav.next {
        right: 8px;
    }
    .slider-nav svg {
        width: 18px;
        height: 18px;
    }
    .learn-more-btn {
        font-size: 14px;
        padding: 11px 24px;
        width: auto;
        display: inline-block;
    }
    .indicator {
        width: 8px;
        height: 8px;
    }
    .indicator.active {
        width: 24px;
    }
    .catalog-text h2 {
        font-size: 24px !important;
        margin-bottom: 16px;
    }
    .catalog-text p {
        font-size: 14px !important;
        margin-bottom: 20px;
    }
    .opportunities {
        width: calc(100% - 30px) !important;
        margin-left: 15px !important;
        margin-right: 15px !important;
        margin-top: -60px !important;
        padding: 32px 20px !important;
        gap: 20px;
        min-height: auto;
        border-radius: 16px;
    }
    .opportunities span {
        font-size: 19px !important;
        line-height: 1.3;
    }
    .opportunities img {
        width: 200px !important;
    }
    .cards-wrapper {
        padding: 0 15px;
        gap: 16px !important;
    }
    .card {
        padding: 20px 16px !important;
    }
    .card-title {
        font-size: 18px !important;
    }
    .card-description {
        font-size: 13px !important;
    }
    .social-link img {
        width: 32px;
        height: 32px;
    }
    .contact-info p {
        font-size: 13px !important;
    }
    .catalog-text-internal h2 {
        font-size: 24px !important;
        margin-bottom: 16px;
    }
    .catalog-text-internal p {
        font-size: 14px !important;
        margin-bottom: 20px;
    }
    .catalog-text-internal .catalog-actions {
        gap: 10px;
        margin-top: 20px;
    }
    .catalog-text-internal .talk-btn {
        width: 100% !important;
        max-width: 100%;
        height: 46px !important;
        font-size: 14px !important;
    }
    .card-icon {
        width: 36px !important;
        height: 36px !important;
    }
    .card-icon img {
        width: 16px !important;
        height: 16px !important;
    }
}


/* ---------------------------------------------------------------------------
   MOBILE EXTRA PEQUENO - max-width: 360px
   --------------------------------------------------------------------------- */
@media (max-width: 360px) {
    /* Hero Internal */
    .hero-internal {
        height: 280px !important;
    }
    .hero-about {
        background-position: 55% center;
    }

    /* Catalog Page */
    .catalog-image {
        min-height: 280px !important;
    }
    .download-btn {
        min-width: auto !important;
        padding: 0 20px !important;
    }
    .catalog-image {
        min-height: 280px !important;
    }

    /* Partners Page */
    .partners-icon-container img {
        max-width: 140px;
    }
    .partners-main-text {
        font-size: 13px !important;
    }
    .partners-advantages h2 {
        font-size: 20px !important;
    }
    .partner-card {
        padding: 20px 16px !important;
    }
    .partner-card p {
        font-size: 13px !important;
    }
    .partners-target-content h2 {
        font-size: 18px !important;
    }
    .partners-target-content p {
        font-size: 13px !important;
    }
    .partners-target-image img {
        max-width: 160px;
    }

    /* Careers Page */
    .careers-icon-container img {
        width: 80px;
    }
    .careers-main-text h1 {
        font-size: 24px !important;
    }
    .careers-main-text p {
        font-size: 14px !important;
    }
    .benefit-card {
        padding: 24px 16px !important;
    }
    .benefit-card-title {
        font-size: 14px !important;
    }
    .job-card {
        padding: 20px 16px !important;
    }
    .talent-title {
        font-size: 20px !important;
    }
    .talent-description {
        font-size: 13px !important;
    }
    .talent-form-container {
        padding: 28px 20px !important;
    }
    .talent-form-title {
        font-size: 17px !important;
    }

    /* Contact Page */
    .contact-us {
        padding: 0 12px 32px;
    }
    .contact-us .info-column {
        padding-top: 28px;
    }
    .contact-us .section-tag {
        font-size: 11px;
        margin-bottom: 16px;
    }
    .contact-us .info-text {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .contact-us .contact-methods {
        gap: 12px;
        margin-bottom: 24px;
    }
    .contact-us .contact-icon {
        width: 34px;
        height: 34px;
    }
    .contact-us .contact-icon img {
        width: 16px;
        height: 16px;
    }
    .contact-us .contact-link {
        font-size: 14px;
    }
    .contact-us .map-container {
        height: 220px;
    }
    .contact-us .form-card {
        padding: 20px 16px;
    }
    .contact-us .form-title {
        font-size: 15px;
    }
    .contact-us .form-textarea {
        padding: 12px;
        font-size: 13px;
    }
    .contact-us .form-textarea {
        min-height: 90px;
    }
    .contact-us .form-button {
        padding: 13px;
        font-size: 13px;
    }

    /* About Page */
    .about-us-main-text h1 {
        font-size: 22px !important;
    }

    /* MVV - Missão e Visão */
    .mvv-container {
        padding: 28px 16px;
    }
    .mvv-content h2 {
        font-size: 15px;
    }
    .mvv-content p {
        font-size: 12px;
    }

    /* Values Cards */
    .value-card {
        padding: 18px 16px;
    }
    .value-title,
    .value-title-intro {
        font-size: 16px;
    }
    .value-description,
    .value-description-intro {
        font-size: 12px;
    }
    .logistics .title {
        font-size: 20px !important;
    }
    .logistics .logistics-image img {
        width: 180px !important;
    }

    /* Onde Estamos */
    .onde-estamos .section-title {
        font-size: 20px;
    }
    .section-intro,
    .section-subtitle {
        font-size: 13px;
    }
    .estados-table thead th {
        font-size: 13px;
        padding: 12px 14px;
    }
    .estado-cell {
        font-size: 13px;
        padding: 12px 14px;
    }
    .cidades-cell {
        font-size: 12px;
        padding: 12px 14px;
    }

    /* Footer */
    .footer-logo img {
        height: 40px !important;
    }
    .footer-address p {
        font-size: 11px !important;
    }
    .footer-column h4 {
        font-size: 13px !important;
    }
    .footer-column ul li a {
        font-size: 12px !important;
    }

    /* General */
    .catalog-text h2 {
        font-size: 22px !important;
    }
    .opportunities {
        margin-top: -50px !important;
        padding: 28px 16px !important;
    }
    .opportunities span {
        font-size: 17px !important;
    }
    .opportunities img {
        width: 180px !important;
    }
    .catalog-text-internal h2 {
        font-size: 22px !important;
    }
    .catalog-text-internal p {
        font-size: 13px !important;
    }
    .catalog-text-internal .talk-btn {
        height: 44px !important;
        font-size: 13px !important;
        padding: 0 16px !important;
    }
    .benefits-title {
        font-size: 22px !important;
    }
    .benefits-description {
        font-size: 13px !important;
    }
    .jobs-title {
        font-size: 22px !important;
    }
    .jobs-description {
        font-size: 13px !important;
    }
    .job-title {
        font-size: 17px !important;
    }
}


/* ========================================================================= */
/* FIM DO ARQUIVO */
/* ========================================================================= */