/* ===============================
   RESET + BASE (MOBILE FIRST)
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

/* ===============================
   CONTAINER
================================ */
.container {
    width: 100%;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===============================
   GRID (MOBILE = 100%)
================================ */
.box-3,
.box-4,
.box-6,
.box-8,
.box-12 {
    width: 100%;
}

/* ===============================
   HEADER (MOBILE)
================================ */
header {
    width: 100%;
    background: #e5e5e5;
}

header h1 {
    font-size: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

/* ===============================
   FAIXADA
================================ */
.faixada {
    padding: 30px 0;
    text-align: center;
}

.big-title {
    font-size: 26px;
    margin-bottom: 15px;
}

.text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.caixa {
    display: inline-block;
    background: #ffb000;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}

/* ===============================
   PRODUTOS
================================ */
.produtos {
    background: #ffb000;
    padding: 40px 0;
}

.produtos .big-title {
    color: #fff;
    text-align: center;
    font-size: 24px;
}

.produtos img {
    border-radius: 10px;
}

/* ===============================
   SOBRE
================================ */
.sobre {
    padding: 40px 0;
}

.sub-title {
    margin-bottom: 10px;
}

.paragrafo {
    font-size: 14px;
    line-height: 1.6;
}

/* ===============================
   CONTATO
================================ */
.contato {
    padding: 40px 0;
}

.contato form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input,
textarea {
    padding: 10px;
    font-size: 16px;
}

.btn {
    background: #ffb000;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
}

.contato ul {
    list-style: none;
}

.contato ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}

/* ===============================
   FOOTER
================================ */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* ===============================
   TABLET (>=768px)
================================ */
@media (min-width: 768px) {

    .container {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
        gap: 0;
    }

    .box-12 { width: 100%; }
    .box-8  { width: 66.666%; }
    .box-6  { width: 50%; }
    .box-4  { width: 33.333%; }
    .box-3  { width: 25%; }

    header .container {
        align-items: center;
    }

    nav ul {
        justify-content: flex-end;
    }

    .faixada {
        text-align: left;
        padding: 60px 0;
    }

    .big-title {
        font-size: 36px;
    }
}

/* ===============================
   DESKTOP (>=1024px)
================================ */
@media (min-width: 1024px) {

    .big-title {
        font-size: 42px;
    }

    nav a {
        font-size: 15px;
    }
}
