/*** Spinner Start ***/
/*** Spinner ***/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* O resto do seu CSS começa aqui */

body {
    font-family: 'Poppins', sans-serif;
    /* sans-serif é uma fonte de fallback (alternativa) caso Poppins não carregue */


    /* ajuste conforme altura real do navbar */
    padding-top: 50px;

}

:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #282828;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #F54927;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #F54927;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #F54927;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    background: var(--bs-orange);
}

.btn.btn-primary:hover {

    color: var(--bs-dark);
    background: white;
}

.btn.btn-light {
    color: var(--bs-orange);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-orange);
}


/*** Topbar Start ***/


/* Adicione isso ao final do seu arquivo css/style.css */
.topbar {
    /* Garante que o display está correto em todos os momentos */
    display: block !important;
    /* Garante que ele está acima de tudo */
    z-index: 99;
    /* Define uma altura mínima para que você possa vê-lo */
    min-height: 45px;
    /* Adiciona uma cor de fundo sólida para confirmar que está lá */
    background-color: #f8f9fa !important;
    /* Garante que não está sendo movido */
    position: relative;
}



.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-orange);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-orange);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-orange);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/


/*** Navbar ***/



/*** Navbar Start (Ajustado) ***/

/* Estilos de Base (Aplica-se ao Navbar principal) */
/* Estilos de Base (Aplica-se ao Navbar principal) */
.navbar-light {
    position: fixed;
    /* Mantenho fixed para flutuar abaixo do topo */
    width: 100%;
    /* top: 45px;  <-- REMOVA OU COMENTE ESSA LINHA */
    top: 0;
    /* <-- ADICIONE OU MANTENHA O TOP: 0 PARA FICAR NO TOPO */
    left: 0;

    background: var(--bs-orange);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    z-index: 999;
    padding: 5px 0;

    /* Adiciona transição para o topo: 0.3s ease; */
    transition: top 0.3s ease, background-color 0.3s ease;
}

/* Reduz o padding do navbar (opcional, se quiser mais fino) */
.navbar-light .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Estilo do Logo */
.navbar-light .navbar-brand img {
    max-height: 40px;
    transition: max-height 0.5s;
    /* Especifica a transição */
}

/* Efeito ao "grudar" no topo (Se o HTML usa a classe sticky-top) */
.sticky-top.navbar-light {
    top: 0;
    /* Move para o topo da tela */
    padding: 0;
    /* Remove padding extra se desejar */
}

/* Ajusta o logo quando o Navbar está "grudado" */
.sticky-top.navbar-light .navbar-brand img {
    max-height: 35px;
}

/* Links de Navegação (Desktop) */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 20px;
    padding: 15px 0;
    color: var(--bs-white);
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: color 0.3s;
    /* Transição apenas na cor */
}

/* Efeito Hover e Ativo */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff3cd;
    /* Cor clara no hover/ativo */
}

/* Ícones nos Links */
.navbar-light .navbar-nav i {
    font-size: 14px;
    margin-right: 5px;
    /* Adiciona um pequeno espaço entre ícone e texto */
}

/* ------------------------------------- */
/* MOBILE (max-width: 991.98px) */
/* ------------------------------------- */
@media (max-width: 991.98px) {
    .navbar-light {
        top: 0;
        /* Força o menu móvel a ir para o topo */
        padding: 10px 0;
    }

    .navbar-light .navbar-toggler {
        padding: 6px 12px;
        border: 1px solid #fff;
        color: #fff;
    }

    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 8px 0;
        margin-left: 0;
        color: #fff;
    }
}

/* ------------------------------------- */
/* DESKTOP (min-width: 992px) */
/* ------------------------------------- */
@media (min-width: 992px) {

    /* Underline (::before) para links no Desktop */
    .navbar-light .navbar-nav .nav-link::before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        /* Posição abaixo do link */
        left: 0;
        background: #fff;
        transition: width 0.3s ease-in-out;
    }

    /* Efeito de expansão no hover/ativo */
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
    }

    /* Removido ::after, já que é idêntico a ::before e pode ser fundido. */

}

/*** Navbar End ***/



/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-orange);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-orange);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;

}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0% {
        height: 100%;
        opacity: 0.9;
    }

    25% {
        height: 110%;
        opacity: 0.50;
    }

    50% {
        height: 115%;
        opacity: 1;
    }

    75% {
        height: 110%;
        opacity: 0.50;
    }

    100% {
        height: 100%;
        opacity: 0.9;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

/*** Service End ***/


/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-orange);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}

/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-white);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: var(--bs-orange);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}

/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-orange);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-orange);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-orange);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-orange);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-orange);
}

/*** Blog End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
}

/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-ornage);
}

.team .team-item .team-img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-dark);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item .testimonial-quote-left {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-quote-right {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-secondary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-orange);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-orange);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}

/*** copyright end ***/


.fixed-img {
    height: 250px;
    /* altura fixa */
    object-fit: cover;
    /* corta a imagem mantendo proporção */
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    /* distância do rodapé */
    left: 20px;
    /* posição no lado esquerdo */
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.phone-icon-hover {

    color: white !important;
}

.phone-icon-hover:hover {

    color: #ff8000 !important;
}

a.text-white:hover i {
    color: #ff8000 !important;
}

.icon-spacing {
    margin-right: 25px;
}


.phone-btn:hover,
.phone-btn:focus,
.phone-btn:active {
    background-color: #fff;
    /* opcional: muda fundo ou mantém */
    color: #ff8000 !important;
    /* laranja */
}

.phone-btn:hover i,
.phone-btn:focus i,
.phone-btn:active i {
    color: #ff8000 !important;
    /* ícone também laranja */
}

.text-primary {
    color: #ff8000 !important;

}

.outline-orange {
    outline: none !important;
}

/* Para garantir que o vídeo ocupe toda a área do container */
.header-carousel-item {
    position: relative;
    height: 100vh;
    /* Ocupa 100% da altura da viewport */
    overflow: hidden;
}

/* Para o vídeo se ajustar e preencher o container */
.carousel-video-full {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Este é o principal para cobrir a área */
}

/* Estilos para o contêiner do tooltip */
.tooltip-container {
    position: relative;
    /* Essencial para o posicionamento do tooltip */
    display: inline-block;
}

/* Estilos para o texto do tooltip */
.tooltip-text {
    visibility: hidden;
    /* Começa escondido */
    width: 140px;
    background-color: rgba(100, 100, 100, 0.8);
    /* Cinza transparente */
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    font-size: 14px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    /* Posição acima do botão */
    left: 50%;
    margin-left: -70px;
    /* Metade da largura para centralizar */
    opacity: 0;
    transition: opacity 0.3s;
    /* Transição suave */
    pointer-events: none;
    /* Garante que o tooltip não atrapalhe os cliques */
}

/* Exibe o tooltip quando o mouse passa sobre o contêiner */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Opcional: Adicionar uma seta na parte inferior do tooltip */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    /* Na parte inferior do tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(100, 100, 100, 0.8) transparent transparent transparent;
    /* Mesma cor do fundo */
}

/* Container que agora centraliza o botão flutuante no CANTO INFERIOR DIREITO */
/* Container que define a posição no canto inferior direito */
.whatsapp-float-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* IMPORTANTE: Mantém na direita */
    z-index: 9999;
}

/* O link que é o botão real */
.whatsapp-float {
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Borda branca adicionada */
    border: 3px solid #fff;

    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: bounce 2s infinite;
    /* Mantém a animação de flutuação */
}

/* Aumenta o tamanho do ícone */
.whatsapp-float i {
    font-size: 32px !important;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    /* Efeito de brilho ao passar o mouse */
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


/* 1. Wrapper do Banner (Garante Full Width na horizontal) */
.hero-banner-wrapper {
    position: relative;
    width: 100%;
    /* Garante que nada saia lateralmente e causa barra de rolagem */
    overflow-x: hidden;
    box-shadow: none;
    /* Garante que nenhuma sombra esteja vindo do container */
    z-index: 10;
}

/* 2. Estilos Comuns para o Separador de Onda */
.wave-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    /* Altura máxima da área da onda */
    overflow: hidden;
    z-index: 11;
    /* Remove qualquer sombra ou borda no próprio container */
    box-shadow: none !important;
}

/* 3. Estilos Comuns para os SVGs */
.wave-separator svg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* --- ESTILO DA PRIMEIRA ONDA (BRANCA/TOPO) --- */
.wave-separator .top-wave {
    z-index: 2;
    /* Fica acima da onda cinza */
}

.wave-separator .wave-path-top {
    /* COR da Onda do Topo: Deve ser a cor da próxima seção (ex: branco) */
    fill: #ffffff;

    /* ADICIONADO: Sombra na onda de cima (para dar profundidade) */
    filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.1));

    /* Animação 1 */
    transform-origin: 50% 50%;
    animation: subtle-wave-a 10s ease-in-out infinite alternate;
}

/* --- ESTILO DA SEGUNDA ONDA (AZINZENTADA/BAIXO) --- */
.wave-separator .bottom-wave {
    z-index: 1;
    /* Fica por baixo */
    /* Faz a onda de baixo aparecer um pouco mais para baixo/atrás */
    transform: translateY(5px);
}

.wave-separator .wave-path-bottom {
    /* COR da Segunda Onda: Tom Azinzentado/Cinza Claro */
    fill: #f0f0f0;
    /* Um cinza bem claro para o efeito "acinzentado" */

    /* Remove a sombra (a sombra só fica na onda de cima) */
    filter: none;

    /* Animação 2 (Diferente da primeira para o efeito de "movimento") */
    transform-origin: 50% 50%;
    animation: subtle-wave-b 12s linear infinite alternate;
    /* Duração e tipo diferente */
}


/* --- KEYFRAMES DE ANIMAÇÃO --- */

@keyframes subtle-wave-a {
    0% {
        transform: scaleY(1) translateX(0);
    }

    100% {
        transform: scaleY(1.01) translateX(5px);
    }
}

@keyframes subtle-wave-b {
    0% {
        transform: scaleY(1) translateX(5px);
    }

    100% {
        transform: scaleY(1.03) translateX(0);
    }
}




/* --- AJUSTES RESPONSIVOS (Otimização para Celular) --- */

@media (max-width: 768px) {

    /* Reduz a altura mínima do banner */
    .header-carousel {
        min-height: 400px;
    }

    /* Reduz a altura da área de ondulação no celular */
    .wave-separator {
        height: 50px;
    }

    /* Reduz o padding do conteúdo do banner para economizar espaço */
    .carousel-caption {
        padding-bottom: 70px !important;
    }

    /* Reduz o tamanho do título principal */
    .carousel-caption h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
}




/* AJUSTES DE COMPACTAÇÃO PARA TELAS PEQUENAS (MOBILE) */
@media (max-width: 991.98px) {

    /* Regra CRÍTICA: Reduz a altura e o padding vertical do Topbar */
    .topbar {
        min-height: 25px !important;
        /* Altura mínima muito baixa */
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    /* O row (onde está o conteúdo) também precisa ser compacto */
    .topbar .row {
        min-height: 25px;
    }

    /* Reduz o tamanho da fonte no Topbar */
    .topbar a,
    .topbar small {
        font-size: 0.70rem !important;
        /* Fonte ainda menor */
        /* d-flex flex-wrap flex-nowrap: Oculta a margem quebra linha */
        margin-bottom: 0 !important;
    }

    /* Remove o padding interno dos links de contato para compactar */
    .topbar .d-flex a {
        padding: 0 0.3rem !important;
        /* Espaçamento horizontal mínimo */
        margin-right: 0.5rem !important;
        /* Espaço entre os links */
    }

    /* Ajusta a margem dos ícones sociais para ficarem bem colados */
    .topbar .d-inline-flex a small {
        margin-right: 0.3rem !important;
    }
}




/* AJUSTES ESPECÍFICOS PARA O TOPBAR NO DESKTOP (Largura >= 992px) */

/* 1. Aumenta o tamanho dos ÍCONES nas redes sociais (além do ícone de contato) */
.topbar .fa-facebook-f,
.topbar .fa-instagram,
.topbar .fa-whatsapp,
.topbar .fa-twitter,
/* Se houver twitter */
.topbar .fa-linkedin-in {
    /* Se houver linkedin */
    font-size: 1.1em;
    /* Aumenta o tamanho do ícone (ex: 1.1x o tamanho base) */
}

/* 2. Garante um bom espaçamento entre os ícones sociais no desktop */
.topbar .col-lg-4 .d-inline-flex a small {
    /* Usa uma margem maior (me-3) no desktop */
    margin-right: 1.25rem !important;
    /* Corresponde ao espaçamento 'me-4' do Bootstrap */
}

/* 3. Ajusta o tamanho da fonte dos textos de contato no desktop */
.topbar a.text-muted.small {
    font-size: 0.9rem;
    /* Um pouco maior que o 'small' padrão para melhor leitura */
}




/* Estilo para la imagen de drone flutuante no canto */
.drone-corner-image {
    position: fixed;
    /* Mantiene el elemento fijo en la pantalla */
    bottom: 30px;
    /* 30px de la parte inferior de la pantalla */
    right: 30px;
    /* 30px de la parte derecha de la pantalla */
    z-index: 1000;
    /* Garantiza que quede encima del contenido */

    width: 150px;
    /* Ancho de la imagen (ajustar si es necesario) */
    height: 150px;
    /* Altura (igual a la anchura para un círculo, si usas rounded-circle) */
    overflow: hidden;

    /* PROPIEDADES REMOVIDAS: box-shadow y border-radius, si se aplicaron aquí. */
    box-shadow: none !important;
    /* Asegura que no haya ninguna sombra */

    /* Aplica una transición suave para interatividade (opcional) */
    transition: transform 0.3s ease-in-out;
}

/* Para la imagen dentro de la div, removemos la clase shadow-lg del HTML */
.drone-corner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Usamos 'contain' o 'cover' dependiendo de si quieres que se corte */
    border: none !important;
    /* Asegura que no tenga borde */
    border-radius: 0 !important;
    /* Quita el borde redondeado, si la imagen debe ser cuadrada/rect. */
}

/* Opcional: El efecto al pasar el mouse */
.drone-corner-image:hover {
    transform: scale(1.05);
}

/* Ocultar en pantallas pequeñas */
@media (max-width: 768px) {
    .drone-corner-image {
        display: none;
    }
}

/*fin do codigo que faz o drone fluante*/


/* Estilo para la imagen de drone flutuante no canto */
.drone-corner-image {
    position: fixed;
    /* Mantiene el elemento fijo en la pantalla */
    bottom: 30px;
    /* 30px de la parte inferior de la pantalla */
    right: 30px;
    /* 30px de la parte derecha de la pantalla */
    z-index: 1000;
    /* Garantiza que quede encima del contenido */

    width: 150px;
    /* Ancho de la imagen (ajustar si es necesario) */
    height: 150px;
    /* Altura (igual a la anchura para un círculo, si usas rounded-circle) */
    overflow: hidden;

    /* PROPIEDADES REMOVIDAS: box-shadow y border-radius, si se aplicaron aquí. */
    box-shadow: none !important;
    /* Asegura que no haya ninguna sombra */

    /* Aplica una transición suave para interatividade (opcional) */
    transition: transform 0.3s ease-in-out;
}

/* Para la imagen dentro de la div, removemos la clase shadow-lg del HTML */
.drone-corner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Usamos 'contain' o 'cover' dependiendo de si quieres que se corte */
    border: none !important;
    /* Asegura que no tenga borde */
    border-radius: 0 !important;
    /* Quita el borde redondeado, si la imagen debe ser cuadrada/rect. */
}

/* Opcional: El efecto al pasar el mouse */
.drone-corner-image:hover {
    transform: scale(1.05);
}

/* Ocultar en pantallas pequeñas */
@media (max-width: 768px) {
    .drone-corner-image {
        display: none;
    }
}



.carousel-caption .social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* permite quebrar em telas pequenas */
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
    /* garante que fique acima da onda */
}

.carousel-caption .social-buttons .btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    /* evita corte lateral */
    max-width: 800px;
    margin: 0 auto;
}

/* Ajuste em telas muito pequenas */
@media (max-width: 576px) {
    .carousel-caption {
        top: 55%;
        /* joga um pouco mais para baixo */
        transform: translate(-50%, -45%);
    }

    .carousel-caption h1 {
        font-size: 1.6rem;
        /* título menor */
        line-height: 1.3;
    }

    .carousel-caption h4 {
        font-size: 1rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 50px;
        /* dá mais espaço no mobile */
    }
}



.hero-carousel {
    /* Garante que ocupe 100% da largura disponível */
    width: 100%;

    /* ESSENCIAL: Faz com que a altura seja 100% da altura da tela (viewport height) */
    height: 100vh;

    /* Opcional: Garante que o conteúdo (texto, botão) fique centralizado */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Propriedades para a imagem de fundo */
    background-image: url('caminho/para/sua/imagem.jpg');
    background-size: cover;
    /* ESSENCIAL: Garante que a imagem cubra todo o contêiner sem distorção, cortando as bordas, se necessário */
    background-position: center center;
    /* Centraliza a imagem no contêiner */
    background-repeat: no-repeat;
    /* Evita repetição */
}


/* Garante que ocupe a altura completa da tela em todos os dispositivos */
.hero-section {
    height: 100vh;
    width: 100%;
    /* Opcional: Centraliza o texto e botão verticalmente dentro do 100vh */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* MEDIA QUERY para Celulares Pequenos (Largura máxima de 400px) */
@media (max-width: 400px) {

    /* Ajuste o Título Principal (Ex: "Topografía precisa...") */
    .hero-section h1 {
        font-size: 28px;
        /* Reduza o tamanho da fonte */
        line-height: 1.2;
        /* Reduza a distância entre as linhas para economizar espaço */
        padding: 0 10px;
        /* Adicione um padding lateral pequeno para evitar que encoste nas bordas */
    }

    /* Ajuste o Subtítulo/Descrição (Ex: "En Cota 100 nos dedicamos...") */
    .hero-section p {
        font-size: 14px;
        /* Reduza o tamanho da fonte */
        padding: 0 15px;
        margin-top: 10px;
        /* Reduza a margem para aproximar do título */
    }

    /* Ajuste o Botão (se precisar) */
    .hero-section .btn-orcamento {
        padding: 12px 30px;
        /* Reduza o padding para que o botão não fique muito largo */
        font-size: 16px;
    }
}


@media (max-width: 380px) {



    .hero-section video {}




}


/*NOVO CODIGO CSS PARA O CAROUSEL*/

/* ------------------------------------- */
/* 1. SEÇÃO PRINCIPAL (Contêiner Pai) */
/* ------------------------------------- */
.hero-video-section {
    position: relative;
    width: 100%;
    /* Altura total da tela para garantir a cobertura (Full Screen) */
    height: 100vh;
    overflow: hidden;
    /* Remove a cor de fundo ou gradiente que estava escurecendo o vídeo */
    background-color: transparent;
}

/* ------------------------------------- */
/* 2. VÍDEO DE FUNDO (Cobrindo toda a área) */
/* ------------------------------------- */
.video-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Coloca o contêiner do vídeo no fundo */
}

.hero-video-element {
    /* Força o vídeo a se expandir e cobrir o contêiner */
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);

    /* ESSENCIAL: Garante que o vídeo esteja claro, removendo filtros escuros */
    filter: none;
}

/* ------------------------------------- */
/* 3. CONTEÚDO (Texto, Botão, Redes Sociais) */
/* ------------------------------------- */
.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Garante que o conteúdo fique por cima do vídeo */

    /* Centraliza o conteúdo (Flexbox) */
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    text-align: center;
    padding: 20px;
    /* Padding de segurança nas bordas */
}

/* Contêiner de Limitação de Largura para o Conteúdo */
.content-container {
    max-width: 900px;
    /* Limita a largura do texto em telas grandes */
    width: 100%;
    color: white;
    /* Cor do texto padrão */
}

/* ------------------------------------- */
/* 4. ESTILOS DE TEXTO E ELEMENTOS */
/* ------------------------------------- */

.tagline-text {
    color: rgb(188, 187, 185);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.main-title-text {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.description-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.main-cta-button {
    background-color: #ff8c00;
    /* Laranja forte para o botão */
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.main-cta-button:hover {

    color: #282828;

}

.social-title {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 10px;
}

.social-icons .social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #333;
    font-size: 18px;
    margin: 0 5px;
    transition: background-color 0.3s;
}

/* ------------------------------------- */
/* 5. RESPONSIVIDADE (Ajuste para Mobile) */
/* ------------------------------------- */
@media (max-width: 768px) {
    .main-title-text {
        font-size: 2rem;
        /* Reduz o tamanho do título principal */
    }

    .description-text {
        font-size: 1rem;
        /* Reduz o tamanho do parágrafo */
    }

    .social-title {
        font-size: 1.2rem;
    }

    .social-icons .social-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}



/*novo codigo css para o topbar*/
/* ------------------------------------- */
/* ESTILOS DO TOPBAR FIXO */
/* ------------------------------------- */
.site-contact-bar {
    /* FIXAÇÃO: Essencial para que ele não suma em telas pequenas */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    /* CAMADA: Garante que ele fique acima da navbar principal */
    z-index: 1000;

    background-color: #f8f9fa;
    /* Cor de fundo clara (ex: bg-light) */
    border-bottom: 1px solid #eee;
    padding: 5px 0;
    font-size: 14px;
    color: #6c757d;
    /* Cor de texto padrão (ex: text-muted) */
}

.contact-bar-content {
    /* Simula o container-fluid do Bootstrap, usando flexbox */
    display: flex;
    justify-content: space-between;
    /* Links na esquerda, ícones na direita */
    align-items: center;
    max-width: 1320px;
    /* Largura máxima (ex: container-fluid) */
    margin: 0 auto;
    padding: 0 15px;
    /* Padding lateral */
}

/* ------------------------------------- */
/* ESTILOS DOS ITENS INTERNOS */
/* ------------------------------------- */
.contact-links-group {
    display: flex;
    flex-wrap: nowrap;
    /* Evita quebras de linha em links */
    overflow-x: auto;
    /* Permite rolar se houver muitos links */
}

.contact-link {
    color: #6c757d;
    text-decoration: none;
    margin-right: 15px;
    white-space: nowrap;
    /* Mantém ícone e texto na mesma linha */
}

.contact-icon {
    /* Cor primária (laranja no seu esquema) */
    color: var(--bs-orange);
    margin-right: 5px;
}

/* ------------------------------------- */
/* ESTILOS DAS REDES SOCIAIS */
/* ------------------------------------- */
.social-icons-group {
    display: flex;
    align-items: center;
    height: 30px;
    /* Altura para alinhar com o topbar */
}

.social-icon-link {
    color: #495057;
    /* Cor escura para os ícones */
    margin-left: 10px;
    font-size: 1.1em;
}

.social-icon {
    color: var(--bs-orange);
    /* Cor primária */
}

/* ------------------------------------- */
/* MEDIA QUERY: RESPONSIVIDADE (Telas pequenas) */
/* ------------------------------------- */
@media (max-width: 768px) {

    /* Centraliza os itens em mobile, pois o espaço é limitado */
    .contact-bar-content {
        justify-content: center;
    }

    /* Oculta o endereço para economizar espaço em mobile */
    .contact-link.address-link {
        display: none;
    }

    /* Reduz o espaçamento e remove o overflow-x */
    .contact-links-group {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        margin-right: 10px;
    }

    .contact-link {
        margin-right: 10px;
    }
}


/* ------------------------------------- */
/* AJUSTE ESSENCIAL PARA A NAVBAR PRINCIPAL */
/* ------------------------------------- */
/* Você deve aplicar essa margem à sua NAVBAR PRINCIPAL (Laranja) */
.navbar-light {
    /* Esta altura deve ser IGUAL à altura total do seu Topbar */
    top: 40px !important;
    /* Z-index ligeiramente menor que o do Topbar (1000) */
    z-index: 999;
}

/* Ajuste o padding-top do seu CONTEÚDO PRINCIPAL (o vídeo/header) */
.hero-video-section {
    padding-top: 40px;
    /* 40px = Altura do Topbar */
}