/* ========================================
   CARMESÍ RESIDENCIAL - STYLESHEET
   ======================================== */

/* ========================================
   CUSTOM FONTS - KINETIKA
   ======================================== */
@font-face {
    font-family: 'Kinetika';
    src: url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Thin.woff2') format('woff2'),
         url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kinetika';
    src: url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Light.woff2') format('woff2'),
         url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kinetika';
    src: url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Regular.woff2') format('woff2'),
         url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kinetika';
    src: url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Medium.woff2') format('woff2'),
         url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kinetika';
    src: url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Bold.woff2') format('woff2'),
         url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kinetika';
    src: url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Heavy.woff2') format('woff2'),
         url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kinetika';
    src: url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Ultra.woff2') format('woff2'),
         url('https://parners.mx/carmesi/assets/fonts/kinetika/woff/Kinetika Ultra.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    /* Colors */
    --primary-color: #3F0106;
    --primary-dark: #660000;
    --primary-light: #A52A2A;
    --secondary-color: #D4AF37;
    --dark-color: #3F0106;
    --dark-gray: #333333;
    --medium-gray: #3F0106;
    --light-gray: #f5f5f5;
    --white: #ebebeb;
    --text-color: #333333;
    
    /* Typography - iOS compatible fallbacks */
    --font-primary: 'Kinetika', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Kinetika', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-kinetika: 'Kinetika', 'Oswald', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 150px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* iOS font rendering improvements */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* iOS specific font fixes */
@supports (-webkit-touch-callout: none) {
    /* Targeting iOS Safari specifically */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Force font weights to load properly on iOS */
    .hero-title,
    .amenities-title,
    .parks-title,
    h1, h2, h3 {
        font-weight: 900 !important;
        font-family: 'Kinetika', 'Oswald', -apple-system, BlinkMacSystemFont, sans-serif !important;
        -webkit-font-feature-settings: "kern" 1;
        font-feature-settings: "kern" 1;
        text-shadow: 0 0 0.1px rgba(0,0,0,0.01);
    }
    
    /* Ensure bold text renders correctly */
    strong, b, .bold {
        font-weight: 700 !important;
        font-family: 'Kinetika', 'Oswald', -apple-system, BlinkMacSystemFont, sans-serif !important;
        -webkit-font-feature-settings: "kern" 1;
        font-feature-settings: "kern" 1;
        text-shadow: 0 0 0.1px rgba(0,0,0,0.01);
    }
    
    /* Additional iOS optimizations */
    body {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Force font synthesis for missing weights */
    .font-bold, .semibold {
        font-synthesis: weight;
        -webkit-font-synthesis: weight;
    }
}

p {
    font-family: 'Kinetika', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1651px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 15px 34px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo h1 {
    color: var(--primary-color);
}

.logo h1 span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--dark-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.btn-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
}

.nav-link.btn-contact::after {
    display: none;
}

.nav-link.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--primary-color);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: url('https://parners.mx/carmesi/assets/images/10001556581.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px 0;
    /* iOS Safari fix */
    -webkit-background-size: cover;
    transform: translate3d(0, 0, 0);
}

.hero-overlay {
    display: none;
}

.hero-logo {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInDown 1s ease;
    padding-top: 20px;
}

.hero-logo img {
    max-width: 548px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1651px;
    width: 100%;
    padding: 0 40px;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    text-align: left;
    flex: 1;
}

.hero-price-container {
    text-align: right;
    flex-shrink: 0;
}

.hero-subtitle {
    display: none;
}

.hero-title {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 50px;
    font-weight: 900;
    font-style: normal;
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    text-transform: none;
    text-align: left;
}

.hero-description {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 26px;
    font-weight: 360;
    font-style: normal;
    margin-bottom: 0;
    opacity: 1;
    line-height: 110%;
    letter-spacing: 0%;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-price {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 0;
    color: var(--white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0%;
    line-height: 100%;
    text-align: right;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content > div:first-child {
    flex: 1.5;
}

.about-content > div:last-child {
    flex: 1;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: transparent;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image > div {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 !important;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16; /* Para videos verticales */
    max-height: 75vh;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.video-overlay.playing {
    opacity: 0.1;
    background: transparent;
}

.video-overlay.playing:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    max-width: 837px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 50px;
    font-weight: 900;
    font-style: normal;
    color: var(--dark-color);
    margin-bottom: 100px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.about-text p {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 35px;
    font-style: normal;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: center;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--medium-gray);
    margin: 0;
    text-align: center;
}

/* ========================================
   DESTINO SECTION
   ======================================== */
.destino {
    position: relative;
    padding: 0;
    background: var(--white);
}

.destino-image {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.destino-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destino-content {
    padding: var(--section-padding) 0;
    max-width: 1651px;
    margin: 0 auto;
}

.destino-title {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 50px;
    font-weight: 900;
    font-style: normal;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.destino-description {
    font-family: var(--font-primary);
    color: var(--medium-gray);
    margin-bottom: 60px;
    text-align: center;
    max-width: 1417px;
    margin-left: auto;
    margin-right: auto;
    line-height: 36px;
}

.destino-features {
    display: flex;
    gap: 93px;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-width: 1413px;
    margin: 0 auto;
}

.destino-card {
    width: 100%;
    max-width: 380px;
    height: 160px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    flex-shrink: 1;
}

.destino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: #a09072;
}

.destino-card h3 {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    color: var(--white);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}

/* ========================================
   UBICACION PRIVILEGIADA SECTION
   ======================================== */
.ubicacion-privilegiada {
    background: var(--white);
}

.ubicacion-image {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.ubicacion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ubicacion-header {
    background: var(--white);
    padding: var(--section-padding) 0;
}

.ubicacion-title {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 50px;
    font-weight: 900;
    font-style: normal;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.ubicacion-description {
    font-family: var(--font-kinetika), sans-serif;
    font-style: normal;
    color: var(--medium-gray);
    margin-bottom: 0;
    letter-spacing: 0%;
    text-align: center;
    max-width: 1651px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.ubicacion-map-section {
    background: #28050B;
    display: flex;
    min-height: 600px;
}

.ubicacion-list {
    flex: 0 0 30%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.ubicacion-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    transition: var(--transition-fast);
    cursor: pointer;
}

.ubicacion-item:hover {
    transform: translateX(10px);
}

.ubicacion-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.ubicacion-item span {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ubicacion-map {
    flex: 0 0 70%;
    position: relative;
    overflow: hidden;
}

.ubicacion-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ubicacion-map-alt {
    width: 100%;
    text-align: center;
    margin: 40px 0;
    position: relative;
    display: inline-block;
}

.map-image-container {
    position: relative;
    width: 100%;
}

.map-desktop,
.map-mobile {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Mostrar solo imagen desktop por defecto */
.map-desktop {
    display: block;
}

.map-mobile {
    display: none;
}

.map-desktop:hover,
.map-mobile:hover {
    transform: scale(1.02);
}

/* Icono de ubicación en el mapa */
.map-marker {
    position: absolute;
    /* Coordenadas porcentuales - ajustar según la ubicación exacta en el mapa */
    top: 55%;
    left: 80%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    user-select: none;
}

.marker-icon {
    position: relative;
    z-index: 2;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.3));
}

.marker-icon img {
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(139, 0, 0, 0.3);
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: 1;
}

/* Tooltip para el marcador */
.map-marker::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    z-index: 100;
}

.map-marker::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2px;
}

.map-marker:hover::before,
.map-marker:hover::after {
    opacity: 1;
    visibility: visible;
}

.map-marker:hover .marker-icon img {
    transform: scale(1.2);
}

/* Animaciones */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--white);
}

.cta-content {
    background: #A09072;
    padding: 106px 20px;
    text-align: center;
}

.cta-title {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 50px;
    font-weight: 700;
    font-style: normal;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-description {
    font-family: var(--font-kinetika), sans-serif;    
    font-style: normal;
    color: var(--dark-color);
    margin-bottom: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    max-width: 1651px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    font-family: var(--font-kinetika), sans-serif;
    font-size: 26px;
    font-weight: 500;
    font-style: normal;
    background: var(--white);
    color: var(--dark-color);
    padding: 20px 60px;
    border-radius: 85px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    animation: ctaBounce 3s infinite;
    transform-origin: center;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 144, 114, 0.3), transparent);
    animation: ctaShine 4s infinite;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: #f5f5f5;
    animation-play-state: paused;
}

.btn-cta:hover::before {
    animation-play-state: paused;
}

.btn-cta:active {
    transform: translateY(-2px) scale(0.98);
    transition: transform 0.1s ease;
}

/* Animación de rebote llamativa para el CTA */
@keyframes ctaBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    10% {
        transform: translateY(-8px) scale(1.02);
    }
    30% {
        transform: translateY(-4px) scale(1.01);
    }
    40% {
        transform: translateY(-2px) scale(1.005);
    }
    60% {
        transform: translateY(-1px) scale(1.002);
    }
}

/* Animación de brillo sutil */
@keyframes ctaShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.cta-image {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   AMENITIES SECTION
   ======================================== */
.amenities {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.amenities-title {
    font-family: var(--font-kinetika), sans-serif;
    font-size: 50px;
    font-weight: 900;
    font-style: normal;
    color: var(--dark-color);
    margin-bottom: 60px;
    line-height: 80px;
    letter-spacing: 0%;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.amenity-item {
    grid-column: span 3;
}

.amenity-item {
    background: var(--white);    
    border-radius: 42px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.amenity-item:hover {
    transform: translateY(-5px);
    border: 2px solid #A09072;
}

.amenity-item img {
    width: 185px;
    height: 185px;
    object-fit: contain;
    margin-bottom: 30px;
}

.amenity-item h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

/* Tooltip Styles - Aparece debajo del título */
.amenity-item::after {
    content: attr(data-tooltip);
    display: block;
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 0;
    padding: 0 15px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.amenity-item:hover h3 {
    margin-bottom: 8px;
}

.amenity-item:hover::after {
    max-height: 120px;
    opacity: 1;
    margin-top: 8px;
}

/* Centrar últimos 3 items */
.amenity-item:nth-child(9) {
    grid-column: 2 / 5;
}

.amenity-item:nth-child(10) {
    grid-column: 5 / 8;
}

.amenity-item:nth-child(11) {
    grid-column: 8 / 11;
}

/* ========================================
   GALLERY CAROUSEL SECTION
   ======================================== */
.gallery-carousel {
    padding: 60px 0;
    background: var(--white);
}

.container-full {
    max-width: 1880px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallerySwiper {
    width: 100%;
    height: 100vh;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallerySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flechas de navegación */
.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    color: #5b0404;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallerySwiper .swiper-button-next:after,
.gallerySwiper .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Paginación */
.gallerySwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: #5b0404;
    opacity: 1;
}

/* ========================================
   PARKS SECTION
   ======================================== */
.parks-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.parks-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.parks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.park-item {
    background: var(--white);    
    border-radius: 42px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.park-item:hover {
    transform: translateY(-5px);
    border: 2px solid #A09072;
}

.park-item img {
    width: 185px;
    height: 185px;
    object-fit: contain;
    margin-bottom: 30px;
}

.park-item h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

/* Tooltip Styles para Parks - Aparece debajo del título */
.park-item::after {
    content: attr(data-tooltip);
    display: block;
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 0;
    padding: 0 15px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.park-item:hover h3 {
    margin-bottom: 8px;
}

.park-item:hover::after {
    max-height: 120px;
    opacity: 1;
    margin-top: 8px;
}

.parks-carousel {
    width: 100%;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.parksSwiper {
    width: 100%;
    height: 100vh;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.parksSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.parksSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flechas de navegación para parks */
.parksSwiper .swiper-button-next,
.parksSwiper .swiper-button-prev {
    color: #5b0404;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.parksSwiper .swiper-button-next:after,
.parksSwiper .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.parksSwiper .swiper-button-next:hover,
.parksSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Paginación para parks */
.parksSwiper .swiper-pagination {
    bottom: 20px;
}

.parksSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.parksSwiper .swiper-pagination-bullet-active {
    background: #5b0404;
    transform: scale(1.2);
}

/* ========================================
   FINANCING SECTION
   ======================================== */
.financing-section {
    padding: 0;
    background: var(--white);
}

.financing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.financing-image {
    position: relative;
    overflow: hidden;
}

.financing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.financing-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 130px 60px;
    background: var(--white);
}

.financing-subtitle {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.financing-title {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.financing-details {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--dark-color);
}

.financing-details br {
    display: block;
    content: "";
    margin: 20px 0;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-form-section {
    padding: var(--section-padding) 0 0 0;
    background: var(--white);
}

.contact-main-title {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 60px;
    padding: 0 20px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px;
    background: var(--white);
}

.contact-subtitle {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 40px;
    width: 100%;
}

.contact-form {
    width: 100%;
}

.contact-form iframe {
    width: 100%;
    min-height: 785px;
    border: none;
    border-radius: 3px;
}

.contact-image {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.location-info > p {
    font-size: 1.05rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.location-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.location-item:hover h4,
.location-item:hover p {
    color: var(--white);
}

.location-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.location-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    width: 100%;
    height: 500px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo img {
    max-width: 180px;
    height: auto;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.contact-info h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #3F0106;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1651px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 40px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-partners {
    flex: 0 0 auto;
}

.footer-partners img {
    height: 60px;
    width: auto;
    display: block;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

/* Animación de pulso para llamar la atención */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    p {
        font-size: 28px;
        line-height: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 28px;
    }
    
    .hero-price {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-text h3 {
        font-size: 40px;
    }
    
    .about-text p {
        font-size: 28px;
        line-height: 38px;
    }
    
    .destino-title {
        font-size: 40px;
    }
    
    .destino-card {
        max-width: 320px;
        height: 140px;
    }
    
    .destino-card h3 {
        font-size: 24px;
    }
    
    .ubicacion-title {
        font-size: 40px;
    }
    
    .ubicacion-description {
        font-size: 28px;
        line-height: 38px;
    }
    
    .ubicacion-map-section {
        flex-direction: column;
    }
    
    .ubicacion-list {
        flex: 1;
        padding: 50px 30px;
    }
    
    .ubicacion-map {
        flex: 1;
        min-height: 500px;
    }
    
    .cta-content {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 48px;
    }
    
    .cta-description {
        font-size: 28px;
    }
    
    .btn-cta {
        font-size: 28px;
        padding: 18px 50px;
    }
    
    /* Mantener animación en tablet */
    @keyframes ctaBounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) scale(1);
        }
        10% {
            transform: translateY(-6px) scale(1.02);
        }
        30% {
            transform: translateY(-3px) scale(1.01);
        }
        40% {
            transform: translateY(-1px) scale(1.005);
        }
        60% {
            transform: translateY(-0.5px) scale(1.002);
        }
    }
    
    .parks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .parks-title {
        font-size: 2rem;
    }
    
    .financing-subtitle {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .financing-title {
        font-size: 48px;
        margin-bottom: 30px;
    }
    
    .financing-details {
        font-size: 32px;
    }
    
    .contact-main-title {
        font-size: 48px;
        margin-bottom: 50px;
    }
    
    .contact-subtitle {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-content {
        padding: 50px 40px;
    }
    
    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .amenities-title {
        font-size: 40px;
        line-height: 60px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenity-item {
        min-height: 350px;
    }
    
    .amenity-item img {
        width: 150px;
        height: 150px;
    }
    
    .amenity-item h3 {
        font-size: 1rem;
    }
    
    .amenity-item:nth-child(9) {
        grid-column: 1;
    }
    
    .amenity-item:nth-child(10) {
        grid-column: 2;
    }
    
    .amenity-item:nth-child(11) {
        grid-column: 3;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    /* Responsive map marker for tablet */
    .map-marker {
        top: 44%;
        left: 51%;
    }
    
    .marker-icon img {
        width: 28px;
        height: 28px;
    }
    
    .marker-pulse {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 15px;
    }
    
    /* Prevenir desbordamiento horizontal */
    * {
        box-sizing: border-box;
    }
    
    p {
        font-size: 22px;
        line-height: 32px;
    }
    
    /* Gallery Carousel Responsive */
    .gallery-carousel {
        padding: 40px 0;
    }
    
    .container-full {
        padding: 0 20px;
    }
    
    .gallerySwiper {
        height: 60vh;
        border-radius: 15px;
    }
    
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after {
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--dark-color);
        font-size: 1.1rem;
    }
    
    .hero-logo img {
        max-width: 280px;
    }
    
    .parks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .parks-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .park-item {
        min-height: 350px;
        padding: 30px 15px;
    }
    
    .park-item img {
        width: 150px;
        height: 150px;
    }
    
    .park-item h3 {
        font-size: 1rem;
    }
    
    .parks-carousel {
        border-radius: 15px;
    }
    
    .parksSwiper {
        height: 100vh;
    }
    
    .financing-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .financing-image {
        min-height: 400px;
    }
    
    .financing-content {
        padding: 60px 40px;
    }
    
    .financing-subtitle {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .financing-title {
        font-size: 42px;
        margin-bottom: 25px;
    }
    
    .financing-details {
        font-size: 28px;
    }
    
    .contact-main-title {
        font-size: 42px;
        margin-bottom: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-content {
        padding: 50px 30px;
        order: 1;
    }
    
    .contact-image {
        min-height: 400px;
        order: 2;
    }
    
    .contact-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 130%;
    }
    
    .contact-form iframe {
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .hero-price {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-text h3 {
        font-size: 32px;
    }
    
    .about-text p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .about-image {
        order: 1;
        max-width: 100%;
        background: transparent;
        margin-bottom: 20px;
        max-width: 300px; /* Más estrecho para videos verticales */
    }
    
    .about-image > div {
        height: auto;
        padding: 0 !important;
    }
    
    .video-container {
        aspect-ratio: 9/16;
        max-height: 80vh;
        width: 100%;
        margin: 0 auto;
    }
    
    .about-image img {
        height: 100%;
    }
    
    .destino-image {
        height: 50vh;
    }
    
    .destino-title {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .destino-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .destino-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .destino-card {
        width: 100%;
        max-width: 350px;
        height: 120px;
    }
    
    .destino-card h3 {
        font-size: 22px;
    }
    
    .ubicacion-image {
        height: 50vh;
    }
    
    .ubicacion-title {
        font-size: 32px;
    }
    
    .ubicacion-description {
        font-size: 20px;
        line-height: 28px;
    }
    
    .ubicacion-list {
        padding: 40px 20px;
        gap: 20px;
    }
    
    .ubicacion-item img {
        width: 40px;
        height: 40px;
    }
    
    .ubicacion-item span {
        font-size: 0.9rem;
    }
    
    .ubicacion-map {
        min-height: 400px;
    }
    
    .cta-content {
        padding: 50px 20px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 20px;
    }
    
    .btn-cta {
        font-size: 20px;
        padding: 15px 40px;
    }
    
    /* Animación más sutil en mobile */
    @keyframes ctaBounce {
        0%, 25%, 50%, 75%, 100% {
            transform: translateY(0) scale(1);
        }
        12.5% {
            transform: translateY(-4px) scale(1.01);
        }
        37.5% {
            transform: translateY(-2px) scale(1.005);
        }
        62.5% {
            transform: translateY(-1px) scale(1.002);
        }
    }
    
    .cta-image {
        height: 50vh;
    }
    
    .amenities-title {
        font-size: 32px;
        line-height: 45px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .amenity-item {
        min-height: 250px;
        padding: 20px 10px;
        box-sizing: border-box;
    }
    
    .amenity-item img {
        width: 100px;
        height: 100px;
    }
    
    .amenity-item h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .amenity-item::after {
        font-size: 1rem;
    }
    
    .amenity-item:nth-child(9) {
        grid-column: auto;
    }
    
    .amenity-item:nth-child(10) {
        grid-column: auto;
    }
    
    .amenity-item:nth-child(11) {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        padding: 0 30px;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo img,
    .footer-partners img {
        height: 50px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Responsive map marker for mobile */
    .map-marker {
        top: 43%;
        left: 50%;
    }
    
    .marker-icon img {
        width: 24px;
        height: 24px;
    }
    
    .marker-pulse {
        width: 16px;
        height: 16px;
    }
    
    .map-marker::before {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    /* Cambiar a imagen móvil */
    .map-desktop {
        display: none;
    }
    
    .map-mobile {
        display: block;
    }
    
    /* WhatsApp button responsive */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 10px;
    }
    
    p {
        font-size: 18px;
        line-height: 26px;
    }
    
    /* Gallery Carousel Mobile */
    .gallery-carousel {
        padding: 30px 0;
    }
    
    .container-full {
        padding: 0 15px;
    }
    
    .gallerySwiper {
        height: 50vh;
        border-radius: 12px;
    }
    
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 34px;
        height: 34px;
    }
    
    .gallerySwiper .swiper-button-next:after,
    .gallerySwiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .hero {
        padding: 80px 0 40px 0;
        justify-content: space-between;
    }
    
    .hero-logo img {
        max-width: 220px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-price {
        font-size: 28px;
        margin-bottom: 0;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-price-container {
        text-align: left;
        width: 100%;
    }
    
    .hero-price {
        text-align: center;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .parks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .parks-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .park-item {
        min-height: 250px;
        padding: 20px 10px;
        box-sizing: border-box;
    }
    
    .park-item img {
        width: 100px;
        height: 100px;
    }
    
    .park-item h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .park-item::after {
        font-size: 1rem;
    }
    
    .parks-carousel {
        border-radius: 12px;
    }
    
    .parksSwiper {
        height: 50vh;
    }
    
    .parksSwiper .swiper-button-next,
    .parksSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .parksSwiper .swiper-button-next:after,
    .parksSwiper .swiper-button-prev:after {
        font-size: 18px;
    }
    
    .financing-image {
        min-height: 300px;
    }
    
    .financing-content {
        padding: 40px 20px;
    }
    
    .financing-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .financing-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .financing-details {
        font-size: 20px;
    }
    
    .contact-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-content {
        padding: 40px 20px;
    }
    
    .contact-image {
        min-height: 300px;
    }
    
    .contact-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 130%;
    }
    
    .contact-form iframe {
        min-height: 600px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 15px;
    }
    
    .about-content > div:first-child,
    .about-content > div:last-child {
        flex: none;
        width: 100%;
    }
    
    .about-text h3 {
        font-size: 28px;
        margin-bottom: 0px;
    }
    
    .about-text p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .about-image {
        max-width: 250px; /* Aún más estrecho en móviles pequeños */
        width: 100%;
        margin: 0 auto;
    }
    
    .about-image > div {
        height: auto;
    }
    
    .video-container {
        aspect-ratio: 9/16;
        max-height: 100vh;
        width: 100%;
        margin: 0 auto;
    }
    
    .destino-image {
        height: 20vh;
    }
    
    .destino-title {
        font-size: 28px;
    }
    
    .destino-description {
        font-size: 18px;
        line-height: 26px;
    }
    
    .destino-card {
        height: 100px;
    }
    
    .destino-card h3 {
        font-size: 18px;
    }
    
    .ubicacion-image {
        height: 20vh;
    }
    
    .ubicacion-title {
        font-size: 28px;
    }
    
    .ubicacion-description {
        font-size: 18px;
        line-height: 26px;
    }
    
    .ubicacion-list {
        padding: 30px 15px;
        gap: 15px;
        align-items: center;
        flex: 1;
    }
    
    .ubicacion-item {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .ubicacion-item img {
        width: 40px;
        height: 40px;
    }
    
    .ubicacion-item span {
        font-size: 0.85rem;
    }
    
    .ubicacion-map {
        min-height: 350px;
    }
    
    .cta-content {
        padding: 40px 15px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 18px;
        line-height: 24px;
    }
    
    .btn-cta {
        font-size: 18px;
        padding: 12px 30px;
    }
    
    /* Animación muy sutil para móviles pequeños */
    @keyframes ctaBounce {
        0%, 33%, 66%, 100% {
            transform: translateY(0) scale(1);
        }
        16% {
            transform: translateY(-2px) scale(1.005);
        }
        50% {
            transform: translateY(-1px) scale(1.002);
        }
    }
    
    .cta-image {
        height: 20vh;
    }
    
    .amenities-title {
        font-size: 28px;
        line-height: 38px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 5px;
    }
    
    .amenity-item {
        grid-column: span 1;
        min-height: 200px;
        padding: 15px 8px;
        box-sizing: border-box;
    }
    
    .amenity-item img {
        width: 80px;
        height: 80px;
    }
    
    .amenity-item h3 {
        font-size: 1rem;
        line-height: 1.1;
        margin-top: 10px;
    }
    
    .amenity-item::after {
        font-size: 1rem;
    }
    
    .amenity-item:nth-child(9),
    .amenity-item:nth-child(10),
    .amenity-item:nth-child(11) {
        grid-column: span 1;
    }
    
    .amenity-item:nth-child(11) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    /* Parks optimizados para móviles pequeños */
    .parks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .park-item {
        min-height: 180px;
        padding: 12px 6px;
        box-sizing: border-box;
    }
    
    .park-item img {
        width: 70px;
        height: 70px;
    }
    
    .park-item h3 {
        font-size: 1rem;
        line-height: 1.1;
        margin-top: 8px;
    }
    
    .park-item::after {
        font-size: 1rem;
    }
    
    .parks-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 0px;
    }
    
    .footer-content {
        flex-direction: column;
        padding: 0 20px;
        gap: 25px;
    }
    
    .footer-logo img,
    .footer-partners img {
        height: 40px;
    }
    
    /* Responsive map marker for small mobile */
    .map-marker {
        top: 75%;
        left: 80%;
    }
    
    .marker-icon img {
        width: 40px;
        height: 40px;
    }
    
    .marker-pulse {
        width: 14px;
        height: 14px;
    }
    
    .map-marker::before {
        font-size: 11px;
        padding: 5px 8px;
        bottom: 120%;
        display: none;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-6px);
        }
        60% {
            transform: translateY(-3px);
        }
    }
    
    /* Cambiar a imagen móvil en small mobile también */
    .map-desktop {
        display: none;
    }
    
    .map-mobile {
        display: block;
    }
    
    /* WhatsApp button small mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 70px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}
