@font-face {
    font-family: "titulo";
    src: url("Fontes/FilsonProHeavy.otf");
}


@font-face {
    font-family: "subTitulo";
    src: url("Fontes/FilsonProRegular.otf");
}

@font-face {
    font-family: "botao";
    src: url("Fontes/FilsonProBold.otf");
}


body {
    font-family: titulo;
    background-color: rgb(11, 14, 24);
    color: rgb(219, 219, 218);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* HEADER(CABEÇALHO)*/

header {
    position: fixed;
    width: 100%;
    background-color: rgb(11, 14, 24);
    color: white;
    padding: 30px 20px;
    z-index: 10;
}

header .logo {
    position: absolute;
    left: 20px;
}

header .logo img {
    height: 60px;
}

header nav {
    display: flex;
    justify-content: center;
   
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
    font-size: 18px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 6px 16px;
}

nav ul li a:hover {
    color: rgb(220 184 97);
}


/* Tudo que tem no background*/

.homeimage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80vh;
    object-fit: cover;
    z-index: 1;
}



.image-overlay {
    position: absolute;
    top: -10;
    left: 100;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}


.hero {
    position: relative;
    height: 100vh;


    text-align: left;
    overflow: hidden;

}

.hero-content {
    position: absolute;
    top: 10%;

    left: 10%;

    max-width: 489px;

    z-index: 1;



}


.hero h2 {
    color: #DBDBDA;
    font-size: 67px;
    line-height: 1;
    margin-bottom: 30px;

}

.hero-content p {
    color: #B0B0B0;
    font-size: 21px !important;

    line-height: 1;
    margin-bottom: 50px;
    text-align: justify;
}

.cta-btn {
    background-color: rgb(220 184 97);
    color: white;
    padding: 20px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;

}

.cta-btn:hover {
    background-color: rgb(218, 171, 61);
}

/* POPOUP */



.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700%;
    height: 100%;
    padding: 120px;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.popup-content h1 {
    color: rgb(51, 116, 185);
    font-size: 33px;
    position: relative;
}

form label[for="nome"] {
    color: rgba(0, 0, 0, 0.4);
}

form input#nome {
    color: rgba(0, 0, 0, 0.4);
}

#nome {
    border: 2px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

#nome:focus {
    border-color: rgb(51, 116, 185);
    outline: none;
}

form label[for="email"] {
    color: rgba(0, 0, 0, 0.4);
}

form input#email {
    color: rgba(0, 0, 0, 0.4);
}

#email {
    border: 2px solid #ccc;

    padding: 10px;

    border-radius: 5px;

    font-size: 16px;

}

#email:focus {
    border-color: rgb(51, 116, 185);

    outline: none;

}


#telefone {
    border: 2px solid #ccc;

    padding: 10px;

    border-radius: 5px;

    font-size: 16px;

}

#telefone:focus {
    border-color: rgb(51, 116, 185);

    outline: none;

}

form label[for="telefone"] {
    color: rgba(0, 0, 0, 0.4);
}

form input#telefone {
    color: rgba(0, 0, 0, 0.4);
}



#restaurante {
    border: 2px solid #ccc;

    padding: 10px;

    border-radius: 5px;

    font-size: 16px;

}

#restaurante:focus {
    border-color: rgb(51, 116, 185);

    outline: none;

}

form label[for="restaurante"] {
    color: rgba(0, 0, 0, 0.4);
}

form input#restaurante {
    color: rgba(0, 0, 0, 0.4);
}


#produto {
    background-color: #fcfcfc;

    color: rgba(0, 0, 0, 0.4);

    border: 1px solid rgba(0, 0, 0, 0.4);

    border-radius: 5px;

    padding: 10px;

    font-size: 15px;

    width: 104%;

    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;

    height: 40px;


}

#produto:focus {
    outline: none;
    border-color: rgb(51, 116, 185);
}

form label[for="produto"] {
    color: rgba(0, 0, 0, 0.4);
}

form input#produto {
    color: rgba(0, 0, 0, 0.4);
}



.popup-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    cursor: pointer;
}

form label {
    display: block;
    margin-top: 15px;
}

form input,
form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 15px;
    background-color: rgb(51, 116, 185);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box;
}

form button:hover {
    background-color: rgb(51, 116, 185);
}

form p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

form p a {
    color: rgb(51, 116, 185);
    text-decoration: none;
}

form p a:hover {
    text-decoration: underline;
}




/* PRODUTO */


.products {
    padding: 50px 20px;
    text-align: center;
    font-size: 1.7rem;
}

.products h2 {
    color: rgb(219, 219, 218);
    font-size: 2.5rem;
    margin-top: 137px;
    margin-bottom: 10px;
}
    

.products p {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.products .product-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.products .product {
    width: 46%;
    /* Aumenta o comprimento da caixa */
    margin: 20px auto;
    /* Centraliza a caixa horizontalmente */
    text-align: center;
    background-color: rgb(11, 14, 24);
    border: 1px solid rgb(51, 116, 185);
    padding: 250px;
    /* Diminui o padding para ajustar */
    border-radius: 10px;
    display: flex;
    flex-direction: column-reverse;
    /* Alinha a imagem e o texto verticalmente */
    align-items: center;
    /* Centraliza o conteúdo */
    box-sizing: border-box;
}

.products .product p {
    /* Altere 'p' para o seletor correto do seu texto */
    margin-top: 40px;
    /* Aumenta a margem superior do texto */
}


.product img {
    width: 100%;
    /* Ajusta a largura para 100% do contêiner pai */
    max-width: 700px;
    /* Define uma largura máxima */
    height: auto;
    /* Mantém a proporção da imagem */
    object-fit: contain;
    border-radius: 10px;

    margin-bottom: -198px;
    /* Mantém a margem inferior existente */
}

.text-container {
    margin-top: 10px;
    /* Espaço entre o texto e a caixa da imagem */
}

.text-container p {
    font-size: 1.4rem;
    /* Aumenta o tamanho da fonte do texto */
    color: #fff;
    transition: opacity 1s ease-in-out;
    margin: 0;
}

/* Transição de imagens */
.fade-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-img.show {
    opacity: 1;
}

.about,
.contact {
    padding: 50px 20px;
    text-align: center;
    background-color: rgb(11, 14, 24);
    font-size: 1.7rem;
    margin-bottom: 20px;


}


.about img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
}


.pricing-section {
    text-align: center;
    padding: 50px;
    background-color: rgb(11, 14, 24);
    color: rgb(219, 219, 218);
}

.pricing-section h1 {
    color: rgb(219, 219, 218);
    font-size: 2.5rem;
    margin-bottom: 10px;

}

.pricing-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;

}

.card {
    background-color: rgb(19, 22, 35);
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    /* Define uma altura mínima para garantir uniformidade */
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card h2 {
    color: rgb(218, 171, 61);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.card ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.card ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: rgb(219, 219, 218);
}

.card button {
    background-color: rgb(218, 171, 61);
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: rgb(11, 14, 24);
    transition: background-color 0.3s ease;
    margin-top: auto;
    /* Garante que o botão fique na mesma altura */
}

.card button:hover {
    background-color: rgb(190, 150, 50);
}

.popular {
    background-color: rgb(24, 27, 42);
    position: relative;
}

.popular::before {
    content: "Mais Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(218, 171, 61);
    color: rgb(11, 14, 24);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact form label {
    display: block;
    margin: 10px 0 5px;
    color: rgb(219, 219, 218);
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid rgb(51, 116, 185);
    border-radius: 4px;
    background-color: rgb(219, 219, 218);
    color: rgb(11, 14, 24);
}

.contact form button {
    padding: 10px 20px;
    background-color: rgb(51, 116, 185);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}



/*FOOTER(RODAPÉ)*/


footer {
    background-color: rgb(11, 14, 24);

    font-size: 1.2em;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer p {
    margin: 0;

}



/* Contêiner que envolve o <select> */
.select-container {
    position: relative;
    width: 100%;
    /* Largura total do contêiner */
    max-width: 300px;
    /* Define uma largura máxima */
    margin: 10px 0;
    /* Espaçamento acima e abaixo */
}


/* Seta personalizada */
.select-container::after {
    content: "\25BC";
    position: absolute;
    right: 15px;
    /* Distância da seta à direita do contêiner */
    top: 50%;
    /* Centraliza verticalmente */
    transform: translateY(-50%);
    /* Ajusta para centralizar exatamente no meio da altura */
    pointer-events: none;
    /* Garante que a seta não interfira na interação com o seletor */
    color: rgb(8, 8, 8);
    /* Cor da seta */
    font-size: 16px;
    /* Tamanho da seta */
}

/* Adicionar estilo para o slider */
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
}

.about {

    background-color: rgb(219, 219, 218);

    padding-top: 80px;
    /* Ajuste o valor conforme necessário */
    margin-top: -80px;
    /* Compensa o padding para não alterar a estrutura */

}

.about h2 {
    font-size: 32px;
    color: rgb(11, 14, 24);
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgb(51, 116, 185);
}


