/* Navbar */
.navbar {
    background-color: #fff;
    padding: 15px 0;
    z-index: 999;
    position: fixed;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.navbar .row {
    align-items: center;
    width: 100%;
    margin: 0;
}

.navbar .logo img {
    width: 220px;
}

.navbar-toggler {
    border: none;
    background: none;
    font-size: 24px;
    color: #333;
}

/* Itens da navbar no desktop */
.navbar .navbar-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar .navbar-items a,
.navbar .navbar-items .btn {
    margin-left: 15px;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar .navbar-items a:hover,
.navbar .navbar-items .btn:hover {
    color: #0056b3;
}

.navbar .navbar-items .social-icon {
    font-size: 20px;
}

.navbar .navbar-items .social-icon:hover {
    color: #0056b3;
}

.navbar .navbar-items .flag-icon img {
    width: 25px;
    transition: opacity 0.3s ease;
}

.navbar .navbar-items .flag-icon img:hover {
    opacity: 0.8;
}

.navbar .navbar-items .btn-outline-primary {
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar .navbar-items .btn-outline-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
    /* Ajustes na navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar .row {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 15px;
    }

    /* Logo */
    .navbar .logo img {
        width: 220px;
    }

    /* Esconde os itens na primeira linha no mobile */
    .navbar .navbar-items {
        display: none;
    }

    /* Centraliza o menu hambúrguer */
    .navbar-toggler {
        margin-left: auto;
    }

    /* Ícones alinhados horizontalmente no mobile */
    .navbar .mobile-items {
        display: flex;
        flex-direction: row; /* Altera para linha */
        align-items: center;
        justify-content: center; /* Centraliza horizontalmente */
        flex-wrap: nowrap; /* Evita quebra de linha */
        margin-top: 10px;
    }

    .navbar .mobile-items a,
    .navbar .mobile-items .btn {
        margin: 0 5px; /* Espaçamento horizontal entre os itens */
    }

    /* Ajusta o tamanho dos ícones e textos */
    .navbar .mobile-items a i,
    .navbar .mobile-items .btn i {
        font-size: 18px;
    }

    .navbar .mobile-items .btn {
        padding: 5px 10px;
        font-size: 14px;
    }
}

/* Barra de progresso logo abaixo do menu fixo */
.progress-bar-wrapper {
    position: absolute;
    top: 13px; /* Alinha logo abaixo da navbar */
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 998; /* Logo abaixo do menu */
}

#progress-bar {
    width: 0%;
    height: 100%;
    background-color: #007bff;
    transition: width 5s linear;
}

/* Certifique-se de que o carrossel tem posição relativa para o posicionamento absoluto funcionar */
.carousel {
    position: relative;/* Ajusta o carrossel para não ficar atrás da navbar */
}

/* Estilo básico para ícones de mídia social e bandeiras */
.social-icon {
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #0056b3;
}

.flag-icon img {
    width: 25px;
    transition: opacity 0.3s ease;
}

.flag-icon img:hover {
    opacity: 0.8;
}

/* Botão Brochura */
.btn-outline-primary {
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-outline-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Estilo do Menu deslizante */
.slide-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #1e3a78;
    overflow-x: hidden;
    transition: 0.5s ease;
    padding-top: 60px;
    box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.5);
}

.slide-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slide-menu li {
    margin-bottom: 15px;
}

.slide-menu a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 20px;
    color: #f1f1f1;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.slide-menu a:hover {
    background-color: #575757;
}

.slide-menu a img.icon-arrow {
    width: 16px;
    height: 16px;
}
@media (max-width: 768px) {
    .text-left-mobile {
        text-align: left !important;
    }
}
.carousel2{
    margin-top: 80px; 
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: #f1f1f1;
    border: none;
    background: none;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.5s ease;
}

/* Centralização da seção "Quem Somos" */
.container.my-5 {
    max-width: 1200px;
    margin: auto;
}

.image-wrapper img {
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Alinhamento da seção de apresentação */
section.container.my-5 .row {
    display: flex;
    align-items: center;
}

section.container.my-5 .col-md-6 {
    padding: 15px;
}
.carousel-quemsomos{
    width:450px;
    
}
/* Configuração de alinhamento para dispositivos menores */
@media (max-width: 768px) {
    section.container.my-5 .row {
        flex-direction: column;
        text-align: center;
    }

    .image-wrapper {
        margin-top: 20px;
    }

    .carousel {
        position: relative;/* Ajusta o carrossel para não ficar atrás da navbar */
    }
 #carouselExample {
        margin-top: 155px; /* Ajusta o carrossel para não ficar atrás da navbar */
    }
    .progress-bar-wrapper {
        position: absolute;
        top: 0px; /* Alinha logo abaixo da navbar */
        width: 100%;
        height: 5px;
        background-color: rgba(255, 255, 255, 0.3);
        z-index: 998; /* Logo abaixo do menu */
    }
}

/* Ajustes gerais */

/* Estilos para o carrossel */
.carousel-item img {
    width: 100%;
    height: auto;
}

/* Estilos para os indicadores do carrossel */
.carousel-indicators [data-bs-target] {
    background-color: #007bff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

/* Estilos para a seção "BEM-VINDO!" */
section.container.my-5 h2,
section.container.my-5 h3 {
    margin-bottom: 20px;
}

section.container.my-5 p.lead {
    margin-bottom: 15px;
}

/* Estilos para links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Estilos para botões */
.btn {
    border-radius: 5px;
}

/* Ajustes para o botão de fechar do menu deslizante */
.close-btn {
    cursor: pointer;
}
.highlight-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.highlight-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay de cor */
    z-index: 1;
}

.highlight-section .container {
    position: relative;
    z-index: 2;
}

.text-white {
    color: #fff;
}
.floating-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card i {
    font-size: 40px;
    color: #2a3a55;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    color: #2a3a55;
}

.card p {
    font-size: 1rem;
    color: #6b778d;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 32px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-button i {
    color: white;
}
.cta-section {
    background-color: #f0f4f7;
    padding: 50px 20px;
    text-align: center;
    border-top: 4px solid #0056b3;
}

.cta-title {
    font-size: 32px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #0056b3;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #003366;
}

:root {
    --white-100: hsl(206, 5%, 100%);
    --white-200: hsl(206, 5%, 90%);
    --white-300: hsl(206, 5%, 80%);
    --white-400: hsl(206, 5%, 65%);
    --white-500: hsl(206, 5%, 45%);
    --black-100: hsl(210, 20%, 10%);
    --black-200: hsl(210, 20%, 8%);
    --black-300: hsl(210, 20%, 6%);
    --black-400: hsl(210, 20%, 4%);
    --black-500: hsl(210, 20%, 1%);
  }

  *,
  *::before,
  *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  main {
    overflow: hidden;
  }

  a,
  button {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    background: none;
  }

  img {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }

  .section {
    margin: 0px auto;
    padding-block: 5rem;
  }

  .container {
    max-width: 85rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.25rem;
      padding-top:20px;
  }

  .swiper-button-next::after, .swiper-button-prev::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
    border-radius: 50%;
    color: var(--white-100);
    background: var(--black-300);
  }

  .swiper-slider {
    width: 100%;
    height: 400px;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }