/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    background:#f5f5f5;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.logo h1{
    color:#FFD000;
    font-size:34px;
    font-weight:800;
}

.logo p{
    color:#ddd;
    font-size:14px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:35px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#FFD000;
}

/* ===========================
   BANNER
=========================== */
.banner{

    position:relative; /* FIX: necessário para .video-banner e .overlay se posicionarem corretamente */
    width:100%;
    height:100vh;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("imagens/banner.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.video-banner{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
}

.banner-texto{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    width:80%;
    max-width:900px;
}

.banner-texto h2{
    font-size:60px;
    color:#FFD000;
    margin-bottom:20px;
}

.banner-texto p{
    font-size:22px;
    margin-bottom:35px;
}

/* ===========================
   BOTÕES
=========================== */

.botoes{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{

    background:#FFD000;
    color:#111;
    text-decoration:none;
    padding:18px 38px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;

}

.btn:hover{

    background:#fff;
    transform:translateY(-5px);

}

.btn2{

    border:2px solid #FFD000;
    color:#FFD000;
    text-decoration:none;
    padding:18px 38px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;

}

.btn2:hover{

    background:#FFD000;
    color:#111;

}

/* ===========================
   SOBRE
=========================== */

#sobre{

    padding:100px 0;
    background:#fff;

}

.sobre-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.texto h2{

    font-size:42px;
    margin-bottom:25px;

}

.texto p{

    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;

}

.imagem img{

    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);

}

/* Vídeo da seção Sobre — precisa ser responsivo igual a .imagem img,
   senão ele renderiza no tamanho nativo do arquivo e estoura o grid */
.video-sobre{
    width:100%;
}

.video-sobre video{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.destaques{

    display:flex;
    justify-content:space-between;
    margin-top:40px;
    gap:20px;

}

.destaques div{

    background:#FFD000;
    padding:25px;
    border-radius:15px;
    text-align:center;
    flex:1;

}

.destaques h3{

    font-size:32px;
    color:#111;

}

.destaques p{

    margin-top:10px;
    font-size:15px;

}

/* ===========================
   SERVIÇOS
=========================== */

#servicos{

    padding:100px 0;
    background:#111;
    color:#fff;

}

#servicos h2{

    text-align:center;
    font-size:42px;
    color:#FFD000;

}

.subtitulo{

    text-align:center;
    margin:20px auto 50px;
    max-width:700px;
    color:#ccc;

}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;

}

.card{

    background:#1b1b1b;
    padding:35px;
    border-radius:20px;
    transition:.3s;
    border:2px solid transparent;

}

.card:hover{

    transform:translateY(-10px);
    border-color:#FFD000;

}

.card i{

    font-size:55px;
    color:#FFD000;
    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;
    font-size:24px;

}

.card p{

    color:#ddd;
    line-height:1.7;

}
/* ===========================
   GALERIA
=========================== */

#galeria{
    padding:100px 0;
    background:#f7f7f7;
}

#galeria h2{
    text-align:center;
    font-size:42px;
    color:#111;
}

.galeria{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:50px;
}

.item{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    cursor:pointer;
}

.item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.item:hover img{
    transform:scale(1.1);
}

/* ===========================
   ÁREA DE ATENDIMENTO
=========================== */

.atendimento{
    background:#FFD000;
    padding:80px 0;
    text-align:center;
}

.atendimento h2{
    color:#111;
    font-size:40px;
    margin-bottom:20px;
}

.atendimento p{
    font-size:20px;
    margin-bottom:40px;
}

.cidades{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.cidades span{
    background:#111;
    color:#FFD000;
    padding:15px 25px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cidades span:hover{
    background:#fff;
    color:#111;
}

/* ===========================
   CONTATO
=========================== */

#contato{
    padding:100px 0;
    background:#111;
    color:#fff;
}

#contato h2{
    text-align:center;
    color:#FFD000;
    font-size:42px;
    margin-bottom:60px;
}

.contato-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.dados{
    background:#1b1b1b;
    padding:40px;
    border-radius:20px;
}

.dados h3{
    color:#FFD000;
    font-size:30px;
    margin-bottom:30px;
}

.dados p{
    margin-bottom:20px;
    font-size:18px;
}

.dados i{
    color:#FFD000;
    margin-right:12px;
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{
    width:100%;
    padding:18px;
    border:none;
    border-radius:10px;
    font-size:16px;
    outline:none;
}

textarea{
    resize:none;
    height:180px;
}

button{
    background:#FFD000;
    color:#111;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#fff;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

footer h2{
    color:#FFD000;
    margin-bottom:15px;
}

footer p{
    margin:10px 0;
}

footer hr{
    margin:30px auto;
    width:250px;
    border:1px solid #333;
}

/* ===========================
   BOTÃO WHATSAPP
=========================== */

.whatsapp{
    position:fixed;
    bottom:30px;
    right:30px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.3s;
    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ===========================================================
   RESPONSIVO
   (todos os breakpoints consolidados, do maior para o menor,
   para evitar conflito entre blocos duplicados)
=========================================================== */

/* ---- Tablets (até 992px) ---- */
@media(max-width:992px){

    .container{
        width:92%;
    }

    header{
        flex-direction:column;
        padding:20px;
    }

    .logo h1{
        font-size:28px;
    }

    .logo p{
        font-size:12px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        margin-top:20px;
        gap:10px;
    }

    nav ul li{
        margin:10px;
    }

    .banner{
        height:auto;
        min-height:100vh;
        padding:120px 20px 40px;
    }

    .banner-texto{
        width:95%;
    }

    .banner-texto h2{
        font-size:45px;
    }

    .banner-texto p{
        font-size:19px;
    }

    #sobre,
    #servicos,
    #galeria,
    #contato{
        padding:70px 0;
    }

    .sobre-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .texto h2,
    #servicos h2,
    #galeria h2,
    #contato h2{
        font-size:36px;
    }

    .contato-grid{
        grid-template-columns:1fr;
    }

    .destaques{
        flex-direction:column;
    }

}

/* ---- Celulares grandes (até 768px) ---- */
@media(max-width:768px){

    .banner{
        min-height:90vh;
    }

    .banner-texto h2{
        font-size:34px;
    }

    .banner-texto p{
        font-size:16px;
    }

    .botoes{
        flex-direction:column;
    }

    .btn,
    .btn2{
        width:100%;
        text-align:center;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .galeria{
        grid-template-columns:1fr;
    }

    .cidades{
        flex-direction:column;
        align-items:center;
    }

    .whatsapp{
        width:60px;
        height:60px;
        font-size:30px;
    }

}

/* ---- Celulares (até 600px) ---- */
@media(max-width:600px){

    /* HEADER */
    header{
        position:relative;
        flex-direction:column;
        text-align:center;
        padding:20px;
    }

    .logo h1{
        font-size:26px;
    }

    nav ul{
        flex-direction:column;
        width:100%;
        margin-top:20px;
    }

    nav ul li{
        margin:8px 0;
    }

    nav a{
        font-size:16px;
    }

    /* BANNER */
    .banner{
        height:auto;
        min-height:100vh;
        padding:100px 15px 50px;
    }

    .banner-texto h2{
        font-size:30px;
        line-height:1.2;
    }

    .banner-texto p{
        font-size:16px;
        line-height:1.5;
    }

    .botoes{
        width:100%;
        gap:15px;
    }

    .btn,
    .btn2{
        padding:15px;
        font-size:15px;
    }

    /* SOBRE */
    #sobre{
        padding:60px 0;
    }

    .texto h2,
    #servicos h2,
    #galeria h2,
    #contato h2{
        font-size:30px;
    }

    .texto p{
        font-size:16px;
    }

    .destaques{
        gap:15px;
    }

    .destaques div{
        padding:20px;
    }

    .destaques h3{
        font-size:26px;
    }

    /* SERVIÇOS */
    .card{
        padding:25px;
    }

    .card i{
        font-size:45px;
    }

    .card h3{
        font-size:21px;
    }

    /* GALERIA */
    .galeria{
        grid-template-columns:1fr;
        gap:20px;
    }

    .item img{
        height:220px;
    }

    /* ATENDIMENTO */
    .atendimento{
        padding:60px 20px;
    }

    .atendimento h2{
        font-size:30px;
    }

    .atendimento p{
        font-size:17px;
    }

    .cidades span{
        width:100%;
        text-align:center;
    }

    /* CONTATO */
    .dados{
        padding:25px;
    }

    .dados h3{
        font-size:25px;
    }

    .dados p{
        font-size:16px;
    }

    input,
    textarea{
        font-size:15px;
        padding:15px;
    }

    button{
        padding:15px;
    }

    /* WHATSAPP */
    .whatsapp{
        right:20px;
        bottom:20px;
        width:55px;
        height:55px;
        font-size:25px;
    }

}

/* ---- Celulares muito pequenos (até 360px) ---- */
@media(max-width:360px){

    .banner-texto h2{
        font-size:26px;
    }

    .banner-texto p{
        font-size:14px;
    }

    .logo h1{
        font-size:22px;
    }

    .btn,
    .btn2{
        font-size:14px;
    }

}