.booking-container {
    width: 100%;
    max-width: 1200px;
    padding: 30px;
    background-color: #ffffff00;
    border-radius: 15px;
    position: fixed;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: -35px !important;
  }
  
  .booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .booking-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background-color: #0f1a17;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .booking-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  }
  
  .date-picker, .guests-picker, .promo-code {
    padding: 8px 15px;
    position: relative;
    align-content: center;
    align-items: center;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 0;
  }
  
  .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    z-index: 2;
  }
  
  .date-picker {
    display: flex;
    align-items: center;
  }
  
  input, select{
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    background-color: white;
    color: #000000;
    transition: all 0.3s ease;
  }
  
  .icon-input {
    padding-left: 45px;
  }
  
  input:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(233, 233, 25, 0.5);
  }
  
  input::placeholder {
    color: #2d2d2d;
  }
  
  select, input {
    cursor: pointer;
    color: #333;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  }
  
  .arrow-empty {
    margin: 0 15px;
    color: #ffffff;
    font-size: 20px;
  }
  
  .reserve-button {
    flex: 0 0 auto;
    padding: 10px 15px;
  }
  
  .reserve-button button {
    padding: 14px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    background-color: #b8942e;
    color: #333;
    transition: all 0.3s ease;
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 16px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: none;
    text-transform: uppercase;
  }
  
  .reserve-button button:hover {
    background: #b8942e;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 233, 25, 0.5);
  }
  
  .reserve-button button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(233, 233, 25, 0.4);
  }
  
  .resident-option, .advantages {
    margin-top: 25px;
    display: flex;
    align-items: center;
    color: white;
    transition: all 0.3s;
  }
  
  .resident-option label, .advantages span {
    margin-left: 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  
  .circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .circle:hover {
    transform: scale(1.1);
    border-color: #e9e919;
  }
  
  .circle.checked {
    background-color: #e9e919;
    border-color: #e9e919;
  }
  
  .circle.checked::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    top: 4px;
    left: 4px;
  }
  
  .star-icon {
    color: #e9e919;
    font-size: 22px;
    margin-right: 5px;
  }
  
  .advantages:hover .star-icon {
    transform: rotate(360deg) scale(1.2);
    transition: all 0.5s ease;
  }
  
  .advantages:hover span {
    text-decoration: none;
    color: #e9e919;
  }
  
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1040;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }
  
  .modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
  }
  
  .modal h2 {
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
  }
  
  .modal h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e9e919;
  }
  
  .modal-close {
    margin-top: 30px;
    padding: 12px 30px;
    background: linear-gradient(145deg, #fcfca4, #e9e919);
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
  
  .modal-close:hover {
    background: linear-gradient(145deg, #e9e919, #fcfca4);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 233, 25, 0.3);
  }
  
  .validation-message {
    color: #e9e919;
    font-size: 14px;
    margin-top: 8px;
    display: none;
    position: absolute;
    bottom: -25px;
    left: 20px;
    font-weight: 500;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    text-align: left;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  .benefit-item:hover {
    background-color: #f9f9f9;
  }
  
  .benefit-icon {
    margin-right: 15px;
    color: #e9e919;
    font-size: 20px;
  }
  
  #reservation-details {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
  }
  
  .reservation-title {
    font-weight: 600;
    color: #666;
    width: 150px;
    display: inline-block;
  }
  
  .flatpickr-calendar {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    border-radius: 10px !important;
  }
  
  .flatpickr-day.selected {
    background: #e9e919 !important;
    border-color: #e9e919 !important;
    color: black !important;
  }
  
  .success-message {
    color: #28a745;
    font-weight: 600;
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #e9ecef;
  }
  
  @media (max-width: 1100px) {
    .booking-form {
      flex-direction: column;
      border-radius: 20px;
      padding: 20px;
    }

    .booking-container {
      display: none;
    }
    
    .date-picker, .guests-picker, .promo-code, .reserve-button {
      margin: 10px 0;
    }
    
    .date-picker {
      flex-direction: column;
    }
    
    .arrow-empty {
      transform: rotate(90deg);
      margin: 10px 0;
    }
    
    .reserve-button button {
      margin-top: 15px;
    }
    
    .validation-message {
      position: static;
      margin-top: 5px;
      margin-bottom: 10px;
    }
  }

  .show-form-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      padding: 12px 25px;
      background-color: #b8942e;
      border-radius: 25px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      opacity: 0;
      transition: all 0.3s ease;
  }
  
  .show-form-button.visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
  }
  
  .show-form-button:hover {
      background-color: #e9e919;
      transform: translateX(-50%) translateY(-5px);
  }
  
  .show-form-button i {
      color: #000;
      font-size: 18px;
  }
  
  .show-form-button span {
      color: #000;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 1px;
  }
  
  .booking-container {
      transition: transform 0.5s ease, opacity 0.5s ease;
      transform: translateY(0);
      opacity: 1;
      bottom: -35px !important;
  }
  
  .booking-container.hidden {
      transform: translateY(100%);
      opacity: 0;
  }
  
  .close-form-button {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
      background-color: #b8942e;
      border-radius: 50%;
      display: none;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 1010;
  }
  
  .close-form-button i {
      color: #000;
      font-size: 16px;
  }
  
  /* Estilos específicos para móviles */
  @media (max-width: 1100px) {
      .show-form-button {
          opacity: 1;
          transform: translateX(-50%) translateY(0);
          position: fixed;
          bottom: 20px;
          left: 50%;
          padding: 14px 30px;
          z-index: 999;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      }
      
      .booking-container {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
          max-width: 100%;
          background-color: rgba(15, 26, 23, 0.95);
          z-index: 1000;
          padding: 20px;
          display: none;
          overflow-y: auto;
          transition: all 0.3s ease;
      }
      
      .booking-container.mobile-visible {
          display: flex;
          opacity: 1;
          animation: fadeIn 0.3s ease;
      }
      
      .booking-form {
          width: 100%;
          max-width: 500px;
          margin: auto;
          padding: 30px 20px;
          background-color: #0f1a17;
          border-radius: 20px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
          position: relative;
      }
      
      .close-form-button {
          display: flex;
      }
      
      @keyframes fadeIn {
          from {
              opacity: 0;
          }
          to {
              opacity: 1;
          }
      }
  }