/* Reset y Variables - DARK MODE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #04AAA3;
    --primary-dark: #03a69c;
    --black: #000000;
    --dark: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --gray-dark: #333333;
    --white: #FFFFFF;
    --white-soft: #f8f9ff;
    --shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 35px 70px rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, #04AAA3 0%, #028f89 50%, #016f6a 100%);
    --gradient-bg: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2a2a2a 100%);
    --gradient-card: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--white-soft);
    background: var(--gradient-bg);
    overflow-x: hidden;
    min-height: 100vh;
}

.visible {
    display: block;
    visibility: visible;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar - Dark Glassmorphism PERMANENTE */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(4, 170, 163, 0.3);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.99);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(4, 170, 163, 0.4);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo img {
    width: 25%;
    padding: 15px 0 0 0;
}

.nav-menu {
    display: flex;
    gap: 2.8rem;
    align-items: center;
    width: 100%;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(4, 170, 163, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 90%;
    box-shadow: 0 0 10px rgba(4, 170, 163, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(4, 170, 163, 0.3);
}

/* Mobile Menu Background */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Hero Section - Enhanced */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(4, 170, 163, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(4, 170, 163, 0.1) 0%, transparent 50%),
        var(--gradient-bg);
    z-index: 1;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    margin: -22% auto;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero1 {
    margin-left: -25%;
}

.carousel-slide:nth-child(1) h2 {
    width: 70%;
    margin-left: 20%;
}

.carousel-slide:nth-child(2) h2 {
    width: 60%;
    margin-left: 15%;
}

.carousel-slide:nth-child(3) h2 {
    width: 60%;
    margin-left: 20%;
}

.hero-content h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.8rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.cta-button.primary {
    background: var(--gradient-primary);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    color: var(--white);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(4, 170, 163, 0.5);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    text-align: justify;
}

/* About Section */
.about {
    padding: 140px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(4, 170, 163, 0.3), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 800;
}

.about-text ul {
    list-style: none;
    margin-top: 2.5rem;
}

.about-text li {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-text li:hover {
    background: rgba(4, 170, 163, 0.1);
    border-color: rgba(4, 170, 163, 0.3);
    transform: translateX(10px);
}

.about-text li i {
    color: var(--primary);
    font-size: 1.3rem;
    width: 30px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Benefits Section */
.benefits {
    padding: 140px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(4, 170, 163, 0.3);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(4, 170, 163, 0.4);
    backdrop-filter: blur(10px);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Video Section */
.video-section {
    padding: 140px 0;
    background: var(--dark);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(4, 170, 163, 0.1) 0%, transparent 70%);
}

.video-section .section-header h2,
.video-section .section-header p {
    color: var(--white-soft);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

#demoVideo {
    width: 100%;
    height: auto;
    display: block;
}

/* Reserve Section */
.reserve {
    padding: 140px 0;
    background: var(--gradient-card);
    position: relative;
}

.reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(4, 170, 163, 0.4), transparent);
}

.reserve-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.reserve-info {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}

.reserve-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.reserve-highlight:hover {
    background: rgba(4, 170, 163, 0.1);
    border-color: rgba(4, 170, 163, 0.3);
    transform: translateY(-10px);
}

.reserve-highlight i {
    font-size: 3rem;
    color: var(--primary);
    width: 70px;
    height: 70px;
    background: rgba(4, 170, 163, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(4, 170, 163, 0.3);
}

.reserve-highlight h3 {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.calendar-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem;
    display: none;
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-container.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-header h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 1%;
}

.close-calendar {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-calendar:hover {
    background: rgba(255, 69, 0, 0.2);
    color: #ff6b47;
    border-color: rgba(255, 69, 0, 0.4);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    color: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(10px);
    margin: 2% auto;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(4, 170, 163, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

/* Calendario Input - Diseño Premium */
#datetimePicker {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 2px solid rgba(4, 170, 163, 0.3);
    border-radius: 18px;
    padding: 18px 25px;
    width: 57%;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: 65px;
}

/* Icono del calendario */
#datetimePicker::before {
    content: '📅';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Efectos de foco */
#datetimePicker:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow:
        0 0 0 4px rgba(4, 170, 163, 0.25),
        0 20px 40px rgba(4, 170, 163, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(4, 170, 163, 0.12) 0%, rgba(4, 170, 163, 0.06) 100%);
    transform: translateY(-2px);
}

/* Placeholder mejorado */
#datetimePicker::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Estado con valor */
#datetimePicker:not(:placeholder-shown) {
    border-color: rgba(4, 170, 163, 0.5);
    box-shadow:
        0 12px 35px rgba(4, 170, 163, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Flatpickr Customizado */
.flatpickr-calendar {
    background: rgba(26, 26, 26, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(4, 170, 163, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
    font-family: 'Inter', sans-serif !important;
    margin-top: 10px !important;
}

.flatpickr-calendar .flatpickr-current-month {
    background: linear-gradient(135deg, rgba(4, 170, 163, 0.2) 0%, transparent 100%) !important;
}

.flatpickr-calendar .flatpickr-month,
.flatpickr-calendar .flatpickr-year {
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--primary-dark) !important;
    fill: var(--primary-dark) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    width: 45px !important;
    height: 45px !important;
    transition: all 0.3s ease !important;
    transform: scale(0.6);
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(4, 170, 163, 0.2) !important;
    transform: scale(1) !important;
}

.flatpickr-weekday {
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.flatpickr-day {
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 12px !important;
    border: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    height: 50px !important;
    line-height: 50px !important;
}

.flatpickr-day:hover {
    background: rgba(4, 170, 163, 0.2) !important;
    border-color: rgba(4, 170, 163, 0.4) !important;
    transform: scale(1.05) !important;
}

.flatpickr-day.today {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    box-shadow: 0 5px 20px rgba(4, 170, 163, 0.4) !important;
}

.flatpickr-day.selected {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 25px rgba(4, 170, 163, 0.5) !important;
}

.flatpickr-day.inRange {
    background: rgba(4, 170, 163, 0.15) !important;
    border-color: rgba(4, 170, 163, 0.3) !important;
    color: var(--white) !important;
}

.flatpickr-time {
    background: rgba(4, 170, 163, 0.1) !important;
    border-top: 1px solid rgba(4, 170, 163, 0.3) !important;
    border-radius: 0 0 20px 20px !important;
}

.flatpickr-time input {
    color: var(--white) !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
}

.flatpickr-confirm {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    transition: all 0.3s ease !important;
}

.flatpickr-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(4, 170, 163, 0.4) !important;
}

.reserve-btn {
    width: 100%;
    padding: 22px;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 140px 0 100px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    padding: 3.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    width: 50%;
}

.footer-brand h3 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links a,
.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact p:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

/* Floating Video */
.floating-video {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 280px;
    height: 160px;
    z-index: 10000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    backdrop-filter: blur(20px);
}

.floating-video.active {
    display: block;
}

.floating-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .visible {
        display: none;
        visibility: hidden;
    }

    .hidden {
        display: block;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.99);
        /* Mismo fondo oscuro */
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
        padding: 4rem 0 3rem;
        gap: 2.5rem;
        border-top: 1px solid rgba(4, 170, 163, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-container {
        height: 130px !important;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
        background: var(--white);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: var(--white);
    }
    
    .nav-logo img {
        width: 50% !important;
    }
    
    .carousel-slide img {
        margin: -25% auto !important;
    }

    .hero1 {
        margin-left: 0%;
        width: 95% !important;
    }

    .carousel-slide:nth-child(1) .hero1 h2 {
        width: 100% !important;
        margin-left: 0% !important;
        margin-top: 20% !important;
        margin-bottom: 100% !important;
        font-size: clamp(2rem, 6vw, 5rem) !important;
    }

    .carousel-slide:nth-child(2) .hero1 h2 {
        width: 100% !important;
        margin-left: 0% !important;
        margin-top: -10% !important;
        margin-bottom: 80% !important;
        font-size: clamp(2rem, 6vw, 5rem) !important;
    }

    .carousel-slide:nth-child(3) .hero1 h2 {
        width: 100% !important;
        margin-left: 0% !important;
        margin-top: 20% !important;
        margin-bottom: 90% !important;
        font-size: clamp(2rem, 6vw, 5rem) !important;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
        margin-left: auto;
        margin-right: auto;
    }


    .carousel-slide img {
        margin-top: -62% !important;
    }

    .about-content,
    .reserve-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reserve-info {
        flex-direction: column !important;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reserve-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .cta-button {
        padding: 18px 35px;
        font-size: 1.05rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.benefit-card:hover .benefit-icon {
    animation: float 2s ease-in-out infinite;
}

section {
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}