/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C1810;
   /* --primary-color: #8B4513; */
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-light: #3d3d3d;
    --background-light: #fffbf1;
    --background-white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    --gradient-secondary: linear-gradient(135deg, #FDF6E3 0%, #FFFFFF 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-secondary);
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}


/* Columna Izquierda - Letrero */
.hero-left {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.letrero-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optimizaciones de rendimiento */
.letrero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    filter: brightness(0);
    transition: all 0.3s ease;
}

/* Columna Derecha - Contenido */
.hero-right {
    width: 100%;
    height: 100vh;
    background: white;
    color: var(--text-dark);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}


.coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Countdown Timer */
.countdown-container {
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-unit {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 80px;
    text-align: center;
    border: 1px solid black;
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
}

.number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: black;
    text-shadow: none;
}

.label {
    display: block;
    font-size: 0.9rem;
    color: black;
    opacity: 0.8;
    margin-top: 5px;
}

/* Newsletter */
.newsletter {
    margin-top: 50px;
    animation: fadeInUp 1s ease-out 1s both;
}

.newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.newsletter p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    min-width: 200px;
}

.input-group input::placeholder {
    color: var(--text-light);
}

.input-group button {
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.input-group button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-message {
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(76, 175, 80, 0.9);
    color: white;
    border-radius: 25px;
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-white);
}

.features-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    padding: 30px 20px;
    background: var(--background-light);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.feature:hover .feature-icon-img {
    transform: scale(1.1);
    filter: none;
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    filter: brightness(0);
    transition: all 0.3s ease;
}

.feature-icon-img:hover {
    filter: none;
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}


/* Suites Info Section */
.suites-info {
    padding: 80px 0;
    background: var(--background-white);
}

.suites-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.suites-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
}

.suites-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Suite Slider */
.suite-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.suite-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--background-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.suite-slide {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease-in-out;
}

.suite-slide.active {
    display: block;
}

.suite-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(139, 69, 19, 0.1);
}

.suite-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.suite-number {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.suite-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon-img {
    width: 32px;
    height: 32px;
    filter: brightness(0);
    transition: all 0.3s ease;
}

.spec-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.spec-details p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.suite-features {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.suite-features h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.suite-features ul {
    list-style: none;
    margin: 0;
}

.suite-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--secondary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--background-white);
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.gallery-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.gallery-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: var(--background-light);
    height: 500px;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
}

.gallery-main-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.gallery-main:hover .gallery-main-placeholder {
    background: #d8d8d8;
}

.placeholder-text {
    color: #999;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-main:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    height: 400px;
    overflow-y: auto;
    padding: 5px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    align-content: start;
}

.gallery-thumbnails::-webkit-scrollbar {
    width: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.gallery-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--background-light);
    aspect-ratio: 1;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover .gallery-thumb-image {
    transform: scale(1.05);
}

.gallery-thumb-placeholder {
    width: 100%;
    height: 150px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.gallery-thumb:hover .gallery-thumb-placeholder {
    background: #d8d8d8;
}

.gallery-thumb .placeholder-text {
    font-size: 1rem;
    color: #999;
    font-weight: 500;
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover::after {
    opacity: 1;
}

/* Granada Local Content Section */
.granada-content {
    padding: 80px 0;
    background: var(--background-light);
}

.granada-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.granada-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.granada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.granada-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.granada-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 280px;
}

.granada-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.granada-item:hover .granada-img {
    transform: scale(1.05);
}

.granada-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.granada-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.granada-icon-img {
    width: 32px;
    height: 32px;
    filter: brightness(0);
    transition: all 0.3s ease;
}

.granada-item:hover .granada-icon-img {
    transform: scale(1.1);
    filter: brightness(0);
}

.granada-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.granada-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.granada-tips {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.granada-tips h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.granada-tips ul {
    list-style: none;
    padding: 0;
}

.granada-tips li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    color: var(--text-light);
    line-height: 1.6;
}

.granada-tips li:last-child {
    border-bottom: none;
}

.granada-tips strong {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-white);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--background-light);
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    
    .hero-left {
        height: 100vh;
    }
    
    .hero-right {
        height: 100vh;
    }
    
    .hero-content {
        max-width: 450px;
        padding: 30px 20px;
    }
    
    .coming-soon h2 {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 75px;
        padding: 18px 12px;
    }
    
    .number {
        font-size: 1.8rem;
    }
    
    .newsletter h3 {
        font-size: 1.6rem;
    }
    
    .input-group {
        flex-wrap: nowrap;
    }
    
    .input-group input {
        min-width: 180px;
    }
    
    .input-group button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .hero-content {
        max-width: 400px;
        padding: 25px 15px;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .countdown {
        gap: 12px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .number {
        font-size: 1.6rem;
    }
    
    .newsletter h3 {
        font-size: 1.5rem;
    }
    
    .input-group input {
        min-width: 160px;
        padding: 12px 18px;
    }
    
    .input-group button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Gallery Grid Responsive */
@media (min-width: 1200px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        height: 400px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        height: 400px;
    }
}

/* Granada Grid Responsive */
@media (min-width: 1200px) {
    .granada-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
    }
    
    .hero-left {
        height: 400px;
        order: 1;
        padding: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-right {
        height: auto;
        order: 2;
        padding: 20px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px;
        height: auto;
        display: block;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .countdown {
        gap: 12px;
        margin: 20px 0;
    }
    
    .time-unit {
        min-width: 65px;
        padding: 12px 8px;
    }
    
    .number {
        font-size: 1.4rem;
    }
    
    .newsletter {
        margin-top: 30px;
    }
    
    .newsletter h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .newsletter p {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .input-group {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .input-group input {
        min-width: 150px;
        flex: 1;
        padding: 12px 15px;
    }
    
    .input-group button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .suite-specs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .suite-slide {
        padding: 30px 20px;
    }
    
    .suite-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .suite-header h3 {
        font-size: 1.8rem;
    }
    
    .features h2,
    .gallery h2,
    .suites-content h2,
    .granada-content h2,
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-main {
        height: 350px;
    }
    
    .gallery-main-image,
    .gallery-main-placeholder {
        height: 100%;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        height: auto;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .gallery-thumb {
        aspect-ratio: 1;
        min-height: 80px;
    }
    
    .gallery-thumb-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-thumb-placeholder {
        height: 100%;
    }
    
    .granada-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .granada-item {
        padding: 25px 20px;
    }
    
    .granada-image {
        height: 200px;
    }
    
    .granada-img {
        height: 100%;
    }
    
    .granada-tips {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Mejorar espaciado entre secciones en móviles */
    .features,
    .suites-info,
    .contact {
        padding: 60px 0;
    }
    
    .features-content,
    .suites-content,
    .contact-content {
        padding: 0 20px;
    }
    
    /* Mejorar la imagen del letrero en móviles */
    .letrero-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .features-content,
    .granada-content,
    .contact-content,
    .footer-content {
        padding: 0 15px;
    }
    
    .hero-left {
        height: 400px;
        order: 1;
        padding: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .hero-right {
        height: auto;
        order: 2;
        padding: 15px;
    }
    
    .hero-content {
        padding: 15px;
        height: auto;
        display: block;
    }
    
    
    
    .coming-soon h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .countdown {
        gap: 8px;
        margin: 15px 0;
    }
    
    .time-unit {
        min-width: 55px;
        padding: 10px 6px;
    }
    
    .number {
        font-size: 1.2rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    .newsletter {
        margin-top: 25px;
    }
    
    .newsletter h3 {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .newsletter p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .input-group input {
        min-width: 100%;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .input-group button {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .features,
    .suites-info,
    .contact {
        padding: 50px 0;
    }
    
    .features h2,
    .suites-content h2,
    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .suite-slide {
        padding: 20px 15px;
    }
    
    .suite-header h3 {
        font-size: 1.5rem;
    }
    
    .suite-features h4 {
        font-size: 1.2rem;
    }
    
    .suite-features li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .spec-item {
        padding: 15px;
        gap: 10px;
    }
    
    .spec-icon-img {
        width: 28px;
        height: 28px;
    }
    
    .spec-details h4 {
        font-size: 1rem;
    }
    
    .spec-details p {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .feature {
        padding: 25px 15px;
    }
    
    .feature-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    
    .contact-item {
        padding: 25px 15px;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
    }
    
    /* Mejorar la imagen del letrero en móviles pequeños */
    .letrero-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    .letrero-container {
        padding: 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
input:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading animation for better UX */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
