/* RESET E CONFIGURAÇÕES GLOBAIS */
:root {
    --primary-color: #4CAF50;
    /* Verde vibrante */
    --secondary-color: #388E3C;
    /* Verde mais escuro */
    --text-color: #333;
    --light-text-color: #fff;
    --bg-color: #fff;
    --bg-light: #f7f9fa;
    --border-color: #ddd;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 200;
}

.content-section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* HEADER E NAVBAR */
.header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
  max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}


/* SEÇÃO HOME */
.home-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/605-1920x1080-blur_5.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
}

.home-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.home-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
}

/* ESTILOS PARA OS CARROSSÉIS (SWIPER) */
.swiper {
    width: 100%;
    padding-bottom: 40px !important;
    /* Espaço para a paginação */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* Garante que os slides tenham a mesma altura */
    padding: 10px;
    /* Pequeno espaçamento para a sombra */
}

/* SEÇÃO BENEFÍCIOS */
.beneficio-card {
    background: var(--bg-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    /* Garante que o card ocupe o espaço do slide */
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.beneficio-card i {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.beneficio-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* SEÇÃO LOJA */
.produto-card {
    background: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    width: 100%;
    /* Garante que o card ocupe o espaço do slide */
}

.produto-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.produto-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.produto-card h3,
.produto-card .produto-descricao,
.produto-card .produto-preco,
.produto-card .btn-whatsapp {
    padding: 0 20px;
}

.produto-card h3 {
    font-size: 1.4rem;
    margin: 10px 0 10px;
}

.produto-descricao {
    flex-grow: 1;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.produto-preco {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 300;
    margin: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* Customização dos botões e paginação do Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}


/* SEÇÃO FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Ajuste conforme necessário */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* SEÇÃO ENTREGA */
.entrega-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.entrega-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.entrega-card {
    flex: 1;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.entrega-card i {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* SEÇÃO CONTATO */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.contato-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contato-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contato-form button {
    border: none;
    padding: 10px 30px;
    font-weight: 200;
}

/* FOOTER */
.footer {
    background: var(--text-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 20px 0;
}

/* RESPONSIVIDADE */
@media(max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .home-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .entrega-options,
    .contato-wrapper {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}