/* ESTILOS GENERALES CSNET */

:root {
    --principal: #141414;
    --principal2: #ebebeb;
    --secundario: #666;
    --terciario: #888;
    --light1: #ececf2;
    --dark1: #222;
    --negro: #141414;
}

@font-face {
    font-family: "Quicksand";
    src: url("/fuentes/Quicksand/Quicksand-VariableFont_wght.ttf");
    font-weight: 100 1000;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/fuentes/Montserrat/Montserrat-VariableFont_wght.ttf");
    font-weight: 100 1000;
    font-display: swap;
}

@font-face {
    font-family: "Urbanist";
    src: url("/fuentes/Urbanist/Urbanist-VariableFont_wght.ttf");
    font-weight: 100 1000;
    font-display: swap;
}

@font-face {
    font-family: "Playfair";
    src: url("/fuentes/Playfair/Playfair-VariableFont_opsz,wdth,wght.ttf");
    font-weight: 100 1000;
    font-display: swap;
}

@font-face {
    font-family: "Licorice";
    src: url("/fuentes/Licorice/Licorice-Regular.ttf");
    font-weight: 400;
}

.fondo-principal {
    background-color: var(--principal);
}

.fondo-light {
    background-color: var(--light1);
}

.fondo-gris {
    background-color: var(--light1);
}

.fondo-secundario {
    background-color: var(--secundario);
}

.color-principal {
    color: var(--principal);
}

.color-secundario {
    color: var(--secundario);
}

.link-principal {
    color: var(--principal);
    text-decoration: none;
    transition: all 0.2s;
}

.link-principal:hover {
    color: var(--principal2);
    opacity: 0.7;
}

.boton-principal {
    font-weight: 700;
    color: white;
    background-color: var(--principal);
    border: 2px solid var(--principal);
    border-radius: 999px;
}

.boton-principal:hover {
    color: white;
    background-color: var(--secundario);
    border: 2px solid var(--secundario);
}

.boton-outline-principal {
    border-radius: 999px;
    font-weight: 700;
    color: var(--principal);
    border: 2px solid var(--principal);
}

.boton-outline-principal:hover {
    color: white;
    background-color: var(--principal);
}

.boton-outline-secundario {
    border-radius: 999px;
    font-weight: 700;
    color: var(--secundario);
    border: 2px solid var(--secundario);
}

.boton-outline-secundario:hover {
    color: white;
    background-color: var(--secundario);
}

body {
    background-color: white;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p{
    font-family: "Playfair", serif;
}

main {
    flex-grow: 1;
}

.boton-clausula {
    width: fit-content;
    border: 1px solid rgb(190, 190, 190);
}

.boton-clausula:focus:not(:focus-visible),
.boton-clausula:not(.collapsed) {
    color: var(--negro);
    box-shadow: none;
    background-color: transparent;
    border: 1px solid rgb(190, 190, 190);
}

.boton-clausula:not(.collapsed)::after {
    background-image: url("/imagenes/iconos/chevron-down.svg"),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.navbar-toggler:focus:not(:focus-visible) {
    box-shadow: none;
}

ul.pagination {
    justify-content: center;
    margin-bottom: 3em;
}

.pagination .page-item.active .page-link {
    background-color: var(--verde1);
    border-color: var(--verde1);
}

.pagination .page-link {
    color: var(--verde1);
}

.pagination .page-link:focus {
    box-shadow: none;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 0;
}

.pie a,
.link-negro {
    color: var(--negro);
    text-decoration: none;
    transition: all 0.2s;
}

.pie a:hover,
.link-negro:hover {
    color: var(--principal);
}

.pie {
    border-top: 3px solid #000;
}

.pie .img-logo {
    width: 120px;
}

.copyright-footer {
    border-top: 2px solid var(--terciario);
}
/* FIN DE ESTILOS GENERALES CSNET */

/* NAVBAR */

.navbar {
    display: flex;
    height: 160px;
    padding: 16px 96px 24px 96px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000;
    font-family: "Urbanist", sans-serif;
}

.menu-superior {
    max-width: 1800px;
    width: 100%;
}

.navbar-brand {
    height: 120px;
    display: flex;
    justify-content: center; /* Centra la imagen horizontalmente */
    align-items: center; /* Centra la imagen verticalmente */
}

.navbar-brand img {
    max-height: 100%; /* Asegura que la imagen no sobrepase el alto del contenedor */
    max-width: 100%; /* Limita el ancho máximo de la imagen */
    object-fit: contain; /* Mantiene las proporciones de la imagen */
    transition: opacity 0.3s ease; /* Aplica la transición solo al cambio de opacidad */
}

.navbar-brand:hover img {
    opacity: 0.7; /* Cambia la opacidad de la imagen cuando el contenedor tiene hover */
}

.navbar-nav {
    column-gap: 24px;
}

.navbar .nav-link {
    font-family: Urbanist;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--negro);
    padding: 0 10px !important;

    transition: 0.3s;
}

.navbar .nav-link:hover {
    font-family: Urbanist;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--terciario);
    padding: 0 10px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Urbanist", sans-serif;
}

.boton-reserva {
    border-radius: 100px;
    border: 2px solid var(--Principal, #000);
    display: flex;
    padding: 12px 48px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: var(--Principal, #000);
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.24px;
    text-decoration: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 1);

    transition: 0.3s;
}

.boton-reserva:hover{
    color: var(--Principal, #000);
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: none;

}
