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

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

body{
    background:#f7f7f7;
    color:#333;
}

/* ==========================================
   MENU
========================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
   height:80px;
    background:#111;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

.pagina{
    padding-top:170px;
}

.nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

.logo{
    color:#ffb300;
    font-size:28px;
    font-weight:800;
}

.menu a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-weight:500;
}

.menu a:hover{
    color:#ffb300;
}

/* ==========================================
   HERO
========================================== */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.hero-content{
    max-width:900px;
    color:white;
}

.hero h1{
    font-size:65px;
    font-weight:800;
}

.hero h2{
    color:#ffb300;
    margin:15px 0;
}

.hero p{
    font-size:20px;
    line-height:1.8;
}

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

.btn{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:16px 35px;
    border-radius:8px;
    text-decoration:none;
    margin-top:25px;
}

.btn:hover{
    transform:scale(1.05);
}

/* ==========================================
   SEÇÕES
========================================== */

section{
    padding:120px; 20px 80px;
}

.titulo{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.branco{
    color:white;
}

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

.cards{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#ff9800;
    margin-bottom:15px;
}

.card p{
    line-height:1.6;
}

/* ==========================================
   DIFERENCIAIS
========================================== */

.diferenciais{
    background:#111;
    color:white;
    width:100%;
    min-height:100vh;
    padding:120px 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.box{
    background:#1f1f1f;
    padding:30px;
    border-radius:10px;
    text-align:center;
}

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

.galeria{
    background:white;
}

.fotos{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.fotos img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
}

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

.contato{
    background:#ffb300;
    color:white;
    text-align:center;
}

.numero{
    font-size:35px;
    font-weight:700;
    margin:20px 0;
}

.formulario{
    max-width:700px;
    margin:40px auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.formulario input,
.formulario textarea{
    padding:15px;
    border:none;
    border-radius:8px;
}

.formulario button{
    padding:15px;
    border:none;
    border-radius:8px;
    background:#111;
    color:white;
    cursor:pointer;
}

.redes{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:30px 0;
    flex-wrap:wrap;
}

.btn-facebook,
.btn-messenger{
    color:white;
    padding:15px 25px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-facebook{
    background:#1877F2;
}

.btn-messenger{
    background:#0084FF;
}

/* ==========================================
   RODAPÉ
========================================== */

footer{
    background:#000;
    color:white;
    text-align:center;
    padding:25px;
}

/* ==========================================
   CELULAR
========================================== */

@media(max-width:768px){

@media(max-width:768px){

.pagina{
    padding-top:200px;
}

header{
    height:auto;
}

.nav{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:15px;
}

.logo{
    font-size:20px;
    text-align:center;
    margin-bottom:15px;
}

.menu{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.menu a{
    margin:0;
    font-size:16px;
}

.hero h1{
    font-size:42px;
}

.hero h2{
    font-size:24px;
}

.hero p{
    font-size:18px;
}

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

.fotos{
    grid-template-columns:repeat(2,1fr);
}

.fotos img{
    height:120px;
}

.btn{
    width:100%;
    max-width:300px;
}

html,
body{
    overflow-x:hidden;
}

}
