/* HERO */
.servicos-hero {
    padding: 120px 60px 60px;
    text-align: center;
}

.servicos-hero h1 {
    font-size: 40px;
    color: #00bfff;
}

/* GRID DE SERVIÇOS */
.servicos-page {
    padding: 80px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 30px;
}

/* BOX */
.servico-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.servico-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,191,255,0.2);
}

.servico-box h2 {
    color: #00bfff;
    margin-bottom: 10px;
}
















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0d1117, #020617);
    color: white;
}



header a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
}




.hero h1 {
    font-size: 55px;
    color: #00bfff;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    max-width: 500px;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 30px;
    background: linear-gradient(45deg, #00bfff, #007bff);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* SERVIÇOS */
.servicos {
    padding: 80px 60px;
    text-align: center;
}

.servicos h2 {
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(0,191,255,0.1);
}

/* DIFERENCIAIS */
.diferenciais {
    padding: 80px 60px;
    background: #020617;
}

.lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    text-align: center;
}

/* CTA */
.cta {
    padding: 80px;
    text-align: center;
}

.cta h2 {
    font-size: 30px;
}

/* WHATSAPP FIXO */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    padding: 15px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}





.smoke {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* antes tava errado */
    pointer-events: none;
}

.hero {
    position: relative; /* IMPORTANTE */
    overflow: hidden;
}

.smoke span {
    position: absolute;
    bottom: -150px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(0,191,255,0) 70%);
    animation: smokeUp 15s linear infinite;
    filter: blur(30px);
}

.smoke span:nth-child(1){left:10%; animation-duration:18s;}
.smoke span:nth-child(2){left:30%; animation-duration:22s;}
.smoke span:nth-child(3){left:50%; animation-duration:20s;}
.smoke span:nth-child(4){left:70%; animation-duration:25s;}
.smoke span:nth-child(5){left:90%; animation-duration:19s;}

@keyframes smokeUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-1000px) scale(2);
        opacity: 0;
    }
}

.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 2;
}



/* HERO BASE */
.hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* TEXTO NA FRENTE */
.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 3;
}

/* FUMAÇA */
.smoke {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.smoke span {
    position: absolute;
    bottom: -150px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0,191,255,0.4) 0%, rgba(0,191,255,0) 70%);
    animation: smokeUp 15s linear infinite;
    filter: blur(35px);
}

.smoke span:nth-child(1){left:10%; animation-duration:18s;}
.smoke span:nth-child(2){left:30%; animation-duration:20s;}
.smoke span:nth-child(3){left:50%; animation-duration:22s;}
.smoke span:nth-child(4){left:70%; animation-duration:25s;}
.smoke span:nth-child(5){left:90%; animation-duration:19s;}

@keyframes smokeUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-1000px) scale(2);
        opacity: 0;
    }
}




/* HEADER */
header {
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
   
    z-index: 1000;
}


/* LOGO CONTAINER */
.logo {
    display: flex;
    align-items: center;
}

/* IMAGEM DA LOGO */
.logo img {
    width: 50px; /* tamanho ideal */
    height: auto;
    object-fit: contain;
}

/* TEXTO AO LADO DA LOGO */
header h2 {
    margin-left: 10px;
    font-size: 22px;
    color: #00bfff;
}

/* MENU */
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav a:hover {
    color: #00bfff;
}


/* RESPONSIVO */
@media(max-width:768px) {
    header {
        padding: 20px;
    }

    .hero {
        padding: 20px;
    }

    .hero h1 {
        font-size: 35px;
    }
}



.empresa-info {
    padding: 80px 60px;
    text-align: center;
    background: #020617;
}

.empresa-info h2 {
    font-size: 30px;
    color: #00bfff;
}

.rating {
    margin: 10px 0;
    font-size: 18px;
    color: gold;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(0,191,255,0.1);
}




.mapa {
    padding: 80px 60px;
    text-align: center;
    background: #020617;
}

.mapa h2 {
    color: #00bfff;
    margin-bottom: 30px;
}

.map-container {
    max-width: 900px;
    margin: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-radius: 20px;
    overflow: hidden;
}

.btn-mapa {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 30px;
    background: linear-gradient(45deg, #00bfff, #007bff);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-mapa:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00bfff;
}



/* SEÇÃO DE COMENTÁRIOS */
.comentarios {
    padding: 80px 60px;
    text-align: center;
    background: #020617;
}

.comentarios h2 {
    color: #00bfff;
    margin-bottom: 40px;
}

/* GRID */
.comentarios .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */
.comentarios .card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: 0.4s;
    position: relative;
}

/* HOVER TOP */
.comentarios .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,191,255,0.2);
}

/* TEXTO */
.comentarios .card p {
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.9;
}

/* NOME */
.comentarios .card strong {
    display: block;
    margin-top: 15px;
    color: #00bfff;
}

/* ESTRELAS */
.comentarios .card::before {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 14px;
    opacity: 0.8;
}




/* CONTAINER */
.social-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

/* BOTÕES */
.social {
width: 50px;
height: 70px;
font-size: 14px;


    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    
}

/* CORES */
.whatsapp { background: #25d366; margin: -5px 0;}
.instagram { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.facebook { background: #1877f2; }

/* HOVER */
.social:hover {
    transform: scale(1.1);
 
}