/* ==========================================
   CENTRO DA COR
   STYLE.CSS
========================================== */

:root{
    --blue:#013AE5;
    --black:#111110;
    --green:#22B400;

    --white:#FFFFFF;
    --light:#F8FAFC;
    --gray:#64748B;
    --border:#E2E8F0;

    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:20px;
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--white);
    color:#475569;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* HEADER */

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,.05);
    transition:.3s;
}

#header.scrolled{
    box-shadow:var(--shadow);
}

#header .container{
    height:95px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:75px;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:var(--black);
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:var(--blue);
}

.btn-header{
    background:var(--green);
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-header:hover{
    background:var(--blue);
}

.menu-mobile{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:var(--black);
}

/* HERO */

.hero{
    min-height:100vh;
    padding-top:150px;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
        135deg,
        #ffffff 0%,
        #f5f9ff 50%,
        #eef4ff 100%
    );
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.tag{
    display:inline-block;
    padding:10px 20px;
    background:rgba(1,58,229,.08);
    color:var(--blue);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    color:var(--black);
    margin-bottom:25px;
}

.hero p{
    font-size:1.1rem;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-image img{
    border-radius:30px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}

.btn-primary{
    background:var(--blue);
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:var(--green);
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid var(--blue);
    color:var(--blue);
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:var(--blue);
    color:#fff;
}

/* SEÇÕES */

section{
    padding:110px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--green);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:2.8rem;
    color:var(--black);
    margin-top:10px;
}

/* SOBRE */

.sobre{
    background:var(--light);
}

.sobre-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.sobre-image img{
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.sobre-text h2{
    font-size:2.4rem;
    color:var(--black);
    margin-bottom:20px;
}

.sobre-text p{
    margin-bottom:15px;
}

.section-tag{
    color:var(--green);
    font-weight:700;
    text-transform:uppercase;
}

/* SERVIÇOS */

.servicos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.servico-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:40px;
    transition:.3s;
}

.servico-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
    border-color:var(--blue);
}

.servico-card i{
    font-size:42px;
    color:var(--blue);
    margin-bottom:20px;
}

.servico-card h3{
    color:var(--black);
    margin-bottom:10px;
}

/* GALERIA */

.galeria{
    background:var(--light);
}

.carousel{
    position:relative;
}

.carousel-track{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

.carousel-track::-webkit-scrollbar{
    display:none;
}

.carousel-track img{
    width:450px;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    flex-shrink:0;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    box-shadow:var(--shadow);
    z-index:5;
}

.prev{
    left:-20px;
}

.next{
    right:-20px;
}

.prev:hover,
.next:hover{
    background:var(--blue);
    color:#fff;
}

/* DIFERENCIAIS */

.diferenciais-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:30px;
    text-align:center;
    font-weight:600;
    transition:.3s;
}

.item:hover{
    border-color:var(--green);
    transform:translateY(-5px);
}

/* REGIÃO */

.regiao{
    background:var(--light);
}

.regiao-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.cidades ul li{
    margin-bottom:15px;
    font-size:18px;
    position:relative;
    padding-left:25px;
}

.cidades ul li::before{
    content:'✓';
    color:var(--green);
    position:absolute;
    left:0;
}

.mapa img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* CTA */

.cta{
    background:
    linear-gradient(
        135deg,
        var(--blue),
        #0d4eff
    );
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:3rem;
    margin-bottom:15px;
}

.cta p{
    margin-bottom:30px;
}

.cta .btn-primary{
    background:var(--green);
}

.cta .btn-primary:hover{
    background:#1d9900;
}

/* CONTATO */

.contato{
    background:#fff;
}

form{
    max-width:800px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{
    width:100%;
    padding:18px;
    border:1px solid var(--border);
    border-radius:12px;
    font-family:'Poppins',sans-serif;
    transition:.3s;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:var(--blue);
}

textarea{
    min-height:180px;
    resize:none;
}

form button{
    background:var(--blue);
    color:#fff;
    border:none;
    padding:18px;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

form button:hover{
    background:var(--green);
}

/* FOOTER */

footer{
    background:var(--black);
    color:#fff;
    text-align:center;
    padding:60px 0;
}

footer img{
    max-height:70px;
    margin:auto;
    margin-bottom:20px;
}

footer p{
    opacity:.8;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    background:var(--green);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    z-index:999;
    box-shadow:0 10px 30px rgba(34,180,0,.35);
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ANIMAÇÕES */

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* MOBILE MENU */

@media(max-width:991px){

    .menu{
        position:absolute;
        top:95px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        text-align:center;
        padding:30px 0;
        display:none;
        box-shadow:var(--shadow);
    }

    .menu.active{
        display:flex;
    }

    .menu-mobile{
        display:block;
    }

    .btn-header{
        display:none;
    }

    .hero-content,
    .sobre-grid,
    .regiao-grid{
        grid-template-columns:1fr;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:3rem;
    }

    .servicos-grid,
    .diferenciais-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* MOBILE */

@media(max-width:768px){

    section{
        padding:80px 0;
    }

    .hero{
        padding-top:130px;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .section-title h2{
        font-size:2rem;
    }

    .servicos-grid,
    .diferenciais-grid{
        grid-template-columns:1fr;
    }

    .carousel-track img{
        width:100%;
        height:250px;
    }

    .prev,
    .next{
        display:none;
    }

    .cta h2{
        font-size:2rem;
    }

    .logo img{
        height:60px;
    }
}