/* ==========================================================
   INOVA LIMEIRA
   STYLE.CSS
   PARTE 2.1
==========================================================*/

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:#222;

    background:#ffffff;

    overflow-x:hidden;

    line-height:1.6;

}

/* ========================================================== */

:root{

    --preto:#111111;

    --dourado:#d6a643;

    --dourado-hover:#c18f2b;

    --cinza:#666;

    --cinza-claro:#f7f7f7;

    --branco:#ffffff;

    --sombra:0 10px 35px rgba(0,0,0,.12);

    --borda:18px;

    --transicao:.35s;

}

/* ========================================================== */

.container{

    width:min(1200px,90%);

    margin:auto;

}

/* ========================================================== */
/* HEADER */
/* ========================================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    padding:18px 0;

}

header.ativo{

    background:#111;

    box-shadow:0 8px 25px rgba(0,0,0,.18);

}

.header{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    width:180px;

    transition:.3s;

}

.logo:hover{

    transform:scale(1.04);

}

/* ========================================================== */
/* MENU */
/* ========================================================== */

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    width:0;

    left:0;

    bottom:-6px;

    height:2px;

    background:var(--dourado);

    transition:.3s;

}

nav a:hover{

    color:var(--dourado);

}

nav a:hover::after{

    width:100%;

}

/* ========================================================== */

.btn-header{

    background:var(--dourado);

    color:#fff;

    text-decoration:none;

    padding:13px 22px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(214,166,67,.35);

}

.btn-header:hover{

    background:var(--dourado-hover);

    transform:translateY(-3px);

}

/* ========================================================== */
/* HERO */
/* ========================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(0,0,0,.60),
    rgba(0,0,0,.55)
    ),
    url("imagens/banner.jpg");

    background-size:cover;

    background-position:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    90deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.15)
    );

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    position:relative;

    z-index:5;

    padding-top:120px;

    padding-bottom:80px;

}

.hero-texto h4{

    color:var(--dourado);

    font-size:15px;

    letter-spacing:3px;

    margin-bottom:15px;

}

.hero-texto h1{

    color:#fff;

    font-size:58px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-texto h1 span{

    color:var(--dourado);

}

.hero-texto p{

    color:#f1f1f1;

    font-size:18px;

    max-width:580px;

    margin-bottom:35px;

}

/* ========================================================== */
/* BOTÕES HERO */
/* ========================================================== */

.hero-botoes{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:var(--dourado);

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 28px rgba(214,166,67,.30);

}

.btn-primary:hover{

    transform:translateY(-5px);

    background:var(--dourado-hover);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    border:2px solid #fff;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

}

/* ========================================================== */
/* ÍCONES ABAIXO DO HERO */
/* ========================================================== */

.hero-icons{

    display:flex;

    gap:35px;

    margin-top:60px;

    flex-wrap:wrap;

}

.hero-icons div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

}

.hero-icons i{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.12);

    color:var(--dourado);

    font-size:20px;

}

.hero-imagem{

    display:flex;

    justify-content:center;

}

.hero-imagem img{

    width:100%;

    max-width:520px;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

    transition:.5s;

}

.hero-imagem img:hover{

    transform:scale(1.02);

}

/* ========================================================== */
/* TÍTULOS GERAIS */
/* ========================================================== */

section{

    padding:110px 0;

}

section h2{

    font-size:42px;

    text-align:center;

    margin-bottom:15px;

    color:#111;

}

.subtitulo{

    max-width:700px;

    margin:0 auto 60px;

    text-align:center;

    color:#666;

    font-size:18px;

}
/* ==========================================================
   SERVIÇOS
==========================================================*/

#servicos{

    background:#f8f8f8;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.card:hover img{

    transform:scale(1.08);

}

.card h3{

    font-size:24px;

    color:#111;

    margin:25px 25px 10px;

}

.card p{

    margin:0 25px 30px;

    color:#666;

    line-height:1.8;

}

/* Barra dourada superior */

.card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#d6a643;

}

/* ==========================================================
   DRYWALL
==========================================================*/

#drywall{

    background:white;

}

.drywall{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.drywall .texto h2{

    text-align:left;

    margin-bottom:25px;

}

.drywall .texto h2 span{

    color:#d6a643;

}

.drywall .texto p{

    color:#666;

    font-size:18px;

    margin-bottom:35px;

}

.drywall ul{

    list-style:none;

}

.drywall li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-size:18px;

    color:#333;

}

.drywall li i{

    color:#d6a643;

    font-size:22px;

}

.drywall .imagem{

    position:relative;

}

.drywall .imagem img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    transition:.5s;

}

.drywall .imagem img:hover{

    transform:scale(1.03);

}

/* Moldura decorativa */

.drywall .imagem::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border:3px solid #d6a643;

    border-radius:25px;

    top:18px;

    left:18px;

    z-index:-1;

}

/* ==========================================================
   SOBRE
==========================================================*/

#sobre{

    background:#f8f8f8;

}

#sobre p{

    max-width:850px;

    margin:auto;

    text-align:center;

    color:#666;

    font-size:18px;

    line-height:1.9;

}

/* ==========================================================
   GALERIA
==========================================================*/

.galeria{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:25px;

}

.galeria img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:20px;

    transition:.5s;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.galeria img:hover{

    transform:scale(1.04);

    box-shadow:0 25px 60px rgba(0,0,0,.20);

}

/* ==========================================================
   ESTATÍSTICAS
==========================================================*/

.estatisticas{

    background:#111;

    padding:80px 0;

}

.estatisticas .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.numero{

    text-align:center;

    color:white;

}

.numero h2{

    font-size:50px;

    color:#d6a643;

    margin-bottom:10px;

}

.numero p{

    font-size:18px;

}

/* ==========================================================
   DIFERENCIAIS
==========================================================*/

.diferenciais{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.diferencial{

    padding:40px;

    background:white;

    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.diferencial:hover{

    transform:translateY(-10px);

}

.diferencial i{

    font-size:40px;

    color:#d6a643;

    margin-bottom:20px;

}

.diferencial h3{

    margin-bottom:15px;

}

.diferencial p{

    color:#666;

    line-height:1.8;

}
/* ==========================================================
   AVALIAÇÕES
==========================================================*/

#avaliacoes{
    background:#f8f8f8;
}

#avaliacoes .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.avaliacao{
    background:#fff;
    padding:40px 35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    text-align:center;
}

.avaliacao:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.avaliacao p{
    color:#666;
    margin:20px 0;
    line-height:1.8;
}

.avaliacao strong{
    color:#111;
}

.avaliacao::before{
    content:"★★★★★";
    display:block;
    color:#d6a643;
    font-size:24px;
    letter-spacing:4px;
}

/* ==========================================================
   CONTATO
==========================================================*/

#contato{
    background:#fff;
}

.contato{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.formulario{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.formulario h2{
    text-align:left;
    margin-bottom:30px;
}

form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

input,
select,
textarea{

    width:100%;

    padding:16px 20px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    transition:.3s;

}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:#d6a643;

    box-shadow:0 0 0 4px rgba(214,166,67,.15);

}

textarea{

    min-height:150px;

    resize:vertical;

}

button{

    border:none;

    background:#d6a643;

    color:#fff;

    padding:18px;

    border-radius:50px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

button:hover{

    background:#bf8e30;

    transform:translateY(-3px);

}

/* ==========================================================
   MAPA
==========================================================*/

.mapa{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.mapa h2{

    padding-top:35px;

}

.mapa iframe{

    width:100%;

    height:500px;

    border:none;

}

/* ==========================================================
   RODAPÉ
==========================================================*/

footer{

    background:#111;

    color:#fff;

    padding:70px 0 35px;

}

.footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

}

.logo-footer{

    width:180px;

}

.footer p{

    color:#d8d8d8;

}

.redes{

    display:flex;

    gap:18px;

}

.redes a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#222;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.redes a:hover{

    background:#d6a643;

    transform:translateY(-4px);

}

/* ==========================================================
   WHATSAPP
==========================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 12px 35px rgba(37,211,102,.45);

    z-index:999;

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

.whatsapp:hover{

    animation:none;

    transform:scale(1.12);

}

/* ==========================================================
   ANIMAÇÕES
==========================================================*/

.card,
.avaliacao,
.diferencial,
.hero-imagem img,
.formulario,
.mapa{

    transition:all .35s ease;

}

.card:hover,
.avaliacao:hover,
.diferencial:hover{

    transform:translateY(-10px);

}

/* ==========================================================
   RESPONSIVIDADE
==========================================================*/

@media(max-width:1100px){

.hero-content,
.drywall,
.contato{

    grid-template-columns:1fr;

}

.hero{

    text-align:center;

}

.hero-texto{

    order:2;

}

.hero-imagem{

    order:1;

}

.hero-icons{

    justify-content:center;

}

.hero-botoes{

    justify-content:center;

}

.drywall .texto h2{

    text-align:center;

}

}

@media(max-width:768px){

header{

    background:#111;

}

.header{

    flex-direction:column;

    gap:20px;

}

nav ul{

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.hero{

    min-height:auto;

    padding-top:140px;

}

.hero h1{

    font-size:38px;

}

.hero p{

    font-size:16px;

}

section{

    padding:70px 0;

}

section h2{

    font-size:32px;

}

.logo{

    width:150px;

}

.logo-footer{

    width:150px;

}

.footer{

    flex-direction:column;

    text-align:center;

}

}

@media(max-width:480px){

.hero h1{

    font-size:30px;

}

.btn-primary,
.btn-secondary,
.btn-header{

    width:100%;

    justify-content:center;

}

.formulario{

    padding:30px;

}

.whatsapp{

    width:58px;

    height:58px;

    font-size:28px;

}

}#voltarTopo{

position:fixed;

left:25px;

bottom:25px;

width:55px;

height:55px;

background:#111;

color:white;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

text-decoration:none;

opacity:0;

pointer-events:none;

transition:.4s;

z-index:999;

}

#voltarTopo:hover{

background:#d6a643;

}