@font-face {
    font-family: 'Paris2024';
    src: url('../fonts/Paris2024 Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --color-primario: #1d252c;
    --color-amarillo: #f3bd48;
    --color-verde: #76bc21;
    --color-azul-claro: #87d1e6;
    --color-azul: #009abf;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 100dvw;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100dvw;
    max-width: 100dvw;
    padding: 0 20px 0 40px;
}

.logo {
    height: 100px;
    transition: all 0.4s ease;
}

header.scrolled .logo {
    height: 60px;
}

nav {
    display: flex;
    gap: 50px;
    margin-left: auto;
    padding-right: 60px;
}

.nav-links-wrapper {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

header.scrolled nav a {
    color: var(--color-primario);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-azul);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--color-azul);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

header.scrolled .menu-toggle span {
    background: var(--color-primario);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-toggle.active span {
    background: var(--color-primario) !important;
}

.mobile-menu-footer {
    display: none;
    width: 100%;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.mobile-logo {
    height: 80px;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    header .container {
        justify-content: space-between;
        padding: 0 10px;
    }

    .logo-link {
        flex: 0 0 75%;
        max-width: 75%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo {
        height: 80px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .menu-toggle {
        flex: 0 0 25%;
        max-width: 25%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-footer {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100dvh;
        background: white;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        padding-top: 60px;
    }

    .nav-links-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex: 1;
        width: 100%;
    }

    nav.active {
        right: 0;
    }

    nav a {
        color: var(--color-primario) !important;
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(5px);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .contacto-layout {
        flex-direction: column;
    }

    .map-full-contacto {
        height: 400px;
        order: 2;
    }

    .form-container-contacto {
        padding: 60px 20px;
        order: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 50px;
    }

    .footer-col {
        max-width: 100%;
    }

    .footer-links a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        justify-content: flex-end;
        padding-right: 16px;
    }
}


.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 180px 20px 100px;
    overflow: hidden;
}



.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.3);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
}


.btn {
    display: inline-block;
    background: var(--color-amarillo);
    color: var(--color-primario);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

.btn:hover {
    background: var(--color-azul);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 154, 191, 0.3);
}


.alojamientos {
    padding: 100px 0;
    background: #f8f9fa;
}

.alojamientos h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
}

.card-carousel {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.carousel-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-container img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: white;
}

.card-body {
    padding: 30px;
    text-align: center;
}

.card-body h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.btn-booking {
    display: inline-block;
    background: var(--color-azul);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 600;
}

.btn-booking:hover {
    filter: brightness(1.1);
}


.section-entorno-split {
    padding: 0;
    background: #fdfaf0;
    overflow: hidden;
}

.entorno-wrapper {
    display: flex;
    min-height: 600px;
}

.entorno-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.entorno-text {
    max-width: 500px;
}

.entorno-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--color-primario);
}

.entorno-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.entorno-features {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.entorno-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-azul);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    flex-shrink: 0;
}

.entorno-image-full {
    flex: 1.5;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.entorno-image-full img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.entorno-image-full:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .entorno-wrapper {
        flex-direction: column;
    }

    .entorno-image-full {
        height: 400px;
        order: 2;
    }

    .entorno-content {
        padding: 60px 20px;
        order: 1;
    }
}


.alojamientos-hero,
.contacto-hero {
    background: var(--color-primario);
    padding: 140px 0 60px;
    text-align: center;
    color: white;
    border-bottom: 4px solid var(--color-amarillo);
}

.alojamientos-hero h1,
.contacto-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.alojamientos-hero p,
.contacto-hero p {
    font-size: 20px;
    font-weight: 300;
    color: var(--color-amarillo);
    opacity: 1;
    max-width: 700px;
    margin: 0 auto;
}

.contacto-layout {
    display: flex;
    min-height: 700px;
}

.map-full-contacto {
    flex: 1;
}

.form-container-contacto {
    flex: 1;
    background: #fdfaf0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.form-wrapper {
    max-width: 500px;
    width: 100%;
}

.form-wrapper h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-info-extra {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 30px;
}

.info-item strong {
    display: block;
    color: var(--color-azul);
}


footer {
    background: var(--color-primario);
    color: white;
    padding: 80px 0 30px;
    font-family: 'Montserrat', sans-serif;
}

.footer-top {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-col {
    width: 100%;
    max-width: 250px;
    text-align: left;
}

footer .container {
    max-width: 1400px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-amarillo);
    font-style: italic;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-amarillo);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--color-amarillo);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    flex-shrink: 0;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: white;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: var(--color-amarillo);
    transform: translateY(-3px);
}

.footer-legal-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-legal-bar a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
}

.footer-legal-bar a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.6;
    margin-top: 20px;
}

.footer-bottom strong {
    font-weight: 700;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a, .footer-contact-item {
        justify-content: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-legal-bar {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .entorno-features-horizontal {
        gap: 20px;
    }
}