/* margem da página geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container da barra de navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #e85200;
    color: #fff;
    z-index: 1000;
}

/* Estilos do logo */
.navbar .logo {
    font-size: 1.2em;
    font-weight:600;
}

/* Container do menu textos*/
.navbar .menu {
    display: flex;
    gap: 20px;
}

/* Links do menu */
.navbar .menu a {
    text-decoration: none;
    color: #fff;
    font-size: 1em;
    transition: color 0.3s ease;
}

.navbar .menu a:hover {
    color: #000;
}

/* Ícone do menu hamburger */
.menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #fff;
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 100;
    white-space: nowrap; /* Prevents submenu text wrapping */
}

.menu-item {
    position: relative; /* Ensure the submenu aligns with the parent menu item */
}

.menu-item:hover .submenu {
    display: block; /* Makes submenu visible on hover */
}

.menu-item:hover .submenu {
    display: block;
}

.submenu a {
    display: block;
    margin: 5px 0;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        top: 0;
        left:0;
        width: 100%;
        background-color: #e85200;
        padding: 20px;
        z-index: 1000;
		text-align: right;
		
    }

    .navbar .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .submenu {
        position: static;
        display: none;
    }

    .menu-item.active .submenu {
        display: block;
    }
}

/* Ajustes para responsividade */
@media (max-width: 768px) {
    .fullscreen {
        padding: 60px 15px 30px;
    }
    
    .fullscreen h1 {
        font-size: 2.5rem !important;
    }
    
    .fullscreen p {
        font-size: 1.2rem !important;
    }
    
    .fullscreen a {
        padding: 12px 30px !important;
    }
}

@media (max-width: 480px) {
    .fullscreen h1 {
        font-size: 2rem !important;
    }
    
    .fullscreen p {
        font-size: 1rem !important;
    }
}

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* Altura do navbar */
        }



@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .smooth-scroll {
        scroll-behavior: auto !important;
    }
}



        /* Estilos para o botão de volta ao topo */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #c14400;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            z-index: 800;
            border: none;
        }

        .back-to-top:hover {
            background-color: #ff630d;
            transform: translateY(-5px);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

.back-to-top:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}



/* Container apresentação da empresa na index */

 .container1 {
            display: flex;
            align-items: center;
            max-width: 1000px;
            margin: auto;
            padding: 20px;
        }
        .container1 img {
            width: 300px;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 20px;
        }

        @media (max-width: 768px) {
            .container1 {
                flex-direction: column;
                text-align: center;
            }
            .container1 img {
                width: 85%;
                height: auto;
                margin-bottom: 15px;
                margin-right: 0;
            }
        }



     /* FINAL Container apresentação da empresa na index */  

/* BOTAO WHATSAPP RODAPÉ */ 

<style>
    #whatsappButton2 {
        text-decoration: none;
        color: #ccc; /* Cor inicial */
        cursor:auto;
    }

    #whatsappButton2:hover {
        color: #28a745; /* Cor ao passar o mouse */
        
    }
</style>


/* FIM BOTAO WHATSAPP RODAPÉ */ 




 /* TESTIMONIAL na index */  
       
        {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        .testimonials-section {
            padding: 2rem 0;
            background: #fafbff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .swiper {
            padding: 2rem 0;
            overflow: hidden;
        }

        .testimonial-card {
            background: white;
            padding: 3rem;
            position: relative;
            margin: 1rem;
            transition: transform 0.3s ease;
			border-top: 2px solid #eee;
			border-bottom: 2px solid #eee;
        }

        .quote-icon {
            position: absolute;
            top: 5px;
            left: 10px;
            opacity: 0.1;
            font-size: 12rem;
            color: #e85200;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #000;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            border-top: 1px solid #eee;
            padding-top: 1.5rem;
        }

        .client-photo {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ccc;
            
        }



        .client-photo2 {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e85200;
            
        }


        .client-details h4 {
            font-size: 1.2rem;
            color: #e85200;
            margin-bottom: 0.3rem;
        }

        .client-details p {
            color: #636e72;
            font-size: 0.9rem;
        }

        /* Navegação do Swiper */
        .swiper-button-prev,
        .swiper-button-next {
            background: #e85200;
            width: 30px;
            height: 40px;
            
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            color: #FFFFFF !important;
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 1.2rem !important;
        }

        .swiper-pagination-bullet-active {
            background: #e85200 !important;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                padding: 2rem;
            }
            

			.testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #000;
            margin-bottom: 2rem;
            font-weight: 400;
        }
			
			
            
            .client-photo {
                width: 60px;
                height: 60px;
            }
        }


 /* FIM TESTIMONIAL na index */  














/* Configuração geral da GALERIA */



    

img {
    vertical-align: middle; /* Remove espaço fantasma abaixo das imagens */
}




.video-thumbnail {
    position: relative;
    cursor: pointer;
}



.m-p-g__fullscreen video {
    max-width: 100%;
    max-height: 100%;
    outline: none;
}




.m-p-g {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 999;
    left: 0;
    box-sizing: border-box;
}

/* Configuração das miniaturas */
.m-p-g__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Sempre 3 colunas */
    width: 100%;
    gap: 0; /* Remove qualquer espaço entre as imagens */
    margin: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .m-p-g__thumbs {
        grid-template-columns: repeat(3, 1fr); /* Em telas menores, 2 imagens por linha */
    }
}

@media (max-width: 768px) {
    .m-p-g__thumbs {
        grid-template-columns: repeat(3, 1fr); /* Em telas pequenas, 1 imagem por linha */
    }
}

.m-p-g__thumb-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Mantém quadrado */
    overflow: hidden;
    margin: 0;
}

.m-p-g__thumbs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    border-radius: 0;
    display: block;
}


.m-p-g__thumbs-img:hover {
    filter: brightness(40%); /* Escurece a imagem ao passar o mouse */
}

/* Configuração da visualização em tela cheia */
.m-p-g__fullscreen {
    position: fixed; /* Fixa o elemento na tela */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9); /* Define o fundo escuro da visualização */
    display: flex; /* Habilita flexbox para centralizar a imagem */
    align-items: center;
    justify-content: center;
    visibility: hidden; /* Oculta a visualização até ser ativada */
    opacity: 0; /* Inicialmente invisível */
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s; /* Transição suave */
	
}

.m-p-g__fullscreen.active {
    visibility: visible; /* Torna a visualização visível */
    opacity: 1; /* Exibe a imagem em tela cheia */
	 z-index: 998; /* Garante que fiquem sobre a imagem */
}

.m-p-g__fullscreen-img {
    max-width: 100vw; /* Limita a largura da imagem em tela cheia ao viewport */
    max-height: 100vh; /* Limita a altura da imagem ao viewport */
    width: auto;
    height: auto;
    transform: scale(0.8); /* Inicia com um leve zoom */
    transition: transform 0.3s ease-in-out; /* Suaviza a transição de zoom */
}

.m-p-g__fullscreen.active .m-p-g__fullscreen-img {
    transform: scale(1); /* Remove o zoom ao abrir a imagem */
}

/* Ajustes para botões de navegação e fechamento */
.m-p-g__controls-close, .m-p-g__controls-arrow {
    position: absolute;
    background: rgba(100, 38, 5, 0.8); /* Transparência no fundo */
    border: medium;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 1%; /* Mantém formato arredondado */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 1000; /* Garante que fiquem sobre a imagem */
}

.m-p-g__controls-close:hover, .m-p-g__controls-arrow:hover {
    opacity: 0.6; /* Transparência ao passar o mouse */
}

.m-p-g__controls-close {
    top: 55px;
    right: 25px;
}

.m-p-g__controls-arrow--prev {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.m-p-g__controls-arrow--next {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}


/* FIM Configuração geral da GALERIA */

/* Configuração geral MOUSE HOVER */

.imagem-hover {
    transition: opacity 0.3s ease-in-out;
    display: block; /* Evita que o opacity cause mudança no layout */
    max-width: 100%; /* Garante que a imagem não ultrapasse o container */
    height: auto; /* Mantém a proporção da imagem */
}

.card-img-top {
    width: 100%; /* Faz a imagem ocupar toda a largura do card */
    object-fit: cover; /* Mantém o aspecto da imagem */
}


/* FIM Configuração geral MOUSE HOVER */




/* INICIO RODAPÉ */





.footer-section h3 {   /* TÍTULO RODAPÉ */
    font-size: 33px;
    color: #e95300;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: left;
}

.footer-section h4 {
    font-size: 17px;
    color: #e95300;
    padding: 0px 0px;
    text-align: left;
}

.footer-section p { /* endereço e telefone RODAPÉ */
    font-size: 16px;
    color: #fff;
    text-align: left;
	
}

.footer-section a {  /* links RODAPÉ */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
	
}

.footer-section a:hover {
    color: #e95300;
}



        .section:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .section-content {
            max-width: 1200px;
            margin: 0 0;
        }
      
		        footer {
            background-color: #000;
            color: #fff;
            padding: 40px 20px;
			
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
			
        }
        



/* FIM INICIO RODAPÉ */















