/* ========================= */
/*#region GLOBALES */
/* ========================= */
:root {
    --dark-green-color: #868640;
    --grey-color: #9c9c9b;
    --green-color: #999935;
}

@font-face {
    font-family: 'Hibernate';
    src: url('../fonts/Hibernate.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Black.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.btn-custom {
    display: inline-block;
    background: var(--dark-green-color);
    color: white;
    letter-spacing: 6px;
    padding: .8rem 4rem;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background .3s ease;
    /* min-width: 500px; */
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border: none;
}

.btn-custom:hover {
    background: var(--green-color);
    color: white;
    cursor: pointer;
}

.btn-custom.disabled {
    pointer-events: none;
    background: red;
}

.section-padding {
    padding: 5rem 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HTML: <div class="loader"></div> */
.loader {
    display: none;
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #9A9A46;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

/*#endregion*/

/* ========================= */
/*#region HEADER */
/* ========================= */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1b;
    padding: 1rem 0;
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.blur {
    backdrop-filter: blur(10px);
    background: rgba(30, 30, 27, .5);
}

header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 15%;
}

.logo2 {
    width: 5%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo a:hover {
    color: white;
}

.reserva-tag {
    border-radius: 40px;
    padding: .5rem 1rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border: none;
    background: var(--dark-green-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease, background 0.3s ease;
}

.reserva-tag:hover {
    background-color: #85864a;
    color: white;
}

.btn-lang {
    /* Quita todos los estilos por defecto */
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.btn-lang img {
    width: 40px;
}

.lang-selector {
  border: 1px solid white;
  color: white;
  border-radius: 999px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  user-select: none;
  font-family: sans-serif;
}

.lang-icon {
  width: 20px;
  height: 20px;
}

.dropdown-arrow {
  font-size: 14px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  color: black;
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
  min-width: 120px;
}

.lang-dropdown div {
  padding: 8px 12px;
  cursor: pointer;
}

.lang-dropdown div:hover {
  background-color: #f0f0f0;
}


.menu-toggle {
    display: none;
}

.menu {
    display: flex;
    justify-content: space-evenly;
}

.menu li a {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    font-size: 1.2rem;
    padding: 10px 15px;
    transition: color 0.3s ease, background 0.3s ease;
}

.menu li a:hover {
    color: #85864a;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 1 */
/* ========================= */
.hero {
    padding-top: 80px;
    min-height: 130vh;
    background-image: url('../img/seccion-1/fondo-principal.jpg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
}

.hero-content h1 {
    position: relative;
    font-size: 2.4rem;
    text-transform: uppercase;
    /* font-family: 'Hibernate'; */
    color: white;
    text-align: center;
    letter-spacing: 5px;
    /* line-height: 2; */
    text-shadow: 1px 1px 2px #303030;
    margin-bottom: 3rem;
}

.hero-content h1::before {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    height: 3px;
    background-color: white;

    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content .subtitle {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: white;
    text-align: center;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.hero-content .description {
    text-align: center;
    color: white;
    font-size: 1.4rem;
    /* margin: auto; */
    /* margin-top: 10rem; */
}

.hero-content .description span {
    font-style: italic;
    font-weight: bold;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 2 */
/* ========================= */
.video-institucional video {
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Relación 16:9 (altura automática) */
    height: 0;
}

.video-institucional iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Mantiene una relación de aspecto estándar de video */
    border: 0;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 3 */
/* ========================= */
.seccion-3 .swiper-slide {
    background-size: cover;
    background-position: center;
    height: 140vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.seccion-3 h2 {
    font-size: 2.4rem;
    text-transform: uppercase;
    color: var(--dark-green-color);
}

.seccion-3 p {
    font-size: 1.8rem;
    line-height: 1;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 4 */
/* ========================= */
.seccion-4 h2 {
    text-transform: uppercase;
    /* font-family: 'Hibernate', sans-serif; */
    font-size: 2.4rem;
    color: var(--dark-green-color);
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.seccion-4-container {
    width: 80%;
    margin: auto;
}

.seccion-4 .icon {
    width: 220px;
}

.seccion-4 p {
    color: var(--grey-color);
    font-size: 1.4rem;
    line-height: 1;
}

.seccion-4 .swiper-button-next {
    background-image: url('../icons/right-arrow-3.svg') !important;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    right: -3rem;
}

.seccion-4 .swiper-button-prev {
    background-image: url('../icons/left-arrow-3.svg') !important;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    left: -3rem;
}

.seccion-4 .swiper-button-next::after,
.seccion-4 .swiper-button-prev::after {
    display: none;
}

.seccion-4 .swiper-pagination-2 {
    bottom: -4rem;
}

.seccion-4 .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #9A9A46;
}

.seccion-4 .swiper-pagination-bullet-active-next {
    transform: scale(1);
}

/*#endregion*/

/* ========================= */
/*#region SECCION 6 */
/* ========================= */
.seccion-6 {
    background-image: url(../img/seccion-6/fondo-seccion-6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.seccion-6 h2 {
    text-transform: uppercase;
    /* font-family: 'Hibernate', sans-serif; */
    font-size: 2.4rem;
    color: white;
    letter-spacing: 3px;
    /* line-height: 1.8; */
}

.seccion-6 p {
    font-size: 1.4rem;
    color: white;
    line-height: 1.2;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 7 */
/* ========================= */
.seccion-7 h2 {
    text-transform: uppercase;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 2.4rem;
    color: var(--dark-green-color);
}

.seccion-7 h3 {
    text-transform: uppercase;
    text-align: center;
    /* font-family: 'Hibernate', sans-serif; */
    font-size: 2.8rem;
    color: var(--dark-green-color);
    letter-spacing: 8px;
    margin-bottom: 5rem;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 8 */
/* ========================= */
.seccion-8 {
    background-image: url(../img/seccion-8/bg-seccion-8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.seccion-8 h2 {
    /* font-family: 'Hibernate', sans-serif; */
    font-size: 2.4rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.seccion-8 p {
    color: white;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 9 */
/* ========================= */
.seccion-9 {
    margin: 4rem 0;
    background-image: url(../img/seccion-9/bg-seccion-9.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.seccion-9 h2 {
    /* font-family: 'Hibernate', sans-serif; */
    font-size: 2.4rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.seccion-9 p {
    color: white;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 10 */
/* ========================= */
.seccion-10 img {
    width: 200px;
}

.seccion-10 p {
    color: var(--grey-color);
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
}

.seccion-10 .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #9A9A46;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 11 */
/* ========================= */
.seccion-11 {
    background-image: url(../img/seccion-11/bg-seccion-11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.seccion-11 .form-card {
    width: 70%;
    margin: auto;
    background-color: white;
    border-radius: 15px;
    padding: 4rem 3rem;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.seccion-11 .form-card h3 {
    font-size: 2rem;
    color: var(--dark-green-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.seccion-11 .form-card input,
.seccion-11 .form-card textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 30px;
    border: solid 2px var(--grey-color);
    font-size: 1rem;
    color: var(--grey-color);
    outline: none;
}

.seccion-11 .form-card .btn-custom {
    background-color: transparent;
    color: var(--dark-green-color);
    border: solid 2px var(--grey-color);
    box-shadow: none;
    font-size: 1rem;
}

.seccion-11 .form-card .btn-custom:hover {
    background-color: var(--grey-color);
    color: white;
}

/*#endregion*/

/* ========================= */
/*#region SECCION 12 */
/* ========================= */
.seccion-12 {
    margin: 5rem 0;
}

/*#endregion*/

/* ========================= */
/*#region FOOTER */
footer nav {
    width: 90%;
    margin: auto;
}

footer nav {
    border-bottom: solid 2px #999935;
}

footer nav li a {
    font-size: 1.2rem;
    color: #999935;
    text-transform: uppercase;
}

footer nav li a:hover {
    color: var(--dark-green-color);
}

footer p {
    text-align: center;
    font-size: 1rem;
    color: #999935;
    font-weight: bold;
    text-transform: uppercase;
}

/* ========================= */
/*#endregion*/

/* ========================= */
/*#region RESPONSIVE: TABLET HORIZONTAL */
/* ========================= */
@media (max-width: 1200px) {

    /* ========================= */
    /*#region GLOBALES */
    /* ========================= */
    .btn-custom {
        font-size: 1.5rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 1 */
    /* ========================= */
    .hero {
        background-position-x: right;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .hero-content h1::before {
        width: 90%;
    }

    .hero-content .subtitle {
        font-size: 1.4rem;
    }

    .hero-content .description {
        font-size: 1.5rem;
    }

    .hero-content .subtitle br,
    .hero-content .description br {
        display: none;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 3 */
    /* ========================= */

    .seccion-3 h2 {
        font-size: 2.5rem;
    }

    .seccion-3 p {
        font-size: 2rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 4 */
    /* ========================= */
    .seccion-4 .swiper-button-prev,
    .seccion-4 .swiper-button-next {
        display: none;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 8 */
    /* ========================= */
    .seccion-8 p br {
        display: none;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 9 */
    /* ========================= */
    .seccion-9 {
        background-position: right;
    }

    .seccion-9 p br {
        display: none;
    }

    /*#endregion*/

    /* ========================= */
    /*#region FOOTER */
    footer nav {
        width: 90%;
    }

    footer nav li a {
        font-size: 1rem;
    }

    footer p {
        font-size: 1rem;
    }

    /* ========================= */
    /*#endregion*/
}

/*#endregion*/

/* ========================= */
/*#region RESPONSIVE: TABLET */
/* ========================= */
@media (max-width: 992px) {

    .logo {
        width: 20%;
        display: none;
    }

    .logo2 {
        width: 8%;
        position: static;
        transform: none;
    }

    /* ========================= */
    /*#region HEADER */
    /* ========================= */
    header {
        padding: 0 1.5rem;
    }

    nav {
        height: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .menu {
        flex-direction: column;
        background: #1e1e1b;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 0;

        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
        visibility: hidden;
        height: 0;
        overflow: hidden;
    }

    .menu-active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        height: auto;
        padding: 20px 0;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu li a {
        display: block;
        padding: 10px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 4 */
    /* ========================= */
    .seccion-4 h2 {
        font-size: 2rem;
    }

    .seccion-4-container {
        width: 100%;
    }

    .seccion-4 p {
        font-size: 1.5rem;
    }

    .seccion-4 br {
        display: none;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 6 */
    /* ========================= */

    .seccion-6 h2 {
        font-size: 2rem;
    }

    .seccion-6 p {
        font-size: 1.5rem;
    }

    .seccion-6 br {
        display: none;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 7 */
    /* ========================= */
    .seccion-7 h2 {
        font-size: 2rem;
    }

    .seccion-7 h3 {
        font-size: 2rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 8 */
    /* ========================= */
    .seccion-8 p {
        font-size: 1.8rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 9 */
    /* ========================= */
    .seccion-9 h2 {
        font-size: 2rem;
    }

    .seccion-9 p {
        font-size: 1.5rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 11 */
    /* ========================= */
    .seccion-11 .form-card {
        width: 90%;
        margin: auto;
        background-color: white;
        border-radius: 15px;
        padding: 4rem 3rem;
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    }

    .seccion-11 .form-card {
        padding: 3rem 2rem;
    }

    .seccion-11 .form-card h3 {
        font-size: 2rem;
    }

    .seccion-11 .form-card input,
    .seccion-11 .form-card textarea {
        font-size: 1.2rem;
    }

    .seccion-11 .form-card .btn-custom {
        font-size: 1.2rem;
    }

    /*#endregion*/

}

/*#endregion*/

/* ========================= */
/*#region RESPONSIVE: MOBILE */
/* ========================= */
@media (max-width: 576px) {

    .logo2 {
        width: 10%;
    }

    .reserva-tag {
        padding: .5rem;
        font-size: .8rem;
    }

    .lang-selector {
        font-size: .8rem;
        padding: .5rem;
    }

    /* ========================= */
    /*#region GLOBALES */
    /* ========================= */
    .btn-custom {
        font-size: 1rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 1 RESPONSIVE */
    /* ========================= */
    .hero {
        background-position-y: top;
        background-size: auto;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .hero-content .description {
        font-size: 1.2rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 3 */
    /* ========================= */
    .seccion-3 .swiper-slide {
        height: 100vh;
        padding: 0 20px;
    }

    .seccion-3 h2 {
        font-size: 2rem;
    }

    .seccion-3 p {
        font-size: 1.5rem;
    }

    .seccion-3 br {
        display: none;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 7 */
    /* ========================= */
    .seccion-7 h2 {
        font-size: 2rem;
    }

    .seccion-7 h3 {
        font-size: 1.5rem;
        margin-bottom: 0rem;
    }

    .seccion-7 img {
        position: relative;
        left: -30px;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 8 */
    /* ========================= */
    .seccion-8 h2 {
        font-size: 2rem;
    }

    .seccion-8 p {
        font-size: 1.4rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 9 */
    /* ========================= */
    .seccion-9 h2 {
        font-size: 2rem;
    }

    .seccion-9 p {
        font-size: 1.4rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 10 */
    /* ========================= */
    /* .seccion-10 .swiper-pagination-3 {
        bottom: -1rem;
    } */

    .seccion-10 p {
        font-size: 1.6rem;
    }

    /*#endregion*/

    /* ========================= */
    /*#region SECCION 11 */
    /* ========================= */
    .seccion-11 .form-card {
        width: 100%;
    }

    .seccion-11 .form-card {
        padding: 2rem 1rem;
    }

    .seccion-11 .form-card h3 {
        font-size: 1.5rem;
    }

    .seccion-11 .form-card input,
    .seccion-11 .form-card textarea {
        font-size: 1rem;
    }

    .seccion-11 .form-card .btn-custom {
        font-size: 1rem;
    }

    /*#endregion*/

}

/*#endregion*/