* {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(60, 110, 85, 1) 0%,
        rgba(50, 90, 70, 1) 50%,
        rgba(38, 71, 52, 1) 100%
    );
}

#header_pag1 {
    background-color: #264734;
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 0.95;
    flex-wrap: wrap;
}

#logo_site {
    max-width: 150px;
    height: 100px;
}

.container_itens {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.container_itens a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    position: relative;
}

.container_itens a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.container_itens a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
    margin-right: 40px;
}

.header-icons a svg {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.header-icons a {
    width: 26;
    height: 26;
    fill: white;
}

.header-icons a:hover svg {
    transform: scale(1.2);
    fill: #00ffcc;
}

@media (max-width: 768px) {
    #header_pag1 {
        height: auto;
        padding: 10px;
    }

    #logo_site {
        max-width: 120px;
    }

    .container_itens a {
        font-size: 16px;
        margin: 5px 0;
    }

    .header-icons svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    #header_pag1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .container_itens {
        gap: 15px;
    }
}

.main {
    margin-top: 100px;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #fff;
}

.section-title {
    font-size: 24px;
    text-align: center;
    margin: 60px 0 30px;
    position: relative;
    color: #fff;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 38%;
    height: 2px;
    background: #fff;
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.product {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    max-width: 100%;
    border-radius: 8px;
    height: 180px;
    object-fit: cover;
}

.product h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #264734;
}

.product span {
    display: block;
    margin-top: 8px;
    font-weight: bold;
    color: #264734;
}

.btn-comprar {
    margin-top: 12px;
    display: inline-block;
    background-color: #264734;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-comprar:hover {
    background-color: #1d3527;
}

.footer {
    background-color: #1e3d31;
    color: #fff;
    padding: 70px 20px;
    border-top: 1px solid #fff;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    flex: 1;
    min-width: 280px;
    margin: 20px;
}

.footer-info h3 {
    margin-bottom: 15px;
    font-size: 22px;
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
}

.footer-info p {
    margin: 8px 0;
    font-size: 18px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a svg {
    transition: transform 0.2s ease;
}

.social-icons a:hover svg {
    transform: scale(1.2);
    fill: #00ffcc;
}
