/* RESET BÁSICO E CONFIGURAÇÕES GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

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

h1, h2 {
    color: #2c2c2c;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    padding-bottom: 10px;
    border-bottom: 3px solid #4CAF50;
    display: inline-block;
}

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

.content-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gray-bg {
    background-color: #f4f4f4;
}

/* CABEÇALHO E NAVEGAÇÃO */
header {
    background-color: rgba(25, 25, 25, 0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.logo-text:hover {
    color: #4CAF50;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom-color 0.3s;
}

header nav ul li a:hover, header nav ul li a.active {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

/* SEÇÃO HERO (HOME) */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('fundo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin: 0 10px;
}

.btn-primary {
    background-color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

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

/* SEÇÃO QUEM SOMOS */
#quem-somos .quem-somos-content {
    display: flex;
    gap: 50px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
    width: 100%;
}

#quem-somos .text {
    flex: 1;
}

#quem-somos .image {
    flex: 1;
    max-width: 500px;
}

#quem-somos .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#quem-somos p {
    margin-bottom: 15px;
}

#quem-somos .emphasis {
    font-weight: bold;
    color: #4CAF50;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* SEÇÃO PRODUTOS E EVENTOS - GALERIA */
#product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 16px;
    cursor: pointer;
    background-color: #e0e0e0;
    border: none;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #4CAF50;
    color: white;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-weight: bold;
}

/* SEÇÃO FALE CONOSCO */
#fale-conosco {
    text-align: center;
}

.contact-info {
    margin-top: 20px;
    font-size: 1.2rem;
}

/* RODAPÉ */
footer {
    background-color: #2c2c2c;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 5px;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #bbb;
}
/* --- RESPONSIVIDADE GERAL PARA TELAS MENORES --- */
@media (max-width: 768px) {
    /* AJUSTES NO CABEÇALHO E NAVEGAÇÃO PARA CELULAR */
    header .logo {
        display: none; /* Esconde o logo em telas pequenas */
    }

    header .container {
        justify-content: center; /* Centraliza o menu de navegação no espaço do cabeçalho */
    }

    header nav ul {
        flex-direction: column; /* Coloca os links um embaixo do outro */
        align-items: center;    /* Centraliza os links verticalmente */
        gap: 15px;              /* Adiciona um espaçamento entre os links */
    }

    header nav ul li {
        margin-left: 0; /* Remove a margem lateral que não é mais necessária */
    }

    /* Outros ajustes de responsividade que você já tinha */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    #quem-somos .quem-somos-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}