/*=========================================================
REI DOS PORTÕES
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    color:#333;

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:1200px;

    max-width:92%;

    margin:auto;

}



/*=========================================================
HEADER
=========================================================*/

#header{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    z-index:9999;

    transition:.35s;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(8px);

}

#header.scrolled{

    background:#fff;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

#header.scrolled nav a{

    color:#222;

}

#header.scrolled #menu-btn span{

    background:#222;

}

#header .container{

    height:95px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:72px;

}

nav ul{

    display:flex;

    gap:40px;

}

nav a{

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#d71920;

}

.btn-topo{

    background:#d71920;

    color:#fff;

    padding:15px 28px;

    border-radius:6px;

    font-weight:700;

    transition:.35s;

}

.btn-topo:hover{

    transform:translateY(-3px);

    background:#bc1017;

}


/*=========================================================
HERO
=========================================================*/

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.60));

}

.hero .container{

    position:relative;

    z-index:5;

}

.hero-texto{

    width:620px;

    color:white;

}

.hero-texto span{

    color:#d71920;

    font-weight:700;

    letter-spacing:2px;

}

.hero-texto h1{

    font-size:65px;

    line-height:1.1;

    margin:18px 0 28px;

    font-weight:800;

}

.hero-texto p{

    font-size:20px;

    margin-bottom:40px;

}

.hero-botoes{

    display:flex;

    gap:18px;

}

.btn-red{

    background:#d71920;

    color:#fff;

    padding:18px 34px;

    border-radius:6px;

    font-weight:700;

    transition:.35s;

}

.btn-red:hover{

    background:#bc1017;

    transform:translateY(-3px);

}

.btn-white{

    background:#fff;

    color:#222;

    padding:18px 34px;

    border-radius:6px;

    font-weight:700;

    transition:.35s;

}

.btn-white:hover{

    transform:translateY(-3px);

}



/*=========================================================
FAIXA
=========================================================*/

.faixa{

    background:#d71920;

    color:#fff;

    padding:45px 0;

}

.faixa-grid{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.faixa h2{

    font-size:34px;

}



/*=========================================================
TÍTULOS
=========================================================*/

.titulo{

    text-align:center;

    margin-bottom:70px;

}

.titulo span{

    color:#d71920;

    font-weight:700;

    letter-spacing:2px;

}

.titulo h2{

    font-size:42px;

    margin-top:10px;

}



/*=========================================================
SERVIÇOS
=========================================================*/

#servicos{

    padding:120px 0;

}

.servicos{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.card{

    background:white;

    padding:45px;

    border-radius:10px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.card img{

    width:75px;

    margin:auto;

    margin-bottom:25px;

}

.card h3{

    font-size:24px;

    margin-bottom:15px;

}

/*=========================================================
EMPRESA
=========================================================*/

#empresa{

    padding:120px 0;

    background:#fff;

}

.empresa-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.empresa-img{

    overflow:hidden;

    border-radius:12px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.empresa-img img{

    width:100%;

    transition:.45s;

}

.empresa-img:hover img{

    transform:scale(1.05);

}

.empresa-texto span{

    color:#d71920;

    font-weight:700;

    letter-spacing:2px;

}

.empresa-texto h2{

    font-size:46px;

    margin:15px 0 30px;

}

.empresa-texto p{

    margin-bottom:20px;

    color:#555;

}

.empresa-texto ul{

    margin-top:30px;

}

.empresa-texto li{

    margin-bottom:12px;

    font-weight:600;

}



/*=========================================================
GALERIA
=========================================================*/

#galeria{

    background:#f7f7f7;

    padding:120px 0;

}


.galeria-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.foto{

    position:relative;

    overflow:hidden;

    border-radius:10px;

    cursor:pointer;

}

.foto img{

    width:100%;

    height:290px;

    object-fit:cover;

    transition:.45s;

}

.foto:hover img{

    transform:scale(1.08);

}

.foto::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;

    transition:.35s;

    z-index:2;

}

.foto::after{

    content:"+";

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:70px;

    height:70px;

    border-radius:50%;

    background:white;

    color:#d71920;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    opacity:0;

    transition:.35s;

    z-index:3;

}

.foto:hover::before,

.foto:hover::after{

    opacity:1;

}



/*=========================================================
MODAL
=========================================================*/

#modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999999;

}

#modal.ativo{

    opacity:1;

    visibility:visible;

}

#modal img{

    max-width:90%;

    max-height:90%;

    border-radius:8px;

}

#fechar{

    position:absolute;

    right:35px;

    top:20px;

    color:#fff;

    font-size:60px;

    cursor:pointer;

}



/*=========================================================
CONTATO
=========================================================*/

#contato{

    padding:120px 0;

}

.contato-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

}

.contato-info h2{

    font-size:44px;

    margin:15px 0 25px;

}

.item{

    margin-bottom:28px;

}

.item h3{

    color:#d71920;

    margin-bottom:8px;

}

.formulario{

    background:#fff;

    border-radius:10px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    padding:45px;

}

.formulario form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.formulario input,

.formulario textarea,

.formulario select{

    width:100%;

    border:1px solid #ddd;

    border-radius:6px;

    padding:18px;

    font-family:inherit;

    font-size:16px;

    transition:.3s;

}

.formulario input:focus,

.formulario textarea:focus,

.formulario select:focus{

    outline:none;

    border-color:#d71920;

}

.formulario textarea{

    resize:vertical;

    min-height:180px;

}

.formulario button{

    border:none;

    background:#d71920;

    color:#fff;

    padding:20px;

    font-size:17px;

    font-weight:700;

    border-radius:6px;

    cursor:pointer;

    transition:.35s;

}

.formulario button:hover{

    background:#bc1017;

}



/*=========================================================
MAPA
=========================================================*/

.maps iframe{

    width:100%;

    height:450px;

    border:0;

}



/*=========================================================
FOOTER
=========================================================*/

footer{

    background:#111;

    color:#fff;

    padding:70px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-grid h3{

    margin-bottom:20px;

}

.footer-grid li{

    margin-bottom:12px;

}

.footer-grid a{

    color:#ddd;

    transition:.3s;

}

.footer-grid a:hover{

    color:#d71920;

}

.logo-footer{

    width:220px;

    margin-bottom:20px;

}

footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.12);

    margin:40px 0;

}

.copy{

    text-align:center;

    color:#bbb;

}



/*=========================================================
WHATSAPP
=========================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    z-index:99999;

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.08);

}

.whatsapp img{

    width:36px;

}



/*=========================================================
RESPONSIVO
=========================================================*/

@media(max-width:992px){

.servicos{

grid-template-columns:repeat(2,1fr);

}

.empresa-grid{

grid-template-columns:1fr;

}

.galeria-grid{

grid-template-columns:repeat(2,1fr);

}

.contato-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

}

}

@media(max-width:768px){

nav{

display:block;

}

.hero{

height:auto;

padding:180px 0 120px;

}

.hero-texto{

width:100%;

}

.hero-texto h1{

font-size:42px;

}

.hero-botoes{

flex-direction:column;

}

.servicos{

grid-template-columns:1fr;

}

.galeria-grid{

grid-template-columns:1fr;

}

.faixa-grid{

flex-direction:column;

text-align:center;

}

.formulario{

padding:30px;

}

.maps iframe{

height:350px;

}
}


/*=========================================================
ANIMAÇÕES AO ROLAR
=========================================================*/

.animar{

    opacity:0;

    transform:translateY(50px);

    transition:opacity .8s ease, transform .8s ease;

}

.animar.esquerda{

    transform:translateX(-60px);

}

.animar.direita{

    transform:translateX(60px);

}

.animar.zoom{

    transform:scale(.9);

}

.animar.apareceu{

    opacity:1;

    transform:translate(0,0) scale(1);

}