/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #ffffff !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff; /* fundo neutro */
    position: relative;
}

/* EFEITO DECORATIVO */
body::before,
body::after {
    display: none;
}


body::before {
    background: #ffffff;
    top: -100px;
    left: -100px;
}



/* CONTAINER */
.container {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
}
/* HEADER */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px;
}

.menu a {
    margin-left: 30px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.hero {
    width: 100%;
    height: 100vh;
    min-height: 650px;

    background: url('../images/hero.png') center / cover no-repeat;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}





/* SOBRE */
.sobre {
    padding: 100px 0;
    background: #f7f7f7;
    text-align: center;
}

.sobre h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.sobre-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.item {
    max-width: 220px;
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
}

.green { background: #8bc34a; }
.yellow { background: #ffc107; }
.red { background: #f44336; }





/* PRODUTOS */
.produtos {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.produtos-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    transition: 0.3s;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-10px);
}






/* PRODUÇÃO */
.producao {
    padding: 100% 0;
    background: #f8f8f8;
}

.producao-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.producao .left {
    width: 100%;
    max-width: 100%;
}

.producao .right img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
}

/* BLOG */
.blog {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.blog-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.post {
    width: 350px;
}

.post img {
    width: 100%;
    border-radius: 10px;
}

/* FOOTER */
.footer {
    background: #1c1c1c;
    color: white;
    padding: 60px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* RESPONSIVO */
@media (max-width: 1024px) {

    .hero h1 {
        font-size: 50px;
    }

    .hero {
        height: 80vh;
    }

}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .hero p {
        font-size: 14px;
    }

    .header-flex {
        flex-direction: column;
    }

}