/* Reset de margens e padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #FFF;
    color: white;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0;
}

header .logo img {
    height: 4rem;
    border-radius: 0.5rem;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

header nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #EB5E28;
    color: #fff;
}

/* Seções de Produtos */
#products {
    padding: 0;
    background-color: #fff;
}

#products h2 {
    text-align: center;
    font-size: 1.1rem;
    background-color: #252422;
    color: #ffff;
    padding: 0.1rem;
}

/* Estilo da lista de categorias */
.product-categories {
    background-color: #FFF;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-categories li {
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-categories a {
    display: block;
    padding: 1rem 3rem;
    background-color: #EB5E28;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.product-categories a:hover {
    background-color: #EB5E28;
    color: #fff;
}

.product-categories li:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Slider container */
.slider {
    position: relative;
    max-width: 90%; /* Ajuste conforme necessário */
    margin: 1rem auto; /* Centraliza o slider horizontalmente */
    overflow: hidden;
    border-radius: 1rem; /* Opcional: arredonda os cantos do slider */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Opcional: adiciona sombra ao slider */
}

/* Slides */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center; /* Alinha as imagens verticalmente ao centro */
    justify-content: center; /* Centraliza as imagens horizontalmente */
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%; /* Ajuste conforme necessário */
    height: 15rem; /* Ajuste conforme necessário */
    object-fit: cover; /* Ajusta a imagem para cobrir o container sem distorção */
    display: block; /* Remove o espaço abaixo da imagem */
    margin: 0 auto; /* Centraliza a imagem dentro do slide */
}

/* Navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1rem;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.6);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.product-category {
    margin-bottom: 3rem;
}

.product-category h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background-color: #EB5E28;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
}

.products-list {
    display: grid;
    margin: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.product {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Alinha o conteúdo e o botão */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    margin-bottom: 1rem; /* Maior margem para separar a imagem do conteúdo abaixo */
    border-radius: 0.625rem;
}

.product h4 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.product p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product .btn {
    background-color: #009227;
    color: white;
    padding: 0.625rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Alinha o botão à esquerda */
}

.product .btn:hover {
    background-color: #71d103;
}

.product:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Seção Sobre Nós */
#about {
    background-color: #f4f4f4;
    padding: 3rem 0;
}

#about .container {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    margin-right: 2rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}

.about-logo {
    flex: 1;
    text-align: center;
}

.about-logo img {
    height: 8rem;
}

.about-logo p {
    font-size: 1rem;
    color: #333;
}

.about-logo a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
}

.about-logo a:hover {
    color: #16a085;
}

#localizacao a {
    display: block;
    width: 22rem;
    padding: 0.5rem 0.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem 0 1rem 0.5rem;
}

#localizacao a:hover {
    background-color: #0056b3;
}

#localizacao iframe {
    width: 100%;
    height: 20rem;
    border: 1px solid #000;
    border-radius: 1rem;
}

/* Footer */
footer {
    background-color: #FFFCF2;
    color: #000;
    font-family: 'Arial', sans-serif;
    padding: 1.5rem 0;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-section {
    flex: 1;
    margin: 1rem;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods img {
    height: 2.5rem;
    margin-right: 10px;
    transition: transform 0.3s;
}

.payment-methods img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #000;
    width: 100%;
    margin-top: 1rem;
}

.footer-bottom p {
    font-size: 1rem;
    color: #000;
}

footer img {
    height: 8rem;
    width: 8rem;
    border-radius: 0rem;
}

footer a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #000;
}

/* Botão de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1rem;
    background-color: #25d366;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-button a {
    color: white;
    font-size: 60px;
}

/* Responsividade */
/* Media Queries */
@media (max-width: 1024px) {
    header .container {
        padding: 0 5rem;
    }

    header nav ul {
        gap: 0.5rem;
    }

    header nav ul li a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0rem;
        flex-direction:column;
        align-items: center;
    }

    header .logo img {
        height: 3rem;
    }

    header nav ul {
        gap: 0.5rem;
        margin-top: 0rem;
    }

    header nav ul li a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    /* Seções de Produtos */
#products {
    padding: 0;
    background-color: #fff;
}

#products h2 {
    text-align: center;
    font-size: 0.7rem;
    background-color: #252422;
    color: #ffff;
    padding: 0.1rem;
    margin-bottom: 0.6rem;
}

/* Estilo da lista de categorias */
.product-categories {
    background-color: #FFF;
    list-style: none;
    padding: 0;
    margin:0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
}

.product-categories li {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-categories a {
    padding: 0.8rem 0.5rem;
    background-color: #EB5E28;
    color: #fff;
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.product-categories a:hover {
    background-color: #EB5E28;
    color: #fff;
}

.product-categories li:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.product-category h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background-color: #EB5E28;
    color: #fff;
    text-align: center;
    padding: 0.1rem;
}

.product .btn {
    background-color: #009227;
    color: white;
    padding: 0.625rem 0.625rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Alinha o botão à esquerda */
}

    .slider {
        max-width: 100%;
        margin: 1rem auto;
    }

    .slide img {
        height: 6rem;
        width: 100%;
    }

    .products-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .product img {
        height: 10rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .about-logo img {
        height: 6rem;
    }
/* Footer */
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-section {
    flex: 1;
    margin: 1rem;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods img {
    height: 2.5rem;
    margin-right: 10px;
    transition: transform 0.3s;
}

.payment-methods img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #000;
    width: 100%;
    margin-top: 1rem;
}

.footer-bottom p {
    font-size: 1rem;
    color: #000;
}

footer img {
    height: 8rem;
    width: 8rem;
    border-radius: 0rem;
}

footer a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #000;
}

/* Botão de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1rem;
    background-color: #25d366;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-button a {
    color: white;
    font-size: 5rem;
}

}