


    body{
      margin:0;
      min-height:100vh;
      background:url('/img/hero-origen.webp') center center/cover no-repeat;
      display:flex;
      justify-content:center;
      align-items:center;
      padding:-1px;
      font-family:'Montserrat', sans-serif;
      
      
    }

    .main-card{
      width:100%;
      max-width:720px;
      background:#A3472A;
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 20px 60px rgba(0,0,0,.25);
    }

    /* HEADER */

    .top-bar{
      padding:10px 14px;
      border-bottom:1px solid #dddddd;
    }

    .logo{
      text-align:center;
      line-height:1;
    }

    .logo h1{
      margin:0;
      font-size:3rem;
      font-weight:300;
      letter-spacing:8px;
      color:#222;
    }

    .logo span{
      font-size:.52rem;
      letter-spacing:4px;
      color:#555;
    }

    .top-icon{
      text-decoration:none;
      color:#D8B36A;
      font-size:1rem;
      display:flex;
      align-items:center;
      gap:6px;
    }

    /* CONTENT */

    .content{
      padding: 20px;
    }

    .title{
      font-family:'Cormorant Garamond', serif;
      font-size:4rem;
      font-weight:600;
      text-align:center;
      color:#D8B36A;
      margin-bottom:10px;
    }

    .subtitle{
      text-align:center;
      color:#D8B36A;
      font-size:1.1rem;
      margin-bottom: 15px;
    }

    /* GUEST CARDS */

    .guest-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-bottom: 15px;
    }

    .guest-card{
      background:white;      
      border:1px solid #d8d8d8;
      border-radius:18px;
      height:120px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      cursor:pointer;
      transition:.25s;
    }

    .guest-card.active{
      background:#0f0e0e;
      color: #D8B36A;
      border-color:black;
      box-shadow:0 10px 20px rgba(0,0,0,.15);
    }

    .guest-number{
      font-size:2rem;
      font-weight:600;
      line-height:1;
    }

    .guest-text{
      margin-top:10px;
      font-size:.95rem;
      color:#888;
    }

    .guest-card.active .guest-text{
      color:#ddd;
    }

    /* CUSTOM BOX */

    .custom-box{
      background:white;
      border:1px solid #d7d7d7;
      border-radius:18px;
      padding:18px;
      margin-bottom: 30px;
    }

    .custom-title{
      color:#8a8a8a;
      margin-bottom:14px;
      font-size:1rem;
    }

    .counter-box{
      height:68px;
      border:1px solid #d7d7d7;
      border-radius:14px;
      overflow:hidden;
      display:flex;
      align-items:center;
      background:#fafafa;
    }

    .counter-btn{
      width:70px;
      height:100%;
      border:none;
      background:#efefef;
      font-size:2rem;
      color:#555;
      transition:.2s;
    }

    .counter-btn:hover{
      background:#ddd;
    }

    .counter-center{
      flex:1;
      text-align:center;
      line-height:1.2;
    }

    .counter-center h3{
      margin:0;
      font-size:2rem;
      font-weight:600;
      color:#222;
    }

    .counter-center span{
      font-size:.9rem;
      color:#8a8a8a;
    }

    /* BUTTON */

    .btn-continue{
      width:100%;
      border:none;
      background:black;
      color:white;
      height:70px;
      border-radius:16px;
      font-size:1.2rem;
      font-weight:600;
      transition:.3s;
      display:flex;
      justify-content:center;
      align-items:center;
      gap:12px;
    }

    .btn-continue:hover{
      transform:translateY(-2px);
      background:#111;
    }

    /* BOTTOM */

    .bottom{
      border-top:1px solid #d8d8d8;
      padding:18px 24px;
    }

    .progress-wrapper{
      display:flex;
      align-items:center;
      gap:18px;
    }

    .back-btn{
      width:42px;
      height:42px;
      border-radius:50%;
      border:1px solid #222;
      background:transparent;
      font-size:1.4rem;
      display:flex;
      justify-content:center;
      align-items:center;
    }

    .progress{
      height:6px;
      flex:1;
      background:#d9d9d9;
    }

    .progress-bar{
      width:35%;
      background:black;
    }

    .progress-bar-h{
      width:60%;
      background:black;
    }

    .progress-bar-c{
      width:20%;
      background:black;
    }
    

    /* FOOTER */

    .footer{
      background:#ececec;
      text-align:center;
      padding:20px;
      color:#9b9b9b;
      font-size:.95rem;
    }

    .footer strong{
      color:#ff4d73;
    }

/* CALENDARIO */
/* Ajustes específicos para las celdas del calendario dentro del modal */
#calendarBody td {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%; /* Hace que el hover y la selección sean circulares */
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
}

/* Efecto hover suave (solo si no está vacío y no está deshabilitado) */
#calendarBody td:not(:empty):not(.disabled):hover {
  background-color: #f8f9fa; /* Color gris muy claro de Bootstrap */
}

/* Fecha bloqueada/pasada */
#calendarBody td.disabled {
  color: #adb5bd;
  cursor: not-allowed;
}

.modal-body{
  padding: 0rem !important;
}

/* Fecha Seleccionada usando tu color de marca */
#calendarBody td.selected {
  background-color: #574134 !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(87, 65, 52, 0.3);
  transform: scale(1.05); /* Pequeño salto visual */
}

    /* ========================= */
/* FECHA SCREEN */
/* ========================= */

.guest-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid #dddddd;
  padding:10px 18px;
  border-radius:30px;
  color:#666;
  font-weight:500;
  background:white;
}

.date-slider{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding-bottom:10px;
  margin-top:50px;
}



.date-card{
  min-width:110px;
  height:140px;
  border:1px solid #b6efc6;
  border-radius:18px;
  background:white;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  transition:.25s;
  margin: 4px;
}

.date-card:hover{
  transform:translateY(-4px);
}

.date-card.active{
  border:8px solid #3b352f;
  box-shadow:0 10px 30px rgba(66, 50, 50, 0.973);
}

.date-card span{
  color:#000000;
  font-size:1rem;
}

.date-card h3{
  margin:8px 0;
  font-size:2.2rem;
  font-weight:700;
  color:#222;
}

.date-card small{
  color:#999;
  font-size:1rem;
}

.date-progress{
  width:100%;
  height:8px;
  background:#d5d5d5;
  border-radius:20px;
  margin-top:25px;
  overflow:hidden;
}

.date-progress-bar{
  width:62%;
  height:100%;
  background:#8a8a8a;
  border-radius:20px;
}

.calendar-btn{
  border:none;
  background:transparent;
  font-size:1.2rem;
  color:#D8B36A;
  display:inline-flex;
  align-items:center;
  gap:12px;
  transition:.2s;
}

.calendar-btn:hover{
  color:#ebc57b;
}

/*CALENDARIO*/
#calendarBody td {
  cursor: pointer;
  height: 80px; /* Altura fija para que parezca calendario */
  vertical-align: middle;
  transition: background 0.3s;
}

#calendarBody td:hover {
  background-color: #b34b2b;
}

#calendarBody td.selected {
  background-color: #b6561e !important;
  color: white;
  font-weight: bold;
}

#calendarBody td.today {
  border: 2px solid #b34b2b;
}

/* ========================= */
/* SERVICE SCREEN */
/* ========================= */

.service-top-info{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.service-options{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-top:45px;
}

.service-card{
  width:100%;
  height:110px;
  border:1px solid #d8d8d8;
  border-radius:18px;
  background:white;
  font-size:2rem;
  font-weight:600;
  color:#222;
  transition:.25s;
}

.service-card:hover{
  transform:translateY(-3px);
  border-color:#111;
  background:#fafafa;
}

.service-card.active{
  background:black;
  color:white;
  border-color:black;
}

@media(max-width:768px){

  .service-card{
    height:90px;
    font-size:1.6rem;
  }

}


@media(max-width:768px){

  .date-card{
    min-width:95px;
    height:125px;
  }

}

    /* RESPONSIVE */

    @media(max-width:768px){

      .content{
        padding:40px 25px;
      }

      .title{
        font-size:2.8rem;
      }

      .guest-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .logo h1{
        font-size:2rem;
        letter-spacing:5px;
      }

      .logo span{
        font-size:.42rem;
      }

      .btn-continue{
        font-size:1rem;
        height:62px;
      }

    }

    @media(max-width:480px){

      .content{
       padding: 10px 15px;
      }

      .title{
        font-size:2.1rem;
      }

      .guest-card{
        height:100px;
      }

      .guest-number{
        font-size:1.7rem;
      }

      .counter-btn{
        width:55px;
      }
          .info-pill {
        font-size: .82rem;
        padding: 7px 12px;
    }

    }
