/* Reset básico e configurações iniciais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    /* Habilita o scroll suave */
}

/* Para facilitar o uso de rem */


body {

    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: linear-gradient(to right, black 48%, red 209%);;
}

/* Estilos para o Cabeçalho */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5rem;
    background-color: black;
    border-bottom: 0rem solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 7rem;
    background-color: black;
    border-bottom: 0rem solid #ddd;
    /* gap: 104rem; */
}

.menu-icon-container {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 2rem;
    margin-right: 1rem;
}

.menu-icon {
    width: 3rem;
    height: 0.2rem;
    background-color: red;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 10rem;
    left: 0;
    background-color: white;
    border-radius: 0.5rem;
    width: 14rem;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: red;
    font-size: 1.2rem;
    width: 100%;
}

.dropdown-menu a:hover {
    background-color: wheat;
    width: 14rem;
    border-radius: 0.5rem;
}

.actions {
    display: flex;
    gap: 1rem;
    text-decoration: none;
}

.actions button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;

}

.btn-franchise {
    background-color: #fa661f;


}

.btn-franchise a {
    display: block;
    color: white;
    text-decoration: none;
}

/* Estilo do Banner */
#banner1 {

    display: flex;
    color: white;
    padding: 6rem 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.texto-principal {
    max-width: 50%;
}

.texto-principal h1 {
    font-size: 3rem;
    padding: 1rem;
}

.destaque {
    font-weight: bold;
    color: red;
}

.texto-principal p {
    font-size: 1.6rem;
}

/* Estilo do Carrossel */
#carouselExampleIndicators {
    max-width: 100%;
    margin: 4rem auto;
}

.carousel-inner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem 4rem;
}

/* Seção de Nossas Unidades */
.locais {
display: flex;
justify-content: center;
flex-direction: column;
align-items:center ;
    margin: 0px 0 5rem;
    padding: 13rem;
}

.locais h2 {
    color: red;
    padding: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.botao {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.botao button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
    margin: 1rem;
}

.botao1 {
    background-color: #ff0044;
}

.botao1 a {
    display: block;
    color: white;
    text-decoration: none;
}

.botao2 {
    background-color: #ff7700;

}

.botao2 a {
    display: block;
    color: white;
    text-decoration: none;
}

.botao button:hover {
    opacity: 0.9;
}


#divirta-se {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.842);

}

.texto-video {
    display: flex;
    justify-content: center;
    color: #ddd;
    font-size: 3rem;

}

/* --------------------faq---------------- */

#faq {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e8c2c21a;;

}

.perguntas {
    margin: 5rem 0;
}

.perguntas h1 {
    font-family: 'disney';
    font-size: 4rem;
    color: white;
    text-align: center;
    padding-bottom: 4rem;
}

.faq-item {
    margin-bottom: 2rem;
    width: 120rem;
    font-size: 2rem;
}

.faq-item input {
    display: none;
}

.faq-item label {
    font-weight: bold;
    display: flex;
    padding: 1.5rem;
    background-color: red;
    border: .2rem solid red;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-item label:hover {
    background-color: wheat;
}

.faq-item p {
    display: none;
    padding: 1rem;
    background-color: rgba(226, 170, 14, 0.815);
    border: 0.1rem solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.faq-item input:checked+label+p {
    display: block;
}



.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.icones {
    display: flex;
    gap: 1.5rem;
    padding: 0 0  4rem 0;

}

.texto-footer{ display: flex;
    gap: 4rem;
}

.img-footerc img{
    height: 0.2rem;
    width: 0.2rem;
} 






/* Responsividade para dispositivos menores */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .actions {
        flex-direction: column;
        gap: 1rem;
    }

    #banner1 {
        flex-direction: column;
    }

    .texto-principal {
        max-width: 90%;
    }

    .locais {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 3rem;
    }

    .botao {
        flex-direction: column;
        gap: 1.5rem;
    }

    .faq-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo {
        justify-content: center;
        text-align: center;
    }

    .dropdown-menu {
        width: 100%;
        top: 6rem;
    }

    .texto-principal h1 {
        font-size: 2.8rem;
    }

    .texto-principal p {
        font-size: 1.6rem;
    }

    .botao button {
        width: 100%;
    }

    .footer {
        padding: 3rem 1rem;
    }
}