/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Importar fuentes elegantes de Four Seasons */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a96e;
    --accent-color: #8b4513;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Crimson Text', serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-serif);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
/* Header estilo Four Seasons */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.logo h1 {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    font-weight: 200;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section estilo Four Seasons */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(44, 24, 16, 0.3), rgba(44, 24, 16, 0.3)), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-text h1 {
    font-family: var(--font-sans);
    font-size: 2.75rem;
    letter-spacing: 0.3em;
    font-weight: 200;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}



/* Secciones generales estilo Four Seasons */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}



.section-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Tipografía elegante estilo Four Seasons */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 200;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.75rem;
    letter-spacing: 0.3em;
    font-weight: 200;
}

h2 {
    font-family: var(--font-sans);
    font-size: 2.25rem;
    letter-spacing: 0.25em;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.75rem;
    letter-spacing: 0.2em;
    font-weight: 400;
}

p {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Botones estilo Four Seasons */
.btn {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border-radius: 0;
}

.btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}



/* Habitaciones - Estilo Four Seasons */
.rooms {
    background: var(--light-gray);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.room-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Slideshow de habitaciones */
.room-slideshow {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-slideshow:hover .slideshow-nav {
    opacity: 1;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.room-info p {
    font-family: var(--font-primary);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.room-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.room-info li {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    letter-spacing: 0.03em;
}

.room-info li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.price {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-align: right;
    letter-spacing: 0.05em;
}

/* Galería de áreas comunes */
.common-areas {
    margin-top: 4rem;
}

.common-areas h3 {
    font-family: var(--font-sans);
    font-size: 2rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
}

/* Reservations Section - Four Seasons Style */
.reservations {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
}

.reservations-header {
    text-align: center;
    margin-bottom: 80px;
}

.reservations-header .section-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.reservations-header h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.reservations-header .section-description {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Booking Widget */
.booking-widget {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 48px;
    margin-bottom: 80px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form-container {
    max-width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 24px;
    align-items: end;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 48px 16px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.input-wrapper i {
    position: absolute;
    right: 16px;
    color: var(--text-light);
    font-size: 16px;
    pointer-events: none;
}

/* Dropdown Styles */
.dropdown-wrapper {
    position: relative;
}

.dropdown-trigger {
    width: 100%;
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background: white;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-trigger:hover,
.dropdown-trigger.active {
    border-color: var(--accent-color);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e8e8e8;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.dropdown-content.active {
    display: block;
}

.guest-selector {
    padding: 24px;
}

.selector-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.selector-row:last-child {
    border-bottom: none;
}

.selector-row span {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-dark);
}

.counter {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    background: white;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-value {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    min-width: 20px;
    text-align: center;
}

/* Search Button */
.search-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.search-btn:hover {
    background: #9f7928;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

/* Room Results */
.room-results {
    margin-top: 60px;
}

.room-results h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.available-rooms {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.room-option {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr auto;
    transition: all 0.3s ease;
}

.room-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.room-image {
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-option:hover .room-image img {
    transform: scale(1.05);
}

.room-details {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-details h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.room-description {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.room-amenities li {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-amenities i {
    color: var(--accent-color);
    font-size: 12px;
}

.room-pricing {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid #f0f0f0;
    min-width: 200px;
}

.price {
    margin-bottom: 24px;
}

.currency {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.amount {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 4px;
}

.period {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.select-room-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.select-room-btn:hover {
    background: #9f7928;
    transform: translateY(-2px);
}

/* Guest Form */
.guest-form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 48px;
    margin-top: 40px;
}

.guest-form-container h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h4 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 24px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #9f7928;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

.submit-btn {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .room-option {
        grid-template-columns: 1fr;
    }
    
    .room-pricing {
        border-left: none;
        border-top: 1px solid #f0f0f0;
    }
}

@media (max-width: 768px) {
    .booking-widget {
        padding: 32px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservations-header h2 {
        font-size: 36px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
    }
}

/* Ubicación */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.location-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.location-item p,
.location-item ul {
    color: var(--text-light);
}

.location-item ul {
    list-style: none;
}

.location-item li {
    margin-bottom: 0.3rem;
}

.maps-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.maps-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.maps-button i {
    font-size: 1rem;
    margin: 0;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#map {
    height: 100%;
    width: 100%;
}

/* Contacto */
.contact {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Footer estilo Four Seasons */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }
    
    .hero-content {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 100%;
        height: 300px;
    }
    
    .hero-image img {
        border-radius: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .reservation-form,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-card,
.service-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success/Error messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* ============================================
   CORRECCIÓN: Eliminar rectángulo blanco en móviles
   ============================================ */

/* Ocultar el hero-image que causa el rectángulo blanco en móviles */
.hero-image {
    display: none !important;
}

/* Asegurar que el hero use solo la imagen de fondo */
.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.3), rgba(44, 24, 16, 0.3)), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3') center/cover !important;
}

/* ============================================
   MEJORAS ADICIONALES PARA MÓVILES
   ============================================ */

/* Ajuste del logo en móviles */
.logo span {
    font-size: 0.7rem;
    display: block;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

/* Mejorar hero buttons layout */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Media queries adicionales y correcciones */
@media (max-width: 768px) {
    /* Logo más pequeño */
    .nav-container {
        padding: 0 1rem !important;
        height: 70px !important;
    }
    
    .logo h1 {
        font-size: 1.2rem !important;
        letter-spacing: 0.15em !important;
    }
    
    .logo span {
        font-size: 0.6rem !important;
    }
    
    /* Hero mejorado */
    .hero {
        height: auto !important;
        min-height: 100vh;
        padding: 120px 20px 40px !important;
    }
    
    .hero-text h1 {
        font-size: 2rem !important;
        letter-spacing: 0.15em !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-description {
        font-size: 0.75rem !important;
        letter-spacing: 0.1em !important;
    }
    
    /* Botones del hero en columna */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        font-size: 0.7rem !important;
    }
    
    /* Títulos más pequeños */
    h2 {
        font-size: 1.8rem !important;
        letter-spacing: 0.15em !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
    }
    
    .section-description {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }
    
    /* Habitaciones mejor distribuidas */
    .rooms-grid {
        gap: 2rem !important;
    }
    
    .room-slideshow {
        height: 250px !important;
    }
    
    .room-info {
        padding: 1.5rem !important;
    }
    
    .room-info h3 {
        font-size: 1.3rem !important;
        letter-spacing: 0.1em !important;
    }
    
    .room-info p {
        font-size: 0.9rem !important;
    }
    
    .room-info ul li {
        font-size: 0.85rem !important;
    }
    
    /* Servicios en una columna */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-card {
        padding: 1.5rem !important;
    }
    
    .service-card i {
        font-size: 2rem !important;
    }
    
    .service-card h3 {
        font-size: 1.1rem !important;
        letter-spacing: 0.1em !important;
    }
    
    /* Galería en una columna */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .gallery-item {
        height: 250px !important;
    }
    
    /* Formularios mejorados */
    .form-group label {
        font-size: 0.85rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem !important;
        padding: 10px !important;
    }
    
    /* Map más pequeño */
    .map-container {
        height: 300px !important;
        margin-top: 2rem;
    }
    
    /* Footer centrado */
    .footer-content {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Nav menu gap */
    .nav-menu {
        gap: 0.5rem;
    }
}

/* Móviles pequeños (menores a 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem !important;
        height: 65px !important;
    }
    
    .logo h1 {
        font-size: 1rem !important;
        letter-spacing: 0.1em !important;
    }
    
    .logo span {
        font-size: 0.5rem !important;
    }
    
    .hero {
        padding: 100px 15px 30px !important;
    }
    
    .hero-text h1 {
        font-size: 1.6rem !important;
        letter-spacing: 0.1em !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    
    .hero-description {
        font-size: 0.7rem !important;
    }
    
    .hero-buttons .btn {
        font-size: 0.65rem !important;
        padding: 12px 16px !important;
    }
    
    .room-slideshow {
        height: 220px !important;
    }
    
    .room-info {
        padding: 1.25rem !important;
    }
    
    .room-info h3 {
        font-size: 1.1rem !important;
    }
    
    .price {
        font-size: 1.1rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
        letter-spacing: 0.1em !important;
    }
    
    section {
        padding: 50px 0 !important;
    }
    
    .service-card {
        padding: 1.25rem !important;
    }
    
    .gallery-item {
        height: 200px !important;
    }
    
    .reservation-form,
    .contact-form {
        padding: 1.25rem !important;
    }
    
    .footer {
        padding: 3rem 0 1.5rem !important;
    }
}

/* Tablets (entre 481px y 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}