:root {
    --primary: #f0abfc;     /* Magenta eléctrico para acciones principales */
    --text: #f1f5f9;         /* Blanco hueso para máxima legibilidad */
    --bg-dark: #020617;      /* Negro cósmico para el fondo principal */
    --bg-soft: #0f172a;      /* Azul noche para fondos secundarios */
    --card-bg: #1e293b;      /* Gris pizarra para el fondo de las tarjetas */
    --card-border: #334155;  /* Gris azulado para los bordes */
    --highlight: #22d3ee;    /* Cian vibrante para acentos y enlaces */
  }
  
  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg-dark);
    animation: fadeInBody 1s ease-in;
  }
  
  @keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  a {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  a:hover {
    background-color: #b95849;
    transform: scale(1.05);
  }
  
  header {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .carousel {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 15s infinite;
  }
  
  .carousel img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    flex-shrink: 0;
    filter: brightness(0.7);
  }
  
  @keyframes slide {
    0%, 33% { transform: translateX(0%); }
    33.1%, 66% { transform: translateX(-100%); }
    66.1%, 100% { transform: translateX(-200%); }
  }
  
  .header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    text-shadow: 0 0 12px rgba(0,0,0,0.85);
  }
  
  header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out forwards;
  }
  
  header p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease-out forwards;
  }
  
  .cta-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 14px 28px;
    background: var(--highlight);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
    animation: fadeInUp 1.4s ease-out forwards;
  }
  
  .cta-buttons a:hover {
    background: #b95849;
  }
  
  section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 30px auto;
    background-color: var(--bg-soft);
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSection 1s ease-out forwards;
  }
  
  @keyframes fadeInSection {
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text);
    font-size: 1.9rem;
    animation: fadeInUp 1s ease-out forwards;
  }
  
  .features, .amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
  }
  
  /* --- ESTILOS MODIFICADOS PARA LAS TARJETAS --- */
  
  .feature, .amenity {
    padding: 20px;
    border-left: 4px solid var(--highlight);
    border-radius: 10px;
    box-sizing: border-box;
    width: 100%;
    animation: fadeInCard 0.6s ease forwards;
    color: var(--text); /* Aseguramos color de texto */
    transition: transform 0.2s ease;
  }
  .feature:hover, .amenity:hover {
      transform: translateY(-3px);
  }
  
  .feature:nth-child(1) { animation-delay: 0.1s; }
  .feature:nth-child(2) { animation-delay: 0.2s; }
  .feature:nth-child(3) { animation-delay: 0.3s; }
  .feature:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes fadeInCard {
    to { opacity: 1; transform: translateY(0); }
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
  }
  
  .gallery-item {
    text-align: center;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInCard 0.8s ease forwards;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.7);
  }
  
  .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.03);
  }
  
  .gallery-item p {
    color: #ddd;
    font-size: 0.95rem;
    padding: 10px 15px 15px;
    margin: 0;
  }
  
  .testimonials {
    padding: 20px 10px 10px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  .reviews blockquote {
    padding: 14px 16px;
    margin: 0;
    font-style: italic;
    border-left: 4px solid var(--highlight);
    border-radius: 8px;
    width: 260px;
    color: var(--text);
    position: relative;
    transition: transform 0.2s ease;
  }
  
  .reviews blockquote:hover {
    transform: translateY(-3px);
  }
  
  /* --- NUEVO ESTILO: Glassmorphism para Tarjetas --- */
  .card-glass {
    background: rgba(30, 41, 59, 0.55); /* Fondo semitransparente */
    backdrop-filter: blur(12px);         /* El efecto de desenfoque */
    -webkit-backdrop-filter: blur(12px); /* Soporte para Safari */
    border: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  }
  
  .stars {
    color: gold;
    font-size: 1.1rem;
    margin-top: 8px;
    letter-spacing: 1px;
  }
  
  .section-title {
    text-align: center;
    color: var(--text);
    font-size: 2rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out forwards;
  }
  
  .cta-final {
    text-align: center;
    background: var(--card-bg);
    color: white;
    padding: 40px 20px;
    border-top: 8px solid #60a5fa;
    animation: fadeInUp 1s ease-out forwards;
  }
  
  .cta-final a {
    background: white;
    color: var(--card-bg);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta-final a:hover {
    background-color: #f2f2f2;
    transform: scale(1.05);
  }
  
  footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    background: #0d0d0d;
    color: #888;
    animation: fadeInUp 1s ease-out forwards;
  }
  
  .whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    color: white;
    transition: transform 0.3s ease;
  }
  
  .whatsapp:hover {
    transform: scale(1.1);
  }