.carousel-container {
    height: 500px; /* Altura desejada */
}

.carousel {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 50px;
    object-position: center;
}
:root {
            --primary-color: #2a5f8a;
            --secondary-color: #4CAF50;
            --accent-color: #FF6B6B;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --blue-bg: #2a5f8a;
            --white-bg: #ffffff;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
            position: relative;
        }
        
        /* Padrão Hexagonal */
        .hexagon-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
            opacity: 0.1;
        }
        
        .hexagon {
            position: absolute;
            width: 150px;
            height: 86.60px;
            background-color: var(--primary-color);
            margin: 43.30px 0;
            display: inline-block;
            opacity: 0.3;
            transition: all 1s ease;
        }
        
        .hexagon:before,
        .hexagon:after {
            content: "";
            position: absolute;
            width: 0;
            border-left: 75px solid transparent;
            border-right: 75px solid transparent;
        }
        
        .hexagon:before {
            bottom: 100%;
            border-bottom: 43.30px solid var(--primary-color);
        }
        
        .hexagon:after {
            top: 100%;
            width: 0;
            border-top: 43.30px solid var(--primary-color);
        }
        
        /* Seções */
        .hero-section, .content-section {
            padding: 100px 0;
            position: relative;
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(42,95,138,0.9) 0%, rgba(44,62,80,0.95) 100%);
            color: white;
        }
        
        .bg-blue {
            background-color: var(--blue-bg);
            color: white;
        }
        
        .bg-white {
            background-color: var(--white-bg);
        }
        
        /* Cards de Conteúdo */
        .detail-box {
            background: rgba(255,255,255,0.9);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            position: relative;
            z-index: 2;
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
        }
        
        .bg-blue .detail-box {
            background: rgba(255,255,255,0.9);
            color: var(--dark-color);
        }
        
        .bg-white .detail-box {
            background: rgba(255,255,255,0.95);
            border: 1px solid rgba(0,0,0,0.1);
        }
        
        .detail-box:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        /* Tipografia */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .bg-blue h2 {
    color: #05517C;
        }
        
        .bg-white h2 {
            color: var(--primary-color);
        }
        
.h2h {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        h5 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        /* Imagens */
        .img-container {
            border-radius: 10px;
  overflow: visible;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .img-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
            border-radius: 5px;
        }
        
        .img-container:hover img {
            transform: scale(1.03);
        }
        
        /* Botões */
        .btn-whatsapp {
            background: var(--secondary-color);
            color: white;
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .btn-whatsapp:hover {
            background: #3d8b40;
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .btn-whatsapp i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Animações */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Responsividade */
        @media (max-width: 991px) {
            .detail-box {
                transform: none;
            }
            
            .detail-box:hover {
                transform: none;
            }
        }
        
        @media (max-width: 767px) {
            .hero-section, .content-section {
                padding: 80px 0;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            h5 {
                font-size: 1.1rem;
            }
        }
/* Container principal */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #007bff; /* Cor de fundo para mobile */
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
	.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
		background-size: 42px;
	
	}
	
	
  /* Garante que o menu comece fechado */
  .navbar-collapse.collapse:not(.show) {
    display: none;
  }
  
  /* Estilo para o botão do menu */
  .navbar-toggler {
	  color: #087EC0;
    border: none;
    padding: 0.5rem 0.75rem;
  }
}

.scontainer {
    /* [disabled]display: flex; */
    align-items: center;
}
.img1 {
	width: 150%;
	height: auto;
}
@media (max-width: 768px) {
    .scontainer {
        display: flex;
    }
}

/* Imagem e texto */
.img-box img {
    max-width: 115%;
}

.margin-titulo {
    margin: 20px 0;
}

.box {
    max-width: 99%;
}

/* Navbar */
.custom_nav2 .navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 10px 30px;
  color: #070101;
  text-align: center;
  position: relative;
}

.custom_nav2 .navbar-expand-lg .navbar-nav .nav-item.active .nav-link, .custom_nav2 .navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
    color: #087EC0;
}

.navbar-brand {
    align-items: flex-start;
    position: relative;
}

.navbar-brand img {
    width: 80px;
}

.navbar-brand span {
    font-size: 20px;
    font-weight: bold;
    color: #0c0900;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .navbar-brand {
        justify-content: center;
    }

    .navbar-brand img {
        width: 60px;
        margin-left: 0;
    }

    .navbar-brand span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
		display: block;
        flex-direction: column;
        align-items: center;
    }

    .navbar-brand img {
        width: 50px;
    }

    .navbar-brand span {
        font-size: 14px;
        text-align: center;
        margin-top: 10px;
    }
}

/* Corpo */
body {
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    margin-right: 0px;
}

.p2 {
    color: #2F2F2F;
}

/* Vídeo e controles */
.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  overflow: visible;
    margin: 0;
	z-index: 1012;
}

.controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.audio-button {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    z-index: 1022;
}

.audio-button:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
}

.volume-control {
    display: flex;
    align-items: center;
}

.volume-slider {
    width: 200px;
    height: 5px;
    background-color: #ccc;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.volume-slider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
}

.volume-value {
    font-size: 16px;
    color: #fff;
}

video {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
	z-index: 10;
}

/* Vídeos por dispositivo */
.video-desktop {
    display: block;
	z-index: 10;
}

.video-mobile {
    display: none;
	z-index: 1011;
}

@media screen and (max-width: 768px) {
    .video-desktop {
        display: none;
    }

    .video-mobile {
        display: block;
    }
}

/* Galeria em formato hexágono */
.hexagon-gallery__hex {
    position: relative;
    width: 160px;
    height: 180px;
    margin: 5px;
}

.hexagon-gallery__hexagon {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.hexagon-gallery__hexagon:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hexagon-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.hexagon-gallery__hex:hover .hexagon-gallery__overlay {
    opacity: 1;
}

.fa-expand {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

/* Título e descrição */
.heading_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.heading_container h2 {
    margin-bottom: 10px;
}

.heading_container p {
    margin-top: 0;
}

/* Ajustes de seções */
.sub_page .hero_area {
    height: auto;
}

.sub_page .slider_section {
    background: none;
}

.sub_page.about_page .slider_section {
    background-color: #f8f8f8;
}

/* Cabeçalho */
.header_section {
    background-color: #f4f3f3;
}

.header_section .nav_container {
    margin: 0 auto;
}

/* Navegação */
.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: relative;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #f8f9fa;
    padding: 15px;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .dropdown-menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
  }
  
  .dropdown-item {
	  z-index: 2000;
    padding-left: 30px;
  }
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    color: #087EC0;
}


@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
	  background-color: 
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}
.custom_nav-container .contact_nav {
  width: 95%;
  margin-right: auto;
}

.custom_nav-container .contact_nav .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.custom_nav-container .contact_nav .nav-item .nav-link {
  padding: 0px 25px;
  color: #000000;
  text-align: center;
}

.custom_nav-container .contact_nav .nav-item .nav-link img {
  width: 22px;
  margin-right: 15px;
}

.custom_nav2 {
  padding: 0 45px;
}

.custom_nav2 .custom_nav-container {
    padding: 5px 0;
    background-color: #087EC0;
    -webkit-clip-path: polygon(0 0, 100% 0%, 95% 100%, 5% 100%);
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 5% 100%);
}

.custom_nav2 .navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 10px 30px;
  color: #070101;
  text-align: center;
  position: relative;
}

.custom_nav2 .navbar-expand-lg .navbar-nav .nav-item.active .nav-link, .custom_nav2 .navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
    color: #FFFFFF;
}

.custom_nav2 #navbarSupportedContent {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.custom_nav2 {
  padding: 15px 0;
  position: relative; /* Adicionado */
  z-index: 1050; /* Adicionado - garante que a navbar fique acima de outros elementos */
}

.custom_nav-container {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 0 20px;
  position: relative; /* Adicionado */
}

.navbar-nav {
  gap: 10px;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 10px 15px !important;
  transition: all 0.3s;
}

.nav-link:hover, 
.nav-item.active .nav-link {
  color: #0066cc !important;
  transform: translateY(-2px);
}

/* Dropdown moderno - MODIFICAÇÃO PRINCIPAL AQUI */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Sombra mais forte */
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  min-width: 280px;
  z-index: 1060; /* Valor alto para ficar acima de tudo */
  position: absolute; /* Garante posicionamento absoluto */
}

.dropdown-item {
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s;
  display: flex;
  align-items: center;
	position: relative;
	z-index: 2000;
}

/* Garante que o container da navbar crie um novo contexto de empilhamento */
.custom_nav2 {
  position: relative;
  z-index: 1050; /* Valor alto o suficiente */
}

/* Estilos para o dropdown */
.navbar-collapse {
  z-index: 1060 !important; /* Mais alto que o container */
}

.dropdown-menu {
  z-index: 1070 !important; /* Mais alto que o menu colapsado */
  position: absolute;
  transform: none !important; /* Remove transformações que podem afetar o z-index */
  will-change: transform; /* Otimização para browsers modernos */
}

/* Correção para o menu mobile */
@media (max-width: 991px) {
  .navbar-collapse.collapse {
    position: absolute;
    width: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 1080 !important; /* Valor ainda mais alto para mobile */
  }
  
  .dropdown-menu {
    position: static; /* Reset para mobile */
    z-index: auto !important;
  }
}

/* Reset de z-index em elementos pais */
.slider_section {
  position: relative;
  z-index: auto !important;
}

.container {
  position: static !important;
  z-index: auto !important;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #0066cc !important;
  padding-left: 25px;
}

.dropdown-item i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: #0066cc;
}

/* Toggler personalizado */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Responsividade */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 20px 0;
    background: white;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1050; /* Garante que o menu mobile também fique acima */
  }
  
  .nav-item {
    margin-bottom: 5px;
  }
  
  .dropdown-menu {
    box-shadow: none;
    border: 1px solid #eee;
    position: static; /* Ajuste para mobile */
    z-index: auto;
  }
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

/* Estilos gerais para seções */
.slider_section {
    height: calc(100% - 00px);
    
    background-size: cover;
    margin-bottom: 0px;
    width: 100%;
}

.slider_section .slider_container {
    height: calc(100% - 60px);
    display: flex;
    align-items: center;
}

.slider_section #carouselExampleIndicators {
    width: 100%;
}

.slider_section .detail-box h2 {
    color: #1FA2D1;
    padding-bottom: 50px;
    margin-bottom: 0px;
    padding-top: 50px;
    margin-top: 0px;
    width: auto;
}

.slider_section .detail-box h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
}

.slider_section .detail-box p {
    color: #000000;
}

.slider_section .detail-box .btn-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
    margin: 35px -5px 0 -5px;
}

.slider_section .detail-box .btn-box a {
    width: 165px;
    text-align: center;
    margin: 5px;
}

.slider_section .detail-box .btn-box .btn-1 {
    display: inline-block;
    padding: 7px 0;
    background-color: #1FA2D1;
    border: 1px solid #1FA2D1;
    color: #ffffff;
}

.slider_section .detail-box .btn-box .btn-1:hover {
    background-color: transparent;
    color: #1FA2D1;
}

.slider_section .detail-box .btn-box .btn-2 {
    display: inline-block;
    padding: 7px 0;
    background-color: #f4f3f3;
    border: 1px solid #f4f3f3;
    color: #020000;
}

.slider_section .detail-box .btn-box .btn-2:hover {
    background-color: transparent;
    color: #f4f3f3;
}

.slider_section .carousel-indicators {
    bottom: 50%;
    margin: 0;
    transform: translateY(50%);
    align-items: center;
    justify-content: flex-start;
    left: 25px;
}

.slider_section .carousel-indicators li {
    width: 14px;
    height: 14px;
    opacity: 1;
    background-color: transparent;
    border: 2px solid #3F4E52;
    border-radius: 100%;
}

.slider_section .carousel-indicators li.active {
    width: 18px;
    height: 18px;
    border: 3px solid #1FA2D1;
}

.slider_section .number_box {
    width: 50px;
    position: absolute;
    left: 25px;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f8bc1a;
    transform: translateY(-50%);
}

.slider_section .number_box hr {
    border: none;
    width: 1px;
    height: 200px;
    background-color: #1FA2D1;
    margin: 2rem 0;
}

.about_section {
    background-color: #f8f8f8;
}.box {
    align-items: center; /* Alinha verticalmente */
    justify-content: space-between; /* Separa a imagem e o texto */
    gap: 15px; /* Espaço entre os elementos */
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.box img {
    width: 304px; /* Ajuste conforme necessário */
    height: auto;
    border-radius: 5px;
}

.box .text {
    flex: 1; /* Faz o texto ocupar o espaço disponível */
    font-size: 16px;
    color: #333;
}

.about_section  {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 85%;
    margin: 0 auto;
}

.about_section .img-box .img-box2 img {
    max-width: 100%;
}

.about_section .detail-box {
    margin-top: 20px;
}

.about_section  .detail-box a {
    display: inline-block;
    padding: 10px 40px;
    background-color: #151615;
    border: 1px solid #151615;
    color: #ffffff;
    margin-top: 15px;
}

.about_section  .detail-box a:hover {
    background-color: transparent;
    color: #1FA2D1;
}

.service_section .service_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service_section .service_container  {
    position: relative;
    color: #ffffff;
    margin: 1%;
    flex-basis: 48%;
}

.service_section .service_container  h6 {
    font-weight: bold;
    text-transform: uppercase;
}

.service_section .service_container  img {
    width: 100%;
}

.service_section .service_container .visible_heading {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.service_section .service_container  .link_box {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service_section .service_container  .link_box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background-color: #f8bc1a;
}

.service_section .service_container  .link_box a img {
    width: 20px;
}

.service_section .service_container  .link_box a:hover {
    opacity: .9;
}

.service_section .service_container .link_box h6 {
    margin-top: 15px;
}

.service_section .service_container :hover .link_box {
    display: flex;
}

.service_section .service_container :hover::before {
    display: block;
}

.service_section .service_container :hover .visible_heading {
    display: none;
}

.us_section {
    background-color: #EBEBEB;
    color: #3F4E52;
    margin: 50px 25px;
}

.us_section .us_container {
    display: flex;
    padding-left: 12%;
    padding-bottom: 0px;
    padding-right: 12%;
}

.us_section .us_container  {
    display: flex;
    align-items: top;
    text-align: center;
    margin: 25px 10px 0 10px;
}

.us_section .us_container .img-box .img-box2 {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.us_section .us_container  .img-box .img-box2 img {
    max-width: 100%;
}

.us_section .us_container  .detail-box h5 {
    font-weight: bold;
}

.client_section  {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 600px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.client_section .img-box .img-box2 {
    width: 500px;
	height: 500px;
}

.client_section  .img-box .img-box2 img {
    width: 100%;
}

.client_section .detail-box {
    margin-top: 25px;
}

.client_section  .detail-box h5 {
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
}

.client_section  .detail-box h5::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 4px;
    border-radius: 10px;
    background-color: #1FA2D1;
    transform: translateX(-50%);
}

.client_section .carousel-indicators {
    margin: 0;
    justify-content: center;
    bottom: 0;
}

.client_section .carousel-indicators li {
    opacity: 1;
    background-color: #000000;
    width: 40px;
    height: 10px;
    border-radius: 10px;
    background-clip: unset;
    border: none;
}

.client_section .carousel-indicators li.active {
    background-color: #f8bc1a;
}

.result_section2 {}

.result_section {
    color: #FCF8F8;
    background-color: #3F4E52;
}
.row2{
    margin-top: 0px;
    margin-bottom: 0px;
    align-items: center;
}
.result_section2 .row {
    align-items: center;
}

.result_section2 .img-box .img-box2 img {
    width: 100%;
}

.result_section2 .detail-box {
    padding-left: 25px;
}

.result_section2 .detail-box h2 {
    font-weight: bold;
    font-size: 2.5rem;
    position: relative;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 0px;
}

.result_section2 .detail-box h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 7px;
    border-radius: 10px;
    background-color: #f8bc1a;
}

.result_section2 .detail-box p {
    margin-top: 15px;
}

.result_section .detail-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #1FA2D1;
    border: 1px solid #106380;
    color: #ffffff;
    margin-top: 25px;
}

.result_section2 .detail-box a:hover {
    background-color: transparent;
    color: #106380;
}

.result_section .row {
    align-items: center;
}

.result_section .img-box .img-box2 {
    width: 100%;
}

.result_section .detail-box {
    padding-left: 25px;
}

.result_section .detail-box h2 {
    font-weight: bold;
    font-size: 2.5rem;
    position: relative;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 0px;
}

.result_section .detail-box h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 7px;
    border-radius: 10px;
    background-color: #f8bc1a;
}

.result_section .detail-box p {
    margin-top: 15px;
}

.result_section .detail-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #1FA2D1;
    border: 1px solid #106380;
    color: #ffffff;
    margin-top: 25px;
}

.result_section .detail-box a:hover {
    background-color: transparent;
    color: #106380;
}

.contact_section {
    position: relative;
}

.contact_section .bg-img {
    position: absolute;
    width: 100px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.contact_section .bg-img img {
    width: 100%;
}

.contact_section .heading_container {
    justify-content: center;
}

.contact_section .heading_container h2 {
    text-transform: unset;
}

.contact_section input::placeholder {
    color: #000;
}

.contact_section input {
    border: none;
    outline: none;
    border-bottom: 0.8px solid #ac9784;
    width: 90%;
    margin: 10px 0;
}

.contact_form-container {
    padding: 15px 0 15px 0;
}

.contact_form-container button {
    border: none;
    background-color: #1FA2D1;
    color: #fff;
    padding: 14px 55px;
    font-size: 14px;
    text-transform: uppercase;
}

.map_container {
    height: 350px;
}

.map_container .map-responsive {
    height: 100%;
}

.info_section {
    background-color: #161616;
    color: #ffffff;
}

.info_section h6 {
    font-weight: bold;
}

.info_section .info_form {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.info_section .info_form h4 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0px;
    width: 113%;
    height: 10%;
}

.info_section .info_form form {
    display: flex;
    align-items: center;
}

.info_section .info_form form input {
    background-color: #ffffff;
    border: none;
    width: calc(100% - 139px);
    outline: none;
    color: #000000;
    height: 42.4px;
    padding-left: 15px;
}

.info_section .info_form form input::placeholder {
    color: #ffffff;
    opacity: 0.2;
}





.info_section h6 {
    margin-bottom: 12px;
    font-size: 18px;
}

.info_section p {
    color: #cbc9c9;
}

.info_section ul {
    padding: 0;
}

.info_section ul li {
    list-style-type: none;
    margin: 3px 0;
}

.info_section ul li a {
    color: #cbc9c9;
}

.info_section ul li a:hover {
    color: #ffffff;
}

.info_section .info_link-box a {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.info_section .info_link-box a:hover {
    color: #ffffff;
}

.info_section .info_link-box a img {
    margin-right: 15px;
    width: 28px;
}

.info_section .info_link-box a span {
    color: #cbc9c9;
}

.info_section .info_link-box a:hover span {
    color: #ffffff;
}

.info_section .info_social {
    display: flex;
    margin: 45px auto 15px auto;
}

.info_section .info_social img {
    width: 35px;
    margin-right: 8px;
}

.footer_section {
    background-color: #161616;
    padding: 20px 0;
}

.footer_section p {
    margin: 0;
    text-align: center;
    color: #ffffff;
}

.footer_section a {
    color: #ffffff;
}
.info_section .info_form form button {
    background-color: #1FA2D1;
    display: inline-block;
    padding-top: 9px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 0px;
    border: 1px solid #f8bc1a;
    color: #000000;
    font-size: 15px;
    text-transform: uppercase;
}
.margin {
    margin-top: 100px;
    /* [disabled]margin-right: 100px; */
    /* [disabled]margin-left: 100px; */
    margin-bottom: 10px;
}
.info_section .info_form form button:hover {
    background-color: transparent;
    color: #1FA2D1;
}

/* Correção: melhora da legibilidade do placeholder */
.info_section .info_form form input::placeholder {
    color: #666;
    opacity: 1;
}


/* Correções para z-index da navbar e vídeo */
.navbar,
.navbar .dropdown-menu {
    position: relative;
    z-index: 9999 !important;
}

video,
.embed-responsive,
.embed-responsive .embed-responsive-item {
    position: relative !important;
    z-index: 0 !important;
}
