/* Reset básico para remover margens padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Myriad Pro";
    src: url("../font/Myriad Pro Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Myriad Pro";
    src: url("../font/Myriad Pro Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: "Myriad Pro";
    /* Fonte similar à da imagem */
    background-color: #f4f4f4;
}

ul#servicos {
    list-style: none;
    padding-left: 20px;
}

ul li#servicos {
    position: relative;
}

ul li#servicos::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #D6E03D;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 6px;
}

.text-decoration-none {
    text-decoration: none;
}

.text-decoration-none:hover {
    color: var(--color-lime) !important;
}

.banner-home {
    background-image: url(../img/slideb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    background-size: cover;
    background-position: center;
    /* Estado inicial: invisível */
    opacity: 0;
    z-index: 1;
    /* A transição suave IGUAL ao Bootstrap */
    transition: opacity 0.6s ease-in-out;
}

/* A classe que torna a imagem visível */
.banner-item.active {
    opacity: 1;
    z-index: 2;
    /* Garante que a ativa fique no topo da pilha de imagens */
}

.banner-content {
    text-align: start;
    position: relative;
    width: 730px;
    min-height: 336px;
    text-align: start;
    top: 300px;
    left: -222px;
    transform: translateY(-50%);
    padding: 30px;
    z-index: 10;


    /* 1. Fundo Translúcido (Branco com 20% de opacidade) */
    background: rgba(255, 255, 255, 0.55);

    /* 2. O Desfoque (O "vidro" em si) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Compatibilidade com Safari */

    /* 3. Borda Sutil (Branco com 30% de opacidade) */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-servico {
    background-image: url(../img/servico_banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 690px;
    display: flex;
    align-items: center;
}

.banner-sobrenos {
    background-image: url(../img/sobre-nos-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 490px;
    display: flex;
    align-items: center;
}

.banner-desc {
    background-repeat: no-repeat;
    background-size: cover;
    height: 490px;
    display: flex;
    align-items: center;
}

.cta-content {
    max-width: 1200px;

}

/* Contentor Principal da Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 69, 106, 1);
    padding: 15px 40px;
    box-shadow: -1px 3px 11px rgb(0 0 0 / 52%);
    height: 130px;
    color: white;
    border-radius: 0px 0px 30px 30px;
    position: absolute;
    top: 0px;
    width: 1297px;
    z-index: 99;
    transition: 0.6s ease-in-out;

}

.navbarScrolled {
    height: 99px;
    transition: 0.6s ease-in-out;
}

/* Estilo do Logótipo */
.logo {
    width: 100%;
    height: auto;
    transition: 0.6s ease-in-out;
}

.logoScrolled {
    width: 60%;
    height: auto;
    transition: 0.6s ease-in-out;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: auto;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #005b9f;
}

.btn-outline-dark-blue {
    --bs-btn-color: var(--color-dark-blue) !important;
    --bs-btn-border-color: var(--color-dark-blue) !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-dark-blue) !important;
    --bs-btn-hover-border-color: var(--color-dark-blue) !important;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-dark-blue) !important;
    --bs-btn-active-border-color: var(--color-dark-blue) !important;
    --bs-btn-active-shadow: inset 0 3px 5px da;
    --bs-btn-disabled-color: var(--color-dark-blue) !important;
    color: var(--color-dark-blue) !important;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #1c4977;
    --bs-gradient: none;
    border-radius: 6px;
}

.btn-outline-dark-blue:hover {
    color: white !important;
}

.btn-portal {
    background-color: var(--color-lime);
    color: var(--color-dark-blue);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 5px;
    /* text-transform: uppercase; */
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-portal:hover {
    background-color: var(--color-lime)
}

.flags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag {
    width: 24px;
    height: auto;
    cursor: pointer;
}

.servico-text {
    font-size: 30px;
    font-family: "Myriad Pro";
    color: #747474;
    font-weight: 400;
}

.home-title {
    font-size: 70px;
    font-family: "Myriad Pro";
    color: #ffffff;
    font-weight: 600;
}

.sobre-nos-title {
    font-size: 50px;
    font-family: "Myriad Pro";
    color: #ffffff;
    font-weight: 600;
}

.text-cyan {
    color: var(--color-cyan)
}

.home-title>#bicolor {
    color: var(--color-lime)
}

.servico-title {
    font-size: 70px;
    font-family: "Myriad Pro";
    color: var(--color-dark-blue);
    font-weight: 600;

}

.servico-title>#bicolor {
    color: var(--color-cyan)
}

/* Definição de cores baseadas na imagem */
:root {
    --color-dark-blue: #00456A;
    /* Azul escuro do título e ícones */
    --color-cyan: #00AEDB;
    /* Azul claro */
    --color-lime: #D6E03D;
    /* Verde limão do botão e ícones */
}

/* Utilitários de cor de texto */
.text-dark-blue {
    color: var(--color-dark-blue) !important;
}

.text-cyan {
    color: var(--color-cyan) !important;
}

.img-servico-desc {
    position: absolute;
    z-index: -1;
    top: 260px;
}

/* Estilização dos Cards */
.banner-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    /* Borda cinza suave */
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #e0e0e0;
    /* Borda cinza suave */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Efeito de elevação opcional */
}

/* Estilo das "Bolinhas" (Dots) */
.dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
}

.dot#header-title {
    margin-top: 53px;
    width: 50px;
    height: 50px;
}

.bg-dark-blue {
    background-color: var(--color-dark-blue);
}

#lime {
    background-color: #d5e03d83;
}

.dot-blue {
    background-color: var(--color-dark-blue);
}

.dot-cyan {
    background-color: var(--color-cyan);
}

.dot-lime {
    background-color: var(--color-lime);
}

/* Botão Customizado */
.btn-custom {
    background-color: var(--color-lime);
    color: var(--color-dark-blue);
    /* Texto azul escuro para contraste */
    border: none;
    border-radius: 8px;
    /* Bordas levemente arredondadas */
    transition: opacity 0.3s ease;
}

.btn-custom:hover {
    opacity: 0.9;
    color: var(--color-dark-blue);
}

/* Fundo da seção (usa sua variável existente) */
.text-dark-blue {
    color: var(--color-dark-blue) !important;
}

.section-dark-blue {
    background-color: var(--color-dark-blue);
}

.section-dark-green {
    background-color: #419639;
}


/* Cor de texto Lime (verde limão) */
.text-lime {
    color: var(--color-lime) !important;
}

/* Variação mais escura do Lime para texto (para leitura em fundo claro) */
.text-lime-dark {
    /* color: #boc226; */
    color: #a8b418;
}

/* Wrapper do ícone (círculo azul claro em volta do ponto) */
.icon-wrapper {
    min-width: 45px;
    height: 45px;
    background-color: #dcf4fc;
    /* Azul bem clarinho */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Boxes de estatísticas */
.stat-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Box Azul Claro (baseado na sua cor Cyan com opacidade) */
.stat-gray-blue {
    background-color: rgba(44, 164, 229, 0.1);
    /* Variação muito clara do cyan */
}

/* Box Azul Claro (baseado na sua cor Cyan com opacidade) */
.stat-box-blue {
    background-color: #ebf8fc;
    /* Variação muito clara do cyan */
}

/* Box Amarelo Claro (baseado na sua cor Lime com opacidade) */
.stat-box-lime {
    background-color: #fbfde6;
    /* Variação muito clara do lime */
}

/* Pequeno ajuste para garantir que a fonte Myriad seja aplicada aos headings novos */
.font-myriad {
    font-family: "Myriad Pro", sans-serif;
}

/* Fundo Gradiente da CTA */
.cta-section {
    background-image: url(../img/cta.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.forms-section {
    background-color: #f4f4f4;
    ;
}

.glassy {
    /* 1. Fundo Translúcido (Branco com 20% de opacidade) */
    background: rgba(255, 255, 255, 0.2);

    /* 2. O Desfoque (O "vidro" em si) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Compatibilidade com Safari */

    /* 3. Borda Sutil (Branco com 30% de opacidade) */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Botão Outline (Borda Branca) */
.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    /* Fundo branco leve ao passar o mouse */
    color: #fff;
    border-color: #fff;
}

/* Caixas de Contato (Email/Telefone) */
.contact-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Borda semi-transparente */
    border-radius: 8px;
    min-width: 250px;
    /* Largura mínima para ficarem bonitos */
    background-color: rgba(255, 255, 255, 0.05);
    /* Fundo muito sutil */
    transition: background-color 0.3s;
}

.contact-box:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Fundo do Footer usando sua variável */
.footer-section {
    background-color: var(--color-dark-blue);
}

/* Links do Footer */
.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-lime);
    /* Fica verde ao passar o mouse */
    padding-left: 5px;
    /* Pequeno movimento para a direita */
}

/* Círculos das Redes Sociais (Cinza claro conforme imagem) */
.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-blue);
    width: 40px;
    height: 40px;
    background-color: #d9d9d9;
    /* Cinza da imagem */
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    font-size: 23px;
}

.social-circle:hover {
    background-color: var(--color-lime);
    transform: translateY(-3px);
}

/* Linha divisória mais visível */
hr.border-light {
    border-top: 2px solid #fff;
    /* Garante que a linha seja branca sólida */
}

.btn-success {
    background-color: #D6E03D !important;
    color: #00456A !important;
    border: none !important;
    border-radius: 6px;
    transition: 0.6s ease-in-out;
}

.btn-success:hover {
    color: #D6E03D !important;
    background-color: #00456A !important;
    transition: 0.6s ease-in-out;
}

.feature-item {
    height: 132px;
}

/* ------------------------------------ */
/* ESTILIZAÇÃO CUSTOMIZADA DAS ABAS (TABS) */
/* ------------------------------------ */

.custom-nav-tabs .nav-link {
    /* Cor de fundo padrão: Azul Escuro (do var(--color-dark-blue)) */
    background-color: var(--color-dark-blue);
    /* Cor do texto padrão: Branco */
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0;
    /* Remove bordas arredondadas padrão */
    border-bottom: 3px solid transparent;
    /* Cria espaço para a linha de destaque */
    margin: 0 5px;
    /* Espaçamento entre os botões das abas */
    transition: all 0.3s ease;
}

.custom-nav-tabs .nav-link:hover {
    color: var(--color-lime);
    /* Texto fica verde limão ao passar o mouse */
    border-color: rgba(255, 255, 255, 0.2);
    /* Linha sutil para hover */
}

.banner-tag {
    border-radius: 6px;
    background-color: #D6E03D;
    color: rgba(0, 69, 106, 1);
    width: 227px;
    display: flex;
    text-align: center;
    justify-content: center;
    height: 28px;
    align-items: center;
}

/* Estado Ativo/Selecionado (Aba Ativa) */
.custom-nav-tabs .nav-link.active {
    /* Fundo da aba ativa: Azul Escuro (Para manter a consistência da seção) */
    background-color: var(--color-dark-blue);
    /* Texto da aba ativa: Verde Limão (Destaque principal) */
    color: var(--color-lime);
    /* Linha Verde Limão em baixo (Destaque visual conforme a imagem) */
    border-bottom: 3px solid var(--color-lime);
}

/* O conteúdo da aba (tab-pane) deve ter o texto na cor branca, que é garantido pela classe 'text-white' no HTML. */

/* =========================================
   MENU MOBILE / RESPONSIVIDADE
   Adicionar ao final do arquivo CSS
   ========================================= */

/* Oculta o botão hambúrguer no Desktop */
.mobile-toggle {
    display: none;
}


.logo-footer-wpp {
    position: fixed;
    width: 100px;
    bottom: 15px;
    right: 15px;
    filter: drop-shadow(black 2px 2px 2px 2px);
    transition: 0.6s ease-in-out;
}

.logo-footer-wpp:hover {
    transition: 0.6s ease-in-out;
    width: 110px;
}

/* Media Query para Tablets e Celulares (abaixo de 991px) */
@media (max-width: 991px) {
    .text-xs-center {
        text-align: center !important;
    }

    .cta-content {
        width: 80%;

    }

    .xs-hidden {
        display: none !important;
    }

    .logo-footer-wpp {
        width: 80px;
    }

    .justify-content-xs-center {
        justify-content: center;
    }

    #nossos-servicos {
        margin-top: 222px;
    }

    .banner-home {
        height: 600px;
    }

    .img-mobile {
        width: 30%;
    }

    .banner-content {
        text-align: center;
        position: relative;
        z-index: 10;
        width: 81%;
        min-height: 336px;
        text-align: center;
        transform: translateY(-50%);
        padding: 30px;
        left: 0;
        top: 335px;
    }

    .home-title {
        font-size: 30px;
        font-family: "Myriad Pro";
        color: #ffffff;
        font-weight: 600;
    }

    .navbar {
        height: 115px;
        padding: 15px 20px;
        position: relative;
        z-index: 1000;
        width: 94%;
        transition: 0.6s ease-in-out;
    }
    
    .navbarScrolled {
        height: 85px;
        transition: 0.6s ease-in-out;
    }

    .logo {
        width: 60%;
        height: auto;
    }

    .logoScrolled {
        width: 40%;
        height: auto;
        transition: 0.6s ease-in-out;
    }

    .servico-title {
        font-size: 50px;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1002;
        /* Fica acima do menu aberto */
    }

    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--color-lime);
        /* Sua cor padrão */
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Animação do botão virando X quando ativo */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--color-lime);
        /* Destaque ao abrir */
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        background-color: var(--color-lime);
    }

    /* 3. Conteúdo do Menu (Off-Canvas) */
    .nav-content {
        position: fixed;
        top: 0;
        right: -100%;
        /* Esconde fora da tela à direita */
        width: 80%;
        /* Ocupa 80% da tela */
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-dark-blue);
        /* Fundo azul escuro */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1001;
    }

    /* Classe que ativa o menu via JS */
    .nav-content.active {
        right: 0;
    }

    /* 4. Ajustes dos Links dentro do Mobile */
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 0 0 40px 0;
        /* Espaço abaixo dos links */
    }

    .nav-links li a {
        color: #ffffff;
        /* Texto branco no fundo azul */
        font-size: 20px;
    }

    .nav-links li a:hover {
        color: var(--color-lime);
    }

    /* Ajuste para o botão do Portal no menu mobile */
    .btn-portal {
        width: 100%;
        text-align: center;
        background-color: var(--color-lime);
        color: var(--color-dark-blue);
        margin-bottom: 20px;
    }

    /* Centraliza as bandeiras */
    .flags {
        justify-content: center;
    }
}