/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f5f3;
    color: #444;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #f58416;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom: 4px solid #fff;
}

.navbar img {
    height: 90px;
    width: auto;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    margin-left: 20px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #000;
}

/* ================= ABOUT ================= */
.about {
    padding: 80px 60px;
}

.about h1 {
    font-size: 78px;
    color: #f58416;
    line-height: 1.05;
}

/* ================= QUEM SOMOS ================= */
.page {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.container {
    flex: 1;
}

.right-content {
    flex: 0.6;
    font-size: 50px;
    color: #f58416;
    text-align: right;
}

.quemsomos,
.oqfazemos {
    background-color: #f9f5f3;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: 0.3s;
}

.quemsomos{
    margin-right: 50%;
}

.oqfazemos{
    margin-left: 50%;
}

.quemsomos h1,
.oqfazemos h1 {
    font-size: 55px;
    color: #f58416;
    text-align: center;
}

.quemsomos-text,
.oqfazemos-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    font-size: 22px;
    text-align: center;
}

.quemsomos:hover .quemsomos-text,
.oqfazemos:hover .oqfazemos-text {
    max-height: 500px;
}

.quemsomos:hover,
.oqfazemos:hover {
    box-shadow: 0 30px 30px -1px rgba(0,0,0,0.1);
}

/* ================= SERVIÇOS ================= */
.serviços h1 {
    font-size: 55px;
    color: #f58416;
    margin: 40px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product {
    background-color: #f58416;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 25px;
    width: 90%;
    margin: auto;
}

.product img {
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.product h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.product p {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.product:hover {
    box-shadow: 0 30px 30px -1px rgba(0,0,0,0.2);
}

/* ================= CONTATO ================= */
.conteinercontact {
    display: flex;
    background-color: #f58416;
    border-radius: 12px;
    padding: 30px;
    margin: 40px;
    gap: 30px;
}

.contact1 {
    flex: 1;
    color: #fff;
}

.contact1 h1 {
    font-size: 50px;
}

.contact1 p {
    font-size: 22px;
}

.contact2 img {
    width: 100%;
    max-width: 500px;
}

/* ================= WHATS ================= */
.whats {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

.whats img {
    width: 70px;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #777;
}

/* =================================================
   RESPONSIVO - CELULAR
   ================================================= */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .navbar a {
        font-size: 18px;
        margin: 5px 0;
    }

    .about {
        padding: 40px 20px;
    }

    .about h1 {
        font-size: 42px;
    }

    .page {
        flex-direction: column;
        padding: 20px;
    }

    .right-content {
        text-align: left;
        font-size: 32px;
    }

    .quemsomos,
    .oqfazemos{
    margin: 10%;
    }


    .quemsomos h1,
    .oqfazemos h1 {
        font-size: 36px;
    }

    .quemsomos-text,
    .oqfazemos-text {
        font-size: 18px;
    }

    .serviços h1 {
        font-size: 38px;
        margin: 20px;
    }

    .product {
        flex-direction: column;
        width: 95%;
    }

    .product img {
        width: 100%;
        height: auto;
    }

    .product h3 {
        font-size: 20px;
    }

    .product p {
        font-size: 16px;
    }

    .conteinercontact {
        flex-direction: column;
        margin: 20px;
    }

    .contact1 h1 {
        font-size: 36px;
    }

    .contact1 p {
        font-size: 18px;
    }

    .whats img {
        width: 55px;
    }
}
