/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1F1F1F; /* Fundo preto */
    color: #fff; /* Texto em branco */
    background-image: url('fundo-fumaca.jpg'); /* Imagem de fundo de fumaça */
    background-size: cover;
}

header {
    background-color: white; /* Fundo branco */
    color: black; /* Texto preto */
    padding: 0.5em 1em;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

header .logo {
    height: 50px;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin: 0 1em;
}

header nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

header .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: black;
    font-size: 2em;
    cursor: pointer;
}

.full-screen {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background-image: url('image.png'); /* Fundo com fumaça */
    background-size: cover;
}

.home-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.left-side {
    flex: 1;
    padding-right: 2em;
}

.right-side {
    flex: 1;
}

.puv h2 {
    font-size: 3em; /* Fonte grande para a PUV */
    font-family: 'Lobster', cursive; /* Fonte Lobster */
    color: white; /* Cor do título em branco */
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 1em;
    padding: 0.75em 1.5em;
    background-color: red; /* Botão em vermelho */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 56.25vw; /* Mantém a proporção 16:9 */
    max-height: 675px; /* Altura máxima dos banners */
}

.carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2em 0;
}

.container .content .image {
    flex: 1;
}

.container .content .text {
    flex: 2;
    padding-left: 2em;
}

.container .content .text h2 {
    color: red; /* Cor do título em vermelho */
    text-align: center; /* Título centralizado */
}

#cardapio h2,
#nossos-clientes h2,
#orcamento h2 {
    font-family: 'Lobster', cursive; /* Fonte Lobster */
    color: white; /* Cor do título em branco */
    text-align: center; /* Título centralizado */
}

#orcamento p {
    text-align: center;
    font-family: 'Arial', sans-serif;
}

#orcamento {
    background: url('fundo-orcamento.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

#orcamentoForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

#orcamentoForm label {
    margin-top: 1em;
}

#orcamentoForm input,
#orcamentoForm button {
    padding: 0.5em;
    margin-top: 0.5em;
    width: 100%;
    max-width: 300px;
}

#orcamentoForm button {
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 1em;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border: 2px solid red; /* Borda vermelha ao redor do vídeo */
    border-radius: 5px; /* Borda arredondada */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2em;
    cursor: pointer;
    border-radius: 50%;
    padding: 0.5em 1em;
}

.play-button:focus {
    outline: none;
}

.close-button {
    display: none; /* Escondido por padrão */
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2em;
    cursor: pointer;
    border-radius: 50%;
    padding: 0.5em 1em;
    z-index: 10000; /* Certifique-se de que o botão esteja acima de outros elementos */
}

.close-button:focus {
    outline: none;
}

footer {
    background-color: #333;
    color: white;
    padding: 2em 1em;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    padding: 1em;
}

.footer-left h3,
.footer-center h3,
.footer-right h3 {
    font-size: 1.5em;
}

.footer-left p,
.footer-center ul,
.footer-right form {
    margin: 0.5em 0;
}

.footer-center ul {
    list-style-type: none;
    padding: 0;
}

.footer-center ul li {
    margin: 0.5em 0;
}

.footer-center ul li a {
    color: white;
    text-decoration: none;
}

.footer-social a img {
    width: 30px;
    margin: 0 0.5em;
}

.footer-right form {
    display: flex;
    flex-direction: column;
}

.footer-right form input {
    padding: 0.5em;
    margin-bottom: 0.5em;
    border: none;
    border-radius: 3px;
}

.footer-right form button {
    padding: 0.5em;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 2em;
    border-top: 1px solid #444;
    padding-top: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0.5em 0;
}

.footer-bottom a {
    color: #d9534f;
    text-decoration: none;
}

.social-proof {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.social-proof .proof {
    text-align: center;
    flex: 1;
    margin: 1em;
}

.social-proof .proof img {
    max-width: 300px; /* Aumenta o tamanho das imagens */
    width: 100%;
    border-radius: 5%; /* Bordas arredondadas */
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 2em auto 0;
    text-align: center;
}

.divider {
    border: 0;
    height: 1px;
    background: #333;
    margin: 2em 0;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .full-screen {
        flex-direction: column;
        height: auto;
    }

    .home-content {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        padding: 0;
        margin: 1em 0;
    }

    .puv h2 {
        font-size: 2em;
    }

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

    .container .content .image,
    .container .content .text {
        width: 100%;
        padding: 0;
        text-align: left; /* Alinha o texto à esquerda */
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        padding: 1em 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px; /* Ajuste conforme necessário */
        left: 0;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    header nav ul li {
        margin: 0;
    }

    header nav ul li a {
        display: block;
        padding: 1em;
        color: black;
        text-decoration: none;
    }

    header .menu-toggle {
        display: block;
    }

    header.nav-active nav ul {
        display: flex;
    }

    .video-container {
        max-width: 100%; /* Certifique-se de que o contêiner do vídeo ocupa 100% da largura no mobile */
    }

    .video-container iframe {
        height: auto; /* Ajusta a altura para manter a proporção no mobile */
    }

    .social-proof {
        flex-direction: column;
        align-items: center;
    }

    .social-proof .proof {
        width: 100%;
        margin: 1em 0;
    }

    .social-proof .proof img {
        width: 90%; /* Ajusta a largura das imagens no mobile */
        max-width: 300px; /* Mantém o tamanho máximo */
    }
}

#cardapio {
    padding: 2em 1em;
    background-color: #1F1F1F;
    color: white;
}

#cardapio h2 {
    font-family: 'Lobster', cursive; /* Fonte Lobster */
    color: white; /* Cor do título em branco */
    text-align: center; /* Título centralizado */
}

.menu-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-category {
    flex: 1 1 calc(33.333% - 2em);
    margin: 1em;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1em;
    border-radius: 10px;
}

.menu-category h3 {
    color: red; /* Cor do título em vermelho */
    text-align: center; /* Título centralizado */
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.menu-category ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-category ul li {
    margin: 0.5em 0;
    font-size: 1em;
}

@media (max-width: 768px) {
    .menu-category {
        flex: 1 1 100%;
        margin: 0.5em 0;
    }
}
