.hero-banner {
    background: #f8f8f8; /* cor de fundo clara */
    padding: 60px 20px;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-image img {
    max-width: 100%;
    border-radius: 20px;
}

.banner-text {
    text-align: left;
}

.banner-text .banner-category {
    color: #ff751f; /* laranja */
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: #222;
}

.banner-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.banner-btn {
    display: inline-block;
    background: #128C7E;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.banner-btn:hover {
    background: #0d6f62;
    color: #e6e6e6;
}

.featured-section {
    text-align: center;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 15px;
}

.featured-section .section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}

.featured-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-products ul.products li.product {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform .2s ease-in-out;
}

.featured-products ul.products li.product:hover {
    transform: translateY(-5px);
}

.featured-products ul.products li.product img {
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    width: 100%;
    height: 220px;
}

.instagram-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    justify-content: center;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 15px;
    text-align: center;
}

.instagram-banner a {
    display: block;
}

.footer {
    background: #f9f9f9;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff751f;
}

.footer-socials {
    margin-top: 15px;
}

.footer-socials a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #ff751f;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    align-items: center;
    max-width: 1200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    color: #666;
}

.payment-icons img {
    height: 24px;
    margin-left: 15px;
}
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-logo {
        margin: 15px auto;
    }

    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-text {
        text-align: center;
    }

    .banner-text h2 {
        font-size: 24px;
    }

    .instagram-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .instagram-banner {
        grid-template-columns: 1fr;
    }
    .instagram-banner img {
        height: 200px;
    }
}
