/* ============================================
   VARIABLES Y CONFIGURACIÓN GLOBAL
   ============================================ */
:root {
    --primary: #2738F5;
    --primary-dark: #2738F5;
    --primary-light: #ffb347;
    --accent-blue: #00a8e8;
    --accent-green: #00d4aa;
    --sky-blue: #87CEEB;
    --deep-blue: #0f172a;
    --light-bg: #f8fafc;
    --dark-bg: #0a0e27;
    --dark-secondary: #1a1f3a;
    --border-light: #e2e8f0;
    --border-dark: #2d3748;
    --text-light: #1e293b;
    --text-dark: #f1f5f9;
    
    font-size: 16px;
}

[data-theme="dark"] {
    --bg: var(--dark-bg);
    --bg-secondary: var(--dark-secondary);
    --text: var(--text-dark);
    --border: var(--border-dark);
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg-secondary: var(--light-bg);
    --text: var(--text-light);
    --border: var(--border-light);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-secondary);
    color: var(--text);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dark .header {
    background: rgba(10, 14, 39, 0.95);
}

.sticky-header {
    position: sticky;
    top: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.08);
}

.logo:hover span {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue));
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-select {
    padding: 0.6rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-select:hover {
    border-color: var(--primary);
    background: var(--bg-secondary);
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.theme-toggle:hover {
    transform: rotate(25deg) scale(1.1);
}

.theme-toggle svg {
    width: 100%;
    height: 100%;
}

.moon-icon {
    display: none;
}

.dark .sun-icon {
    display: none;
}

.dark .moon-icon {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #16213e 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/fondo.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(39, 56, 245, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 168, 232, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: heroFadeInUp 0.8s ease-out;
    max-width: 900px;
    padding: 0 2rem;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 2.5rem;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: 2px solid transparent;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(39, 56, 245, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(39, 56, 245, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-arrow {
    animation: bounce 2.5s infinite;
    margin-top: 1rem;
}

.hero-arrow svg {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.dark .gallery-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.gallery-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 1rem;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 550px;
    height: 420px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(39, 56, 245, 0.15), 
                0 0 80px rgba(39, 56, 245, 0.08);
    position: relative;
    border: 1px solid rgba(39, 56, 245, 0.1);
}

.dark .gallery-item {
    box-shadow: 0 20px 50px rgba(39, 56, 245, 0.1), 
                0 0 80px rgba(39, 56, 245, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(39, 56, 245, 0.08);
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(39, 56, 245, 0.1);
    flex-wrap: wrap;
}

.dark .gallery-dots {
    background: rgba(39, 56, 245, 0.05);
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.dark .gallery-dot {
    background: #4b5563;
}

.gallery-dot:hover {
    background: var(--primary);
    transform: scale(1.3);
}

.gallery-dot.active {
    background: var(--primary);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(39, 56, 245, 0.6);
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-section {
    padding: 5rem 0;
    background: var(--bg);
    position: relative;
}

.dark .videos-section {
    background: var(--dark-bg);
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.videos-subtitle {
    text-align: center;
    color: var(--text);
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: var(--bg-secondary);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.dark .video-card {
    background: var(--dark-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 56, 245, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-wrapper video {
    object-fit: contain;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.video-description {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.6;
}

.no-videos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text);
    opacity: 0.5;
    font-size: 1.1rem;
}

/* ============================================
   SECCIONES DE SERVICIOS
   ============================================ */
.services-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.dark .services-section {
    background: var(--dark-bg);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* ============================================
   SERVICE CARD
   ============================================ */
.service-card {
    background: var(--bg);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
}

.dark .service-card {
    background: var(--dark-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue));
    z-index: 2;
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(39, 56, 245, 0.3);
    z-index: 3;
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .service-content h3 {
    -webkit-text-fill-color: unset;
    background: none;
    color: #f3f4f6;
}

.service-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.dark .service-content p {
    color: #cbd5e1;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.btn-book {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(39, 56, 245, 0.2);
}

.btn-book:hover {
    box-shadow: 0 12px 30px rgba(39, 56, 245, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.why-us-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 56, 245, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why-us-card:hover {
    background: rgba(39, 56, 245, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.why-us-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4ff 100%);
    padding: 60px 20px;
    margin: 40px 0;
    position: relative;
}

[data-theme="dark"] .testimonials-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f172a 100%);
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.testimonials-section .comments-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
    position: relative;
}

.dark .faq-section {
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-item {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.dark .faq-item {
    background: var(--dark-secondary);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
    gap: 1rem;
}

.faq-question span {
    flex: 1;
}

.faq-item:hover .faq-question {
    color: var(--primary);
    background: var(--bg-secondary);
}

.dark .faq-item:hover .faq-question {
    background: rgba(39, 56, 245, 0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid var(--border);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.9rem;
}

.dark .faq-answer-content {
    color: #cbd5e1;
}

/* ============================================
   EXPLORE MORE BUTTON
   ============================================ */
.explore-section {
    padding: 3rem 1.5rem;
    background: var(--bg);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.dark .explore-section {
    background: var(--dark-bg);
}

/* ============================================
   FORMULARIO DE RESERVACIÓN
   ============================================ */
.booking-section {
    padding: 5rem 0;
    background: var(--bg);
}

.dark .booking-section {
    background: var(--dark-bg);
}

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.dark .booking-form-container {
    background: var(--dark-secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.2rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
    pointer-events: none;
}

.input-wrapper:focus-within .input-icon {
    color: var(--primary);
}

.form-input,
.form-select {
    width: 100%;
    height: 3.2rem;
    padding: 0 1rem 0 3rem;
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dark .form-input,
.dark .form-select {
    background: rgba(39, 56, 245, 0.03);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(39, 56, 245, 0.1);
}

.form-input::placeholder {
    color: transparent;
}

label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg);
    padding: 0 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dark label {
    background: var(--dark-secondary);
}

.form-input:focus ~ label,
.form-input:not(:placeholder-shown) ~ label,
.form-select:focus ~ label,
.form-select:not([value=""]) ~ label {
    top: -0.75rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.form-select {
    appearance: none;
    padding-right: 2.5rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-message {
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    display: none;
    font-size: 0.9rem;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #047857;
}

.dark .form-message.success {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #dc2626;
}

.dark .form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 56, 245, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(39, 56, 245, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    position: relative;
}

.dark .footer {
    background: var(--dark-secondary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.dark .footer-section a {
    color: #cbd5e1;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.dark .footer-social-link {
    background: rgba(39, 56, 245, 0.1);
    color: var(--primary);
}

.footer-social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-text {
    color: #64748b;
    font-size: 0.9rem;
}

.dark .footer-text {
    color: #94a3b8;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.whatsapp-button.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-button a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: ping 2s infinite;
    opacity: 0.6;
}

@keyframes ping {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }
    75% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.whatsapp-button a:hover {
    background: linear-gradient(135deg, #128C7E, #0f5c4b);
    transform: scale(1.1);
}

.whatsapp-button svg {
    width: 55%;
    height: 55%;
    position: relative;
    z-index: 1;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(39, 56, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 45;
}

.scroll-top-btn.show,
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    box-shadow: 0 12px 30px rgba(39, 56, 245, 0.3);
    transform: scale(1.1);
}

.scroll-top-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    gap: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading p {
    color: #64748b;
    font-size: 0.9rem;
}

.dark .loading p {
    color: #cbd5e1;
}

/* ============================================
   RESPONSIVE - MÓVILES
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        gap: 0.75rem;
    }
    
    .logo {
        height: 40px;
        gap: 0.5rem;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        gap: 0;
        padding: 80px 0 2rem;
        background: var(--bg);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--border);
        width: 100%;
        text-align: left;
        font-size: 1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-controls {
        gap: 0.75rem;
    }
    
    .language-select {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .theme-toggle {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-arrow {
        display: none;
    }
    
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-title h2 {
        font-size: 1.6rem;
    }
    
    .gallery-container {
        padding: 0 0.75rem;
    }
    
    .gallery-track {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .gallery-item {
        flex: 0 0 280px;
        height: 200px;
        border-radius: 1rem;
    }
    
    .gallery-dots {
        gap: 0.5rem;
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
    
    .videos-section {
        padding: 3rem 0;
    }
    
    .videos-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        border-radius: 1rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .service-content h3 {
        font-size: 1.15rem;
    }
    
    .service-price {
        font-size: 1.35rem;
    }
    
    .why-us-section {
        padding: 3rem 0;
    }
    
    .why-us-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-card {
        padding: 1.5rem;
    }
    
    .why-us-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .why-us-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-section .section-title {
        font-size: 24px;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 1.25rem;
    }
    
    .explore-section {
        padding: 2rem 1rem;
    }
    
    .explore-section .btn-primary {
        width: 100%;
        max-width: 280px;
    }
    
    .booking-section {
        padding: 3rem 0;
    }
    
    .booking-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 1rem;
    }
    
    .booking-form {
        gap: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .form-input,
    .form-select {
        height: 3rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE - MÓVILES PEQUEÑOS
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 35px;
        gap: 0.4rem;
    }
    
    .logo span {
        font-size: 0.75rem;
        letter-spacing: -0.3px;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .gallery-item {
        flex: 0 0 250px;
        height: 180px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-price {
        font-size: 1.25rem;
    }
    
    .booking-form-container {
        padding: 1.25rem;
        margin: 0 0.75rem;
    }
}

/* ============================================
   MEJORAS TOUCH PARA MÓVILES
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .why-us-card:hover {
        transform: none;
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .btn-hero-primary:hover,
    .btn-hero-secondary:hover,
    .btn-primary:hover,
    .btn-book:hover {
        transform: none;
    }
    
    .btn-hero-primary:active,
    .btn-hero-secondary:active,
    .btn-primary:active,
    .btn-book:active {
        transform: scale(0.98);
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
    
    .service-card:hover .service-image img {
        transform: none;
    }
}

/* ============================================
   COMENTARIOS - Estilos compartidos para testimonials-section
   ============================================ */

.comments-container {
    max-width: 800px;
    margin: 0 auto;
}

/* LISTA DE COMENTARIOS */
.comments-list {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

[data-theme="dark"] .comments-list {
    background: var(--dark-secondary);
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.comment-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

[data-theme="dark"] .comment-box {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary);
}

.comment-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(39, 56, 245, 0.15);
}

.comment-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 8px;
}

.comment-text {
    color: var(--text);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    color: #999;
    padding: 20px;
    font-style: italic;
}

/* FORMULARIO SIMPLE */
.comment-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

[data-theme="dark"] .comment-form-wrapper {
    background: var(--dark-secondary);
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.comment-form-wrapper h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 18px;
}

.comment-message {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    display: none;
    font-weight: 500;
}

.comment-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.comment-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

#commentForm {
    display: grid;
    gap: 15px;
}

.comment-input,
.comment-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    background: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
}

.comment-input:focus,
.comment-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(39, 56, 245, 0.2);
}

.comment-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-post {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-post:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 56, 245, 0.3);
}

.btn-post:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .comments-list,
    .comment-form-wrapper {
        padding: 20px;
    }
}