/* ===================================
effects
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
/* variable */
:root {     
    --base-color: #074eb9; 
    --dark-gray:#252840;
    --black:#05060a;
    --medium-gray:#7d8087;
    --very-light-gray: #f0f2f8;
    --primary-font: 'Plus Jakarta Sans', sans-serif;
}
/* reset */
body{
    line-height: 29px;
}
/* header */
header .navbar-brand img {
    max-height: 70px;
} 
.navbar .navbar-nav .nav-link {
    font-size: 17px;
}
header .btn.btn-rounded.btn-large {
    padding:10px 26px;
    font-size: 13px;
    font-weight: 500;
}
.sticky .header-transparent .header-button .btn {
    color: var(--dark-gray);
    border-color: var(--extra-medium-gray);
}
.sticky .header-transparent .header-button .btn:hover {
    border-color: var(--dark-gray);
    color: var(--white);
    background:  var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover="light"] .widget-text i {
    color: var(--white);
}
/* accordion style 02 */
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
    background-color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li:hover a,
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active a{
    opacity: .5;
}
/* btn */
[class*=btn-transparent], [class*=" btn-transparent"] {
    font-weight: 500;
}
.btn {
    text-transform: none;
    font-family: var(--primary-font);
}
.btn.btn-switch-text.btn-extra-large > span {
    padding: 19px 40px;
}
.btn-mr-blue {
    background-image: linear-gradient(to right, #012d4a, #175279, #0b58cb); /* azul degradê padrão */
    background-size: 200% auto;
    background-position: left center;
    color: #ffffff;
    border: none;
    transition: background-image 0.4s ease, color 0.4s ease;
    font-weight: 600;
}
.btn-mr-blue:hover {
    background-image: linear-gradient(to right, #a2a0a0 0%, #adadad 50%, #f2f2f2 100%);
    background-size: 200% auto;
    background-position: right center;
    color: #1f1f1f !important;
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* bg gradient color */
.bg-gradient-dark-gray-transparent { 
    background: -webkit-linear-gradient(right, rgba(24, 25, 28, .5), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(24, 25, 28, .5), rgba(255, 255, 255, 0.0));
}
.bg-gradient-very-light-gray-transparent {
    background: -webkit-linear-gradient(right, rgba(240, 244, 253, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(240, 244, 253, 1.0), rgba(255, 255, 255, 0.0));
}
.bg-gradient-flamingo-red-transparent {
    background: -webkit-linear-gradient(right, rgba(243, 69, 59, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(243, 69, 59, 1.0) 10%, rgba(255, 255, 255, 0.0) 95%);
}
.bg-gradient-base-color-transparent {
    background: -webkit-linear-gradient(right, rgba(15, 89, 201, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(15, 89, 201, 1.0) 10%, rgba(255, 255, 255, 0.0) 95%);
}
/* Animação de fade-in suave */
@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classe para aplicar em logos */
.logo-fade {
    animation: fadeInLogo 1s ease-out forwards;
}

/* Responsividade para logos */
.responsive-logo {
    max-width: 300px;
    width: auto;
    height: auto;
}

@media (max-width: 767px) {
    .responsive-logo {
        max-width: 220px;
    }
}

/* Seção do banner com logo centralizada */
.banner-logo-section {
    background-color: #012d4a;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

    /* Logo animada com efeito sutil */
    .banner-logo-section .logo-fade {
        max-width: 200px;
        opacity: 0.96;
        transition: transform 0.3s ease-in-out;
        z-index: 2;
        position: relative;
    }

/* Curva animada */
.shape-image-animation {
    pointer-events: none;
}

/* Mobile responsivo */
@media (max-width: 768px) {
    .banner-logo-section {
        min-height: 180px;
    }

        .banner-logo-section .logo-fade {
            max-width: 140px;
        }
}

/* Logo dentro do banner azul */
.logo-banner {
    max-width: 220px;
    opacity: 0.96;
    transition: transform 0.3s ease-in-out;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .logo-banner {
        max-width: 140px;
    }
}
/* Banner com altura reduzida e logo melhor posicionada */
.banner-logo-section {
    background-color: #012d4a;
    min-height: 300px; /*220px;*/ /* reduzido de 260px */
    display: flex;
    align-items: flex-end; /* alinha para baixo */
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
    padding-bottom: 3rem; /* espaço maior para não cortar a logo */
}

    /* Logo central com tamanho menor */
    .banner-logo-section .logo-fade {
        max-width: 160px; /* reduzido de 200px */
        opacity: 0.96;
        transition: transform 0.3s ease-in-out;
        z-index: 2;
        position: relative;
    }

/* Responsivo */
@media (max-width: 768px) {
    .banner-logo-section {
        min-height: 180px;
        padding-bottom: 2rem;
    }

        .banner-logo-section .logo-fade {
            max-width: 120px;
        }
}

.text-justify {
    text-align: justify;
    font-size: 1.1rem; /* ou 17px, ou o valor que preferir */
    line-height: 1.8; /* aumenta o espaçamento entre linhas */
}

    .text-justify p {
        margin-bottom: 2.9rem; /* aumenta o espaço entre os blocos (missão, visão etc) */
    }
@media (max-width: 768px) {
    .table-responsive table {
        font-size: 14px; /* Reduz o tamanho da fonte para caber melhor */
        white-space: nowrap; /* Evita quebra forçada de texto */
    }

    .table-responsive thead th,
    .table-responsive tbody td {
        padding: 0.5rem;
        text-align: left; /* melhora a leitura no mobile */
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
/* Estilo para o cabeçalho da tabela com azul MR */
.table thead th {
    background-color: #012d4a !important; /* Azul padrão MR */
    color: white !important;
    border-color: #012d4a !important;
}
/* Estilo para tabelas de peças responsivas no mobile */
@media (max-width: 767px) {
    .table-responsive table {
        font-size: 13px;
    }

    .table-responsive th,
    .table-responsive td {
        white-space: nowrap;
    }

    .table td input[type="number"] {
        width: 100%;
        padding: 4px;
    }

    .table td button {
        width: 100%;
        padding: 6px;
        font-size: 13px;
    }
}
@media (max-width: 991.98px) {
    .mobile-menu-logo {
        opacity: 0;
        animation: fadeInMobile 0.5s ease forwards;
    }
}

@keyframes fadeInMobile {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.shape-image-animation {
    position: relative;
    z-index: 1;
}

.banner-logo-section .container {
    position: relative;
    z-index: 10;
}
/*------------------------------------------------------- */
/* logo cabeçalho css */
.logointerno {
    width: auto !important;
}
/*------------------------------------------------------- */
/* texto logo cabeçalho css */
.titulointerno {
    margin-top: -90px;
    position: absolute;
}