body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Cor preta */
    color: #fff; /* Texto branco */
    scroll-behavior: smooth;
}

/* Cabeçalho */
header {
    background-color: #1c1c1c; /* Um tom escuro, quase preto */
    color: white;
    padding: 15px 0;
    text-align: center;
    position: relative;
}
header nav {
    display: none;
}
header .menu-toggle {
    display: block;
    cursor: pointer;
    background-color: #ff0000;
    padding: 10px 20px;
    border: none;
    color: white;
    font-size: 16px;
    margin: 0 auto;
}
header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

/* Container principal */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    background-size: cover; /* Cobrir todo o espaço */
    box-shadow: inset 0 0 2000px rgba(0, 0, 0, 0.5); /* Sombra interna para dar destaque ao texto */
}

/* Títulos e textos */
.left h1 {
    font-size: 38px;
    font-weight: bold;
    color: #FF0000;
}
.left p {
    font-size: 16px;
    margin-top: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

/* Imagem principal */
.right img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* Sombra ao redor da imagem */
}

/* Botões */
.buttons {
    margin-top: 20px;
}
.buttons a {
    display: inline-block;
    padding: 15px 30px;
    margin: 5px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7); /* Sombra ao redor do botão */
    transition: background-color 0.3s, transform 0.3s;
}
.buttons a:hover {
    background-color: #d00000;
    transform: translateY(-2px); /* Efeito de levantar ao passar o mouse */
}

/* Fundo branco para as seções Sobre a Loja, Serviços e Horários */
.about, .services, .hours {
    background-color: #ffffff; /* Define o fundo branco */
    color: #000000; /* Texto preto para contraste */
    padding: 50px;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Sombra leve ao redor das seções */
}

/* Sessões gerais */
.cta, .map {
    background-color: #1c1c1c;
    padding: 50px;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7); /* Sombra ao redor das seções */
}

/* Sessão de chamada para ação */
.cta {
    border: 2px solid #ff0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
    transition: box-shadow 0.3s ease-in-out;
}
.cta:hover {
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.8);
}
.cta a {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    transition: background-color 0.3s, transform 0.3s;
}
.cta a:hover {
    background-color: #d00000;
    transform: translateY(-2px);
}

/* Mapa */
.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* Sombra ao redor do mapa */
}

/* Rodapé */
footer {
    background-color: #1c1c1c;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5); /* Sombra ao redor do rodapé */
}
footer .copyright {
    font-size: 14px;
    margin-top: 10px;
    border-top: 1px solid #555;
    padding-top: 10px;
}

/* Responsividade */
@media(min-width: 768px) {
    header nav {
        display: flex;
        justify-content: center;
    }
    header .menu-toggle {
        display: none;
    }
    .container {
        flex-direction: row;
        text-align: left;
    }
    .left, .right {
        width: 50%;
    }
    footer {
        flex-direction: row;
        text-align: left;
    }
    footer .left, footer .right {
        width: 50%;
    }
}
/* Estilo do Banner */
#banner {
    display: none; /* Começa oculto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1c1c1c;
    color: red;
    text-align: center;
    padding: 20px;
    border: 2px solid red;
    border-radius: 8px;
    font-size: 20px;
    width: 300px;
    z-index: 1000;
    opacity: 0; /* Começa transparente */
    transition: opacity 0.5s ease; /* Transição suave */
}

#close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;
    color: red; /* Cor do botão de fechar */
    font-size: 18px;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Cor do WhatsApp */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Garante que o botão esteja acima de outros elementos */
}

.whatsapp-button img {
    width: 50px; /* Ajuste o tamanho conforme necessário */
    height: auto;
}

