*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    line-height:1.6;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#1daa61;
    position:fixed;
    width:100%;
    z-index:999;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.logo span{
    color:#f97316;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav a{
    color:#fff;
    text-decoration:none;
}

.hero{
    height:100vh;
    background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd') center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    color:white;
    text-align:center;
    max-width:800px;
    z-index:2;
}

.hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero p{
    margin-bottom:30px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:14px 30px;
    border-radius:5px;
    font-weight:600;
}

.btn-primary{
    background:#1daa61;
    color:white;
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.section{
    padding:100px 0;
}

.bg-light{
    background:#f8fafc;
}

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:10px;
}

.features{
    margin-top:20px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.title{
    text-align:center;
    margin-bottom:50px;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card i{
    font-size:45px;
    color:#f97316;
    margin-bottom:20px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

.process{
    background:#0f172a;
    color:white;
    padding:100px 0;
    text-align:center;
}

.steps{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.steps span{
    width:70px;
    height:70px;
    background:#1daa61;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:auto;
    font-size:28px;
    font-weight:bold;
}

.cta{
    background:#b0bb87;
    color:white;
    text-align:center;
    padding:80px 0;
}

.contact-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

form input,
form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
}

form textarea{
    height:150px;
}

form button{
    background:#f97316;
    color:white;
    border:none;
    padding:15px 25px;
    cursor:pointer;
}

footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:20px;
}



 @media(max-width:768px){

    .hamburger{
        display:flex;
    }

    #menu{
        position:fixed;
        top:70px;
        left:-100%;
        width:100%;
        height:calc(100vh - 70px);
        background:#0f172a;
        transition:all .4s ease;
        z-index:9999;
    }

    #menu.active{
        left:0;
    }

    #menu ul{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        height:100%;
        list-style:none;
    }

    #menu ul li{
        margin:20px 0;
    }

    #menu ul li a{
        color:#fff;
        font-size:22px;
        text-decoration:none;
    }
}

.btn-primary,
.btn-secondary{
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    transform-style: preserve-3d;
}

.btn-primary{
    background: #1daa61;
    color: #fff;
    box-shadow: 0 8px 20px rgba(249,115,22,.35);
}

.btn-primary:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249,115,22,.50);
}

.btn-primary:active{
    transform: translateY(-2px);
}

.btn-primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:rgba(255,255,255,.4);
    transform:skewX(-25deg);
}

.btn-primary:hover::before{
    animation: shine 0.8s ease;
}

@keyframes shine{
    100%{
        left:150%;
    }
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.project{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

.project img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:all .8s ease;
}

.project::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(15,23,42,.95),
        rgba(15,23,42,.1)
    );
    opacity:0;
    transition:.5s;
    z-index:1;
}

.project-info{
    position:absolute;
    bottom:-80px;
    left:25px;
    color:white;
    z-index:2;
    transition:.5s;
}

.project:hover img{
    transform:scale(1.15) rotate(2deg);
}

.project:hover::before{
    opacity:1;
}

.project:hover .project-info{
    bottom:25px;
}

.btn-primary,
.btn-secondary{
    position: relative;
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    transition: all .4s ease;
}

/* Botão Principal */
.btn-primary{
    background: #1daa61;
    color: #fff;
    box-shadow: 0 10px 25px rgba(249,115,22,.35);
}

.btn-primary:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249,115,22,.45);
}

/* Efeito brilho */
.btn-primary::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:50%;
    height:100%;
    background:rgba(255,255,255,.4);
    transform:skewX(-25deg);
}

.btn-primary:hover::before{
    animation: brilho .8s linear;
}

@keyframes brilho{
    100%{
        left:150%;
    }
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* Efeito destaque */
.service-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    overflow:hidden;
    transition:.5s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card i{
    font-size:55px;
    color:#1daa61;
    margin-bottom:20px;
    transition:.5s;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.service-card:hover i{
    transform:scale(1.2) rotate(10deg);
}

/* Efeito Fundo Animado */
.service-card::before{
    content:'';
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    height:100%;
    background:#1daa61;
    transition:.5s;
    z-index:0;
}

.service-card:hover::before{
    top:0;
}

.service-card *{
    position:relative;
    z-index:1;
}

.service-card:hover{
    color:#fff;
}

.service-card:hover i{
    color:#fff;
}

/* carrocel */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slider{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomHero 8s linear infinite;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    z-index:2;
}

.hero-content{
    position:relative;
    z-index:3;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:0 20px;
}

@keyframes zoomHero{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.15);
    }

}

/* =========================
   MENU HAMBURGUER
========================= */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:30px;
    height:3px;
    background:#fff;
    transition:.3s;
}

@media(max-width:768px){

    .hamburger{
        display:flex;
    }

    #menu{
        position:fixed;
        top:80px;
        left:-100%;
        width:100%;
        background:#0f172a;
        transition:.4s;
        z-index:999;
    }

    #menu.active{
        left:0;
    }

    #menu ul{
        display:flex;
        flex-direction:column;
        padding:20px;
    }

    #menu ul li{
        margin:15px 0;
        text-align:center;
    }
}

.hamburger.open span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.hamburger.open span:nth-child(2){
    opacity:0;
}

.hamburger.open span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}
/* =========================
   MENU HAMBURGUER
========================= */
#menu{
    background:#1daa61 !important;
}

/* =========================
   Alinhar para celular sobre nos
========================= */

@media (max-width:768px){

    .section{
        padding:60px 20px;
    }

    .about{
        grid-template-columns:1fr;
        gap:30px;
    }

    .about-image{
        order:1;
    }

    .about-text{
        order:2;
        text-align:center;
    }

    .about-text h2{
        font-size:30px;
        margin-bottom:15px;
    }

    .about-text p{
        font-size:16px;
        line-height:1.7;
    }

    .features{
        grid-template-columns:1fr;
        gap:12px;
        margin-top:20px;
    }

    .features div{
        display:flex;
        align-items:center;
        justify-content:flex-start;
        text-align:left;
        padding:15px;
    }

    .features i{
        font-size:20px;
        min-width:30px;
    }

    .about-image img{
        width:100%;
        height:auto;
        border-radius:12px;
    }
}



/* =========================
   Alinhar para celular sobre nos
========================= */

/* =========================
   Alinhar para celular processo
========================= */
@media (max-width:768px){

    .process{
        padding:60px 20px;
    }

    .process h2{
        font-size:30px;
        margin-bottom:40px;
    }

    .steps{
        grid-template-columns:1fr;
        gap:20px;
    }

    .steps div{
        padding:25px 20px;
        text-align:center;
    }

    .steps span{
        width:60px;
        height:60px;
        font-size:22px;
        margin-bottom:15px;
    }

    .steps h3{
        font-size:20px;
    }

    .steps p{
        font-size:15px;
        line-height:1.6;
    }
}

/* =========================
   Alinhar para celular processo
========================= */

/* =========================
   Alinhar para celular contacto
========================= */

@media (max-width:768px){

    #contacto{
        padding:60px 15px;
    }

    .contact-box{
        grid-template-columns:1fr;
        gap:25px;
    }

    .contact-box > div,
    .contact-box form{
        padding:20px;
    }

    .title h2{
        font-size:30px;
        text-align:center;
    }

    .contact-box h3{
        text-align:center;
        margin-bottom:20px;
    }

    .contact-box p{
        font-size:15px;
        text-align:center;
    }

    .contact-box input,
    .contact-box textarea{
        font-size:16px;
        padding:14px;
    }

    .contact-box button{
        padding:16px;
        font-size:16px;
    }
}

/* =========================
   Alinhar para celular contacto
========================= */

