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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
}

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

/* Tipografía */
h1, h2, h3, h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Botones */
.btn-primary {
    display: inline-block;
    background-color: #8b4513;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #a0522d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

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

.btn-primary:hover::before {
    left: 100%;
}

/* Botón en hero fullscreen */
.hero-fullscreen .btn-primary {
    background: rgba(139, 69, 19, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    padding: 15px 35px;
}

.hero-fullscreen .btn-primary:hover {
    background: rgba(160, 82, 45, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Header y Navegación */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 200px;
    position: relative;
    z-index: 1000;
    margin: -70px 0;
    background: none;
    border: none;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8b4513;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b4513;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Secciones generales */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: #f8f6f3;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8b4513;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e2d9 100%);
    padding-top: 80px;
    position: relative;
}

/* Hero Fullscreen con Background Image */
.hero-fullscreen {
    background-image: url('images/fachada.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-left {
    position: absolute;
    top: 120px;
    left: 40px;
    z-index: 2;
    text-align: left;
    max-width: 520px;
    padding: 0;
}

.hero-fullscreen h2 {
    color: #ffffff !important;
    text-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.9),
        1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 4.2rem;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.05;
}

.hero-fullscreen p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 480px;
    font-style: italic;
}

.hero-button-center {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-fullscreen .btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(139, 69, 19, 0.3);
    font-size: 1.15rem;
    padding: 16px 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-fullscreen .btn-primary:hover {
    background: linear-gradient(135deg, #a0522d 0%, #cd853f 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(139, 69, 19, 0.4);
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Badge del hero */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 69, 19, 0.1);
    border: 2px solid #8b4513;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Badge específico para hero fullscreen */
.hero-fullscreen .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero-fullscreen .badge-text {
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #8b4513;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Alojamiento */
.alojamiento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.alojamiento-text h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 2rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.alojamiento-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Habitaciones */
.habitaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Nuevo layout para habitaciones principales */
.habitaciones-principales {
    margin-bottom: 4rem;
}

.subsection-title {
    font-size: 1.8rem;
    color: #8b4513;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.habitaciones-grid-simetrica {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.espacios-comunes {
    margin-top: 3rem;
}

.espacios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.habitacion-grande {
    transform: scale(1);
}

.habitacion-grande img {
    height: 350px;
}

.card-content-compacto {
    padding: 1rem 1.5rem;
    text-align: center;
}

.card-content-compacto h4 {
    color: #8b4513;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.habitacion-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.habitacion-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.habitacion-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(139, 69, 19, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.habitacion-card:hover::after {
    opacity: 1;
}

.habitacion-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.habitacion-grande img {
    height: 350px;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.card-content ul {
    list-style: none;
    margin-top: 1rem;
}

.card-content li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.card-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b4513;
}

/* Servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.servicio-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.servicio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #8b4513, #d2691e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.servicio-item h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Carrusel de Galería */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.carousel-caption h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.carousel-caption p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Botones del carrusel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn svg {
    color: #333;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: white;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sección de experiencias únicas */
/* Zona exterior imágenes destacadas */
.zona-exterior-imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.imagen-destacada {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.imagen-destacada:hover {
    transform: scale(1.02);
}

.imagen-destacada:hover img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.imagen-destacada img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: block;
}

.imagen-destacada h3 {
    color: #8b4513;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0 0 0;
    padding: 0.5rem;
}

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

.experiencia-card {
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    transition: all 0.4s ease;
    border-left: 6px solid #8b4513;
    position: relative;
    overflow: hidden;
}

.experiencia-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
    border-left-width: 8px;
}

.experiencia-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.experiencia-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, #8b4513, #d2691e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.experiencia-card h4 {
    color: #8b4513;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.experiencia-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.instalaciones-incluidas h3 {
    color: #8b4513;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.instalaciones-incluidas h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #8b4513, #d2691e);
    border-radius: 2px;
}

/* Precios */
.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.precio-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.precio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.precio-card.destacado {
    border-color: #8b4513;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.precio-card.destacado:hover {
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.precio-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.precio-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.precio-badge {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.precio-alta .precio-badge {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
}

.precio-popular {
    position: absolute;
    top: -15px;
    right: 0;
    background: #8b4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.precio-valor {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.precio-numero {
    font-size: 3rem;
    font-weight: 900;
    color: #8b4513;
    display: block;
    line-height: 1;
}

.precio-detalle {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}

.precio-incluye {
    list-style: none;
    margin: 0;
    padding: 0;
}

.precio-incluye li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    color: #555;
    border-bottom: 1px solid #f8f9fa;
}

.precio-incluye li:last-child {
    border-bottom: none;
}

.precio-incluye li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.precio-incluye li.precio-extra {
    color: #8b4513;
    font-weight: 600;
}

.precio-incluye li.precio-extra::before {
    content: '⭐';
    color: #8b4513;
}

.precio-info-adicional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 15px;
}

.info-capacidad,
.info-ocupacion,
.info-duracion,
.info-horarios {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 1.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #8b4513;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.precio-nota {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.precio-nota p {
    color: #856404;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Precios simplificados */
.precios-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.precio-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.precio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

.precio-item h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.precio-valor-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.precio-valor-simple .precio {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8b4513;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.precio-valor-simple .detalle {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Opiniones */
.opiniones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.opinion-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.opinion-author {
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.opinion-author strong {
    display: block;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.opinion-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Testimonios */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonio-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #8b4513;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonio-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-info {
    flex: 1;
}

.testimonio-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonio-info span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
}

.testimonio-fecha {
    color: #999;
    font-size: 0.8rem;
    font-style: italic;
}

.testimonio-stars {
    font-size: 1rem;
    color: #ffd700;
    flex-shrink: 0;
}

.testimonio-card p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.testimonio-card p::before {
    content: '\201C';
    font-size: 3rem;
    color: #8b4513;
    position: absolute;
    left: -1rem;
    top: -1rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonios-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 20px;
    color: white;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.stat-numero {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: white;
}

.stat-texto {
    display: flex;
    flex-direction: column;
}

.stat-texto span {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.2;
}

.stat-stars {
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Contacto */
.contacto-ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.contacto-columna-izquierda {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacto-columna-derecha {
    display: flex;
    flex-direction: column;
}

.contacto-tarjeta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    border-left: 4px solid #8b4513;
    transition: all 0.3s ease;
}

.contacto-tarjeta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

.contacto-tarjeta h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.contacto-item {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.contacto-item strong {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contacto-form {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contacto-form h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.2);
}

/* Formulario simplificado */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

/* Checkbox RGPD */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #8b4513;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
    cursor: pointer;
    flex: 1;
}

.link-privacidad {
    color: #8b4513;
    text-decoration: underline;
    font-weight: 500;
}

.link-privacidad:hover {
    color: #6b3410;
}

/* Modal Política de Privacidad */
.modal-privacidad {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-privacidad.active {
    display: flex !important;
}

.modal-privacidad-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-privacidad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #8b4513;
    color: white;
}

.modal-privacidad-header h2 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
}

.modal-privacidad-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-privacidad-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-privacidad-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
}

.modal-privacidad-body h3 {
    color: #8b4513;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.modal-privacidad-body h3:first-child {
    margin-top: 0;
}

.modal-privacidad-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.modal-privacidad-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.modal-privacidad-body li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Enlace footer política privacidad */
.footer-link {
    color: #8b4513;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-enviar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    justify-content: center;
    min-width: 180px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-enviar svg,
.btn-whatsapp svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Información de estancia y precio */
.estancia-info,
.precio-info {
    background-color: #f8f6f3;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.estancia-info span,
.precio-info span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.precio-info {
    margin-bottom: 0.5rem;
}

.precio-info small {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.disponibilidad-indicator {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 1rem;
}

.disponible {
    background-color: #d4edda;
    color: #155724;
}

.no-disponible {
    background-color: #f8d7da;
    color: #721c24;
}

.checking {
    background-color: #fff3cd;
    color: #856404;
}

/* Sección del mapa */
.mapa-section {
    margin-top: 4rem;
    grid-column: 1 / -1;
}

.mapa-section h3 {
    text-align: center;
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.mapa-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mapa-wrapper {
    position: relative;
    width: 200%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mapa-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e2d9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mapa-placeholder:hover {
    background: linear-gradient(135deg, #e8e2d9 0%, #d8d2c9 100%);
}

.mapa-placeholder-content {
    text-align: center;
    padding: 2rem;
}

.mapa-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mapa-placeholder-content h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mapa-placeholder-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-mapa {
    background-color: #8b4513;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mapa:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
}

/* Información del mapa */
.mapa-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-text strong {
    display: block;
    color: #8b4513;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mapa cargado y contenedor real */
.mapa-cargado {
    width: 100%;
    height: 100%;
    border: none;
}

.mapa-container-real {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mapa-overlay-info {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.mapa-marker {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto;
}

.marker-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.marker-text {
    display: flex;
    flex-direction: column;
}

.marker-text strong {
    color: #8b4513;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.marker-text span {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-navegar {
    background: rgba(139, 69, 19, 0.9);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.btn-navegar:hover {
    background: rgba(160, 82, 45, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.btn-navegar svg {
    width: 14px;
    height: 14px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 125px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: none;
    border: none;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section h3,
.footer-section h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8b4513;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-content,
    .hero-image {
        flex: none;
        width: 100%;
    }

    /* Responsive para hero fullscreen */
    .hero-fullscreen {
        background-attachment: scroll;
        min-height: 80vh;
    }

    .hero-fullscreen h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-fullscreen p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content-left {
        position: absolute;
        top: 100px;
        left: 20px;
        max-width: 420px;
        padding: 0;
    }

    .hero-button-center {
        bottom: 60px;
    }

    .hero-fullscreen .btn-primary {
        font-size: 1rem;
        padding: 12px 25px;
    }

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

    .contacto-ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contacto-columna-izquierda {
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-enviar,
    .btn-whatsapp {
        min-width: auto;
        width: 100%;
    }
    
    .mapa-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mapa-wrapper {
        height: 350px;
    }
    
    .mapa-overlay-info {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .mapa-marker {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .marker-icon {
        font-size: 1.3rem;
    }
    
    .btn-navegar {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        align-self: flex-end;
    }
    
    .zona-exterior-imagenes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .imagen-destacada img {
        height: 200px;
    }

    .experiencias-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .precios-grid {
        grid-template-columns: 1fr;
    }
    
    .precios-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .precio-valor-simple .precio {
        font-size: 2rem;
    }
    
    .precio-info-adicional {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .precio-numero {
        font-size: 2.5rem;
    }

    .habitaciones-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive para nuevo layout habitaciones */
    .habitaciones-grid-simetrica {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .espacios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .habitacion-grande img {
        height: 280px;
    }

    .servicios-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .carousel-wrapper {
        height: 450px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }

    .section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

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

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Mobile hero fullscreen */
    .hero-fullscreen h2 {
        font-size: 2.2rem;
        letter-spacing: -0.3px;
    }

    .hero-fullscreen p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-content-left {
        position: absolute;
        top: 80px;
        left: 15px;
        max-width: 320px;
        padding: 0;
    }

    .hero-button-center {
        bottom: 40px;
    }

    .hero-fullscreen .btn-primary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive móvil para habitaciones */
    .habitaciones-grid-simetrica {
        gap: 1rem;
    }
    
    .espacios-grid {
        gap: 1rem;
    }
    
    .habitacion-grande img {
        height: 240px;
    }
    
    .subsection-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }


    .opiniones-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonio-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .testimonio-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonios-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
    }
    
    .stat-numero {
        font-size: 2rem;
    }

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-in {
    animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-fullscreen {
    transition: transform 0.1s ease-out;
}

/* Animación sutil para iconos de servicios */
.servicio-icon {
    animation: float 6s ease-in-out infinite;
    animation-delay: calc(var(--index) * 0.5s);
}

.servicio-item:nth-child(1) .servicio-icon { --index: 0; }
.servicio-item:nth-child(2) .servicio-icon { --index: 1; }
.servicio-item:nth-child(3) .servicio-icon { --index: 2; }
.servicio-item:nth-child(4) .servicio-icon { --index: 3; }
.servicio-item:nth-child(5) .servicio-icon { --index: 4; }
.servicio-item:nth-child(6) .servicio-icon { --index: 5; }
.servicio-item:nth-child(7) .servicio-icon { --index: 6; }
.servicio-item:nth-child(8) .servicio-icon { --index: 7; }

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states mejorados para accesibilidad */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid #8b4513;
    outline-offset: 3px;
    box-shadow: 0 0 0 1px rgba(139, 69, 19, 0.3);
}

/* Focus visible solo para navegación por teclado */
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 3px solid #8b4513;
    outline-offset: 3px;
    box-shadow: 0 0 0 1px rgba(139, 69, 19, 0.3);
}

/* Indicadores de foco para elementos interactivos */
.carousel-btn:focus,
.thumbnail:focus,
.indicator:focus {
    outline: 3px solid #8b4513;
    outline-offset: 2px;
    transform: scale(1.05);
}

.nav-menu a:focus {
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
    margin: -5px -10px;
}

/* Skip link para navegación por teclado */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8b4513;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    z-index: 1001;
    transition: all 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Contraste mejorado para textos pequeños */
.precio-detalle,
.testimonio-fecha,
.info-content p {
    color: #444;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover,
.footer-section a:focus {
    color: #fff;
    text-decoration: underline;
}

/* Estados de hover mejorados */
.habitacion-card,
.servicio-item,
.opinion-card {
    cursor: pointer;
}

/* Placeholder para imágenes que falten */
img {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

img:not([src]),
img[src=""] {
    display: inline-block;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border: 2px dashed #ccc;
}

/* Ventanita Elegante para Política de Privacidad */
.privacy-window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.privacy-window.show {
    display: flex;
}

.privacy-window-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

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

.privacy-window-header {
    background: linear-gradient(135deg, #D4A574, #B8935F);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-window-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.privacy-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.privacy-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.privacy-window-body {
    padding: 25px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
    line-height: 1.6;
    color: #333;
}

.privacy-window-body h4 {
    color: #2C5530;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 5px;
}

.privacy-window-body p {
    margin-bottom: 12px;
    text-align: justify;
}

.privacy-window-body ul {
    margin: 10px 0 15px 20px;
}

.privacy-window-body li {
    margin-bottom: 6px;
}

.privacy-window-body strong {
    color: #D4A574;
}

/* Botón para leer Política de Privacidad */
.btn-privacy {
    background: linear-gradient(135deg, #D4A574, #B8935F);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
    margin-top: 10px;
}

.btn-privacy:hover {
    background: linear-gradient(135deg, #B8935F, #A67F4A);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}


/* Botón WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive para WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}