* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
    padding-top: 120px;
    margin: 0;

}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 65%, #fff3e0);
    padding: 8px 60px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 999;
}

.logo-area { 
    text-align: center; 
}

.logo-img { 
    width: 160px; 
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 6px;
}

.menu a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #f57c00;
    transition: 0.3s;
}

.menu a:hover::after { 
    width: 100%; 
}


.contato-btn {
    border: 2px solid #f57c00;
    padding: 4px 14px;
    border-radius: 16px;
    color: #f57c00;
    font-weight: 600;
}

.contato-btn:hover {
    background: #f57c00;
    color: #ffffff;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 70px 60px;
    flex-wrap: wrap;
}

.hero-texto h2 {
    font-size: 42px;
    color: #f57c00;
    margin-bottom: 15px;
}

/* IMAGEM DO SLOGAN */
.hero-slogan {
    max-width: 300px;
    width: 100%;
}

.hero-imagem img {
    max-width: 360px;
    width: 100%;
    animation: sucoEntrada 1.2s ease-out;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 50px 20px;
    }

    .hero-texto h2 {
        font-size: 32px;
    }

    .hero-slogan {
        margin: 15px auto;
        display: block;
        max-width: 220px;
    }
}


@keyframes sucoEntrada {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== SEPARADOR ===== */
.separador-degrade {
    height: 80px;
    background: linear-gradient(to bottom, #ffffff, #ffe0b2);
}

/* ===== NOVA SESSÃO ===== */
.nova-sessao {
    background: #f57c00;
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

/* ===== PRODUTOS ===== */

.produtos {
    padding: 90px 60px;
    background: #fffaf5;
    text-align: center;
}

.produtos h2 {
    font-size: 34px;
    color: #f57c00;
    margin-bottom: 50px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    align-items: stretch; /* IMPORTANTE */
}

.produto-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    padding: 26px 20px;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
}

.produto-card:hover {
    transform: translateY(-8px);
}

.produto-img {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.produto-card h3 {
    margin-bottom: 10px;
}

.produto-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

/* ===== BOTÃO ===== */

.linkcontato-container {
    margin-top: auto;
}

.linkcontato {
    display: block;
    width: 100%;
    background: #f57c00;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 0;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    text-align: center;
}

.linkcontato:hover {
    background: #e76b00;
    transform: translateY(-3px);
}

/* ===== EMBALAGENS ===== */

.embalagens {
    padding: 90px 60px;
    text-align: center;
    background: #b5b5b5;
}

.embalagens h2 {
    font-size: 34px;
    color: #f57c00;
    margin-bottom: 40px;
}

.embalagens-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.emb-card {
    width: 320px;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.emb-card img {
    max-width: 200px;
    margin-bottom: 15px;
}

.emb-btn {
    background: #f57c00;
    border: none;
    color: #ffffff;
    font-size: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.emb-btn:hover { transform: scale(1.1); }

/* ===== RESPONSIVO ===== */

@media (max-width: 900px) {
    .hero {
        gap: 25px;
        padding: 60px 30px;
    }

    .hero-imagem img {
        max-width: 300px;
    }

    .produtos,
    .embalagens {
        padding: 70px 30px;
    }
}

@media (max-width: 768px) {

    body {
        padding-top: 130px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-imagem img {
        max-width: 260px;
    }

    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {

    .header {
        padding: 8px 20px 12px;
    }

    .menu {
        gap: 10px;
        flex-wrap: wrap;
    }

    .logo-img {
        width: 120px;
    }

    .hero-texto h2 {
        font-size: 26px;
    }

    .hero-texto h3 {
        font-size: 18px;
    }
}

html {
    scroll-behavior: smooth;
}



/* ===== FOOTER GERAL ===== */
.footer {
    background: linear-gradient(to right, #1f1f1f, #2b2b2b);
    color: #ffffff;
    margin-top: 0;
}


/* ===== BANNER ===== */
.footer-banner {
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid #333;
}

.footer-banner h2 {
    font-size: 32px;
    font-weight: 500;
}

/* ===== IMAGENS ===== */
.footer-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.footer-images img {
    width: 350px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

.footer-images img:hover {
    transform: scale(1.05);
}

/* ===== CONTAINER ===== */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid #333;
}

/* ===== COLUNAS ===== */
.footer-col h3 {
    margin-bottom: 15px;
    color: #f57c00;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f57c00;
}

/* ===== RODAPÉ FINAL ===== */
.footer-bottom {
    background: #111;
    text-align: center;
    padding: 20px;
    font-size: 13px;
}

/* HAMBURGER BASE */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}

/* ===== MENU MOBILE ===== */
@media (max-width: 768px) {

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        z-index: 1002; /* 🔥 MAIOR QUE O OVERLAY */
    }

    .menu.active {
        right: 0;
    }

    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 1001; /* 🔥 MENOR QUE O MENU */
    }

    .overlay.active {
        display: block;
    }

    .hamburger {
        display: flex;
        z-index: 1003; /* 🔥 MAIOR DE TODOS */
    }
}
