* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
  background: url('fundo.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7); /* Fundo transparente */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    padding: 20px 0;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 200px;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro {
    margin-bottom: 30px;
}

.intro h1 {
    font-size: 36px;
    color: #FF8C00; /* Laranja da logo */
    margin-bottom: 10px;
}

.intro p {
    font-size: 20px;
    color: white;
}

.highlight {
    color: #FF8C00;
    font-weight: bold;
}

.activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
}

.activity {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo semi-transparente */
    border: 2px solid #FF8C00;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.activity:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}

.activity h3 {
    color: #FF8C00;
    font-size: 18px;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
}

footer p {
    margin: 5px 0;
    color: white;
}

@media (max-width: 768px) {
    .activity {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .activity {
        width: 90%;
    }

    .intro h1 {
        font-size: 28px;
    }
}

.produto-imagem {
    width: 100%; /* A imagem vai ocupar 100% da largura do contêiner */
    height: 200px; /* Defina uma altura fixa */
    object-fit: cover; /* A imagem será cortada para cobrir o contêiner */
    border-radius: 5px; /* Bordas arredondadas */
   
}

.produtos {
    display: flex;
    flex-wrap: wrap; /* Permite que os produtos se organizem em várias linhas */
    gap: 20px; /* Espaçamento entre os produtos */
    color: black; 
}
.produto {
    flex: 1 1 calc(50% - 20px); /* Três produtos por linha com espaçamento */
    background: #f9f9f9; /* Fundo claro para o produto */
    padding: 10px; /* Preenchimento interno */
    border-radius: 5px; /* Bordas arredondadas */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}























/* Estilos para o vídeo de introdução */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-overlay video {
    width: 100%;
    height: auto;
}

#skip-video {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1001;
}

#skip-video:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Oculta inicialmente o conteúdo do site até o vídeo terminar */
.overlay-content {
    display: none;
}






















.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto; /* Centraliza o botão */
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
