﻿/* Reset CSS */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

/* Estilos Gerais */
body {
    height: auto !important;
    color: white;
    background-color: var(--escura);
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    user-select: none;
}

p {
    font-size: 1.12rem;
}

/* Definindo variáveis no css */
:root {
    --escura: #121317;
}

header {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--escura);
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

header .logo img {
    width: 200px;
    height: auto;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 55px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

header nav ul li a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
    text-underline-offset: 10px;
}

header nav ul li a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.specialist-btn {
    padding: 15px 20px;
    background-color: #3CDBC0;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
	font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease
}

.specialist-btn:hover {
    background-color: #009B77;
}

.servico-btn {
    padding: 15px 20px;
    background-color: #fff;
    color: #009B77;
    border: none;
    border-radius: 10px;
    font-size: 16px;
	font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease
}

.servico-btn:hover {
    background-color: #ebeaea;
	color: #3CDBC0
}
.abaixo {
    color: #000;
}



.especialista {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    align-items: center;
    max-width: 20vw;
}

.especialista > a {
    color: #000000
} 


.especialista i {
    font-size: 1.75rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.especialista i.fa-instagram:hover {
    color: #ff0069;
}

.especialista i.fa-linkedin:hover {
    color: #0e76a8
}

section:not(.wrapper, #cta, #fale-conosco, #solucoes, #servicos) {
    min-height: 100vh;
    padding: 0;
}


main {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
	height: auto !important;
}

/* Seção Quem Somos */

#quem-somos {
    background-image: url("../imgs/gwave2.jpg"); 
	background-size: 100%;
	background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.text {
    display: flex;
    flex-direction: column;
    padding-left: 12vw;
    min-height: 100vh;
    flex: 1;
    color: white;
	padding-top: 5vw;
	background: linear-gradient(to top, #000, transparent);
	
}


.text h2 {
    font-size: 48px;
    margin-bottom: 10px;

}

.text p {
   
    display: flex;
    height: 25vh;
    width: 70vw;
	text-align: justify;
	font-size: 20px;
	line-height: 2.5vh;
	
}

/* Seção Serviços e Soluções */


#servicos {
    background: linear-gradient(180deg, #000, var(--escura));
}

#servicos, #solucoes {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0 12vw 2% 12vw !important;
}

#servicos > h2, #solucoes > h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

#solucoes > p {
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
    font-size: 20px;
}

.services-container, .solutions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
}

.solution, .service {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    min-height: 12rem;
    max-height: 12rem;
    position: relative;
    margin-bottom: 16px;
}

.solution {
    background-color: #fff;
}

.service {
    color: #fff;
    border: 2px solid #009B77;
    border-radius: 12px;
    min-height: 20vh;
    max-height: 20vh;
}

.service > h3, .solution > h3 {
    font-size: clamp(1.1rem, 2.0vw, 2.0rem); /* Ajuste responsivo do texto */
    text-align: center;
}

.service img, .solution img {
    height: auto;
    max-width: 100%;
    max-height: 80%;
}

.overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 11px;
    color: #fff;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease-out;
    height: 0%;
    font-weight: 500;
    font-size: 1.1rem;
	padding: 10px
}

.service:hover .overlay, .solution:hover .overlay {
    opacity: 1;
    height: 100%;
}

@media (max-width: 1024px) {
    .solution, .service {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .solution, .service {
        width: 100%;
    }
}


/* Seção Chamada para Ação */
#cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Abaixo pode alterar a cor do fundo*/
    background: #101211;
    padding: 10vh 5vw;
	/*background-image: url("../../assets/imgs/dk.jpg");*/
	
}

#cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.textPart {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2%;
}

.textPart > p {
    width: 50%
}

.iconsPart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.iconCoiso {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 15px;
}

.iconCoiso > i {
    font-size: 4rem;
}

.number {
    font-size: 3rem;
}

/* Seção Fale Conosco */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5vh 0;

}


/* Parte do texto do "Fale Conosco" */
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 12vw;
    flex-direction: column;
	width: 100%
}

.contatosPart {
    display: flex;
    justify-content: space-around;
    align-items: center;
	width: 100%;
}

.contact-info > h2[data-aos="fade-up"] {
    font-size: 2.75rem;
    margin-bottom: 3%;
}

.caixa > p {
    font-size: 1rem;
    text-align: left;
    font-weight: 300;

}

.caixa > h2 {
    font-size: 2rem;
}

.caixa > a {
    color: #fff;
    font-size: 2.5rem;
}

.caixa {
    border: 2px solid #3CDBC0;
    border-radius: 12px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: space-between;
    row-gap: 10px;
    max-width: 18vw;
    min-width: 18vw;
    flex-wrap: wrap;
    transition: all 0.3s ease !important;
    transition: color 0.5s ease !important;
	max-height: 210px;
	min-height: 210px;
}

.caixa:hover{
    border: none;
    transform: scale(1.2) !important;
    cursor: pointer;
    background-color: #fff;
    color: black;
}

.caixa:hover .fa-whatsapp,.caixa:hover .fa-envelope,.caixa:hover .fa-phone, .caixa:hover .fa-location-dot{
    color: black; 
}


/* menu hamburguer */

/* Estilos do menu hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    position: absolute;
}

.menu-toggle .hamburger::before {
    transform: translateY(-8px);
}

.menu-toggle .hamburger::after {
    transform: translateY(8px);
}

.menu-toggle.active .hamburger {
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::before {
    transform: rotate(90deg) translateX(8px);
}

.menu-toggle.active .hamburger::after {
    transform: rotate(90deg) translateX(-8px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-wrapper nav {
    display: flex;
}






/* Rodapé */
footer {
    display: flex;
    justify-content: space-around;
    padding: 2% 12vw;
    background-color: var(--escura);
    color: white;
    border-top: rgba(255, 255, 255, 0.53) 1px solid;
}

footer .footer-column {
    width: 23%;
}

footer .footer-column img {
    max-width: 100%;
}

footer .footer-column h3 {
    margin-bottom: 10px;
}

footer .footer-column ul {
    list-style: none;
}

footer .footer-column ul li {
    margin-bottom: 5px;
}

footer .footer-column ul li a {
    color: white;
    text-decoration: none;
}

footer .footer-column ul li a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    html {
        font-size: 125%;
    }

    .caixa {
        min-width: 100%;
        max-width: 100%;
        min-height: 225px;
    }

    .caixa:hover{
        border: none;
        transform: scale(1.08) !important;
        background-color: #fff;
        color: black;
    }
    
    .caixa:hover .fa-whatsapp,.caixa:hover .fa-envelope,.caixa:hover .fa-phone, .caixa:hover .fa-location-dot{
        color: black; 
    }
    

    header {
        max-width: 100vw;
        justify-content: space-between;
    }

    #wrapper {
        margin-top: auto;
    }

    .especialista {
        display: none;
        justify-content: center;
    }

    .especialista {
        display: none;
    }

    header .specialist-btn {
        margin-top: 10px;
    }

    #quem-somos .container {
        flex-direction: column;
    }

    #quem-somos {
        background-image: url(../imgs/gwave2-girada.jpg)
    }
    
    .text {
        padding: 0;
        padding-top: 10vh;
        height: fit-content;
        align-items: center;
        background: linear-gradient(to bottom, #000,#00000000, #000);
    }

    .text > p {
        width: 100%;
        padding: 0 6vw;
        text-align: left;
        line-height: 25px;
    }


    #servicos,#solucoes {
        padding: 0 5vw
    }

    .services-container, .solutions-container {
        flex-direction: column;
        margin:0;
        margin-bottom: 5vh
    }

    .service, .solution {
        padding: 0;
        width: 100%;
    }

    .contact-info {
        width: 100%;
    }

    .contact-info h2 {
        margin-bottom: 3vh !important;
    }

    .contatosPart {
        flex-direction: column;
        row-gap: 20px;
    }

    footer {
        padding-top: 5vh;
        padding-bottom: 5vh;
        flex-direction: column;
        text-align: center;
    }

    .footer-column h3 {
        font-size: 1.25rem;
    }

    .footer-column li {
        margin-bottom: 15px !important;
    }

    footer .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }

    #cta {
        padding: 50px 0;
        flex-direction: column;
    }

    #cta > .textPart {
        flex-direction: column;
    }

    #cta > .iconsPart {
        flex-direction: column;
        row-gap: 50px;
    }

    .nav-wrapper {
        display: none;
    }
}
