      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: Arial, sans-serif;
        color: #333;
        background: #f5f7fa;
      }

      .barra-nav {
        background: #ffffff;
        padding: 0 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      .logo {
        text-decoration: none;
        color: #333;
        display: flex;
        gap: 10px;
      }

      .logo span {
        font-weight: bold;
        font-size: 24px;
      }

      .menu-nav {
        display: flex;
        list-style: none;
        gap: 10px;
        align-items: center;
      }

      .menu-nav a {
        text-decoration: none;
        color: #a8b3c1;
        font-size: 15px;
        transition: color 0.3s;
      }


      .btn-reservar-ahora {
        background: #4a6cf7;
        color: white !important;
        padding: 10px 24px;
        border-radius: 6px;
        font-weight: 500;
      }

      .seccion-hero {
        background: linear-gradient(135deg, #e8f0f8 0%, #dce9f5 100%);
        padding: 80px 40px;
      }

      .contenido-hero {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .etiqueta {
        display: inline-block;
        background: #d4e3f7;
        color: #3b5998;
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 24px;
      }

      .titulo-hero {
        font-size: 48px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 24px;
        color: #1a1a1a;
      }

      .titulo-hero .marca {
        color: #4a6cf7;
      }

      .descripcion-hero {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 32px;
      }

      .botones-hero {
        display: flex;
        gap: 16px;
      }

      .btn-primario {
        background: #4a6cf7;
        color: white;
        padding: 14px 36px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
      }

      .btn-secundario {
        background: transparent;
        color: #666;
        padding: 14px 36px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
      }

      .imagen-hero {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      }

      .imagen-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .estadisticas {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 60px;
      }

      .item-estadistica {
        text-align: left;
      }

      .numero-estadistica {
        font-size: 42px;
        font-weight: 700;
        color: #4a6cf7;
        margin-bottom: 8px;
      }

      .label-estadistica {
        font-size: 15px;
        color: #7890a8;
      }

      .seccion-busqueda {
        max-width: 1200px;
        margin: -60px auto 80px;
        padding: 0 40px;
        position: relative;
        z-index: 10;
      }

      .tarjeta-busqueda {
        background: white;
        padding: 32px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        display: grid;
        grid-template-columns: repeat(4, 1fr) auto;
        gap: 20px;
        align-items: end;
      }

      .grupo-formulario {
        display: flex;
        flex-direction: column;
      }

      .grupo-formulario label {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
      }

      .grupo-formulario input {
        padding: 12px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 14px;
        background: #f8f9fa;
        cursor: pointer;
      }

      .grupo-formulario select{
        padding: 12px 16px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 14px;
        background: #f8f9fa;
        cursor: pointer;
      }

      .btn-buscar {
        background: #4a6cf7;
        color: white;
        padding: 14px 32px;
        border: none;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        height: 46px;
      }

      .caracteristicas {
        max-width: 1200px;
        margin: 0 auto 80px;
        padding: 0 40px;
      }

      .titulo-seccion {
        text-align: center;
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #1a1a1a;
      }

      .subtitulo-seccion {
        text-align: center;
        font-size: 16px;
        color: #666;
        margin-bottom: 60px;
      }

      .grid-caracteristicas {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
      }

      .tarjeta-caracteristica {
        background: white;
        padding: 36px 28px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        text-align: left;
      }

      .icono-caracteristica {
        width: 56px;
        height: 56px;
        background: #e8f0fd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 24px;
      }

      .titulo-caracteristica {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #1a1a1a;
      }

      .descripcion-caracteristica {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
      }