/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #ebebeb;
    color: #333;
}

/* Header */
header {
    background-color: lightgray;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    gap: 10px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2f9e41;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
    font-size: 28px;
}

.logo a {
    color: #2f9e41;
}

.search-bar {
    flex: 1;
    display: flex;
    max-width: 600px;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-bar button {
    background-color: #fff;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    color:#2f9e41
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.user-actions a {
    color: #333;
    text-decoration: none;
    display: flex;
    gap: 15px;
}

.user-actions i {
    font-size: 20px;
    margin-bottom: 3px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 5px 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

a:hover {
    color: #2f9e41;
}

/* Banner Principal */
.banner {
    background-image: url('images/banner.png');
    background-color: #2f9e41;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 20px;
}

.banner h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Seção de Ofertas */
.section {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 24px;
    color: #333;
}

.products {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.product {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 4px;
}

.product:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 150px;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-price {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.product-discount {
    color: #00a650;
    font-size: 14px;
}

.product-shipping {
    color: #00a650;
    font-size: 12px;
    font-weight: bold;
}

/* Seção de Categorias */
.categories {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    text-align: center;
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: #2f9e41;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: white;
    font-size: 24px;
}

.category-icon a {
    color: white;
    text-decoration: none;
}

.category-name {
    font-size: 12px;
    color: #666;
}

.category:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: white;
    padding: 30px 0;
    margin-top: 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
}

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

.social-icons a {
    color: #2f9e41;
    font-size: 20px;
}

.copyright {
    color: #999;
    font-size: 12px;
}

.categorias_destaque {
    display: flex;
    column-gap: 20px;
    margin: 0 auto;
}

.destaque {
    /* flex-grow: 1; */
    /* padding: 20px; */
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-basis: 33%;
}

.destaque .destaque-main {
    display: flex;
    justify-content: center;
}

.destaque .destaque-main img {
    width: 100%;
    object-fit: fill;
}

.destaque h2 {
    font-size: 1.5rem;
    padding: 1rem;
}

.destaque-footer {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
}

.destaque-footer img {
    width: 100%;
    border: 2px solid lightgray;
    border-radius: 10px;
}

.destaque-footer img:hover {
    border: 2px solid #2f9e41;
}

.shopping-info {
    display: flex;
    margin: 0 auto;
    gap: 20px;
    justify-content: center;
}

.info-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

}

.info-slide h2 {
    font-size: 1.2rem;
}

.info-slide i {
    color: #2f9e41;
    font-size: 48px;
}

.info-slide p {
    text-align: center;
}