/* Estilo para el contenedor de la imagen o video */
  .portfolio-image {
    position: relative;
    width: 100%;
  }
  
  
 /* Contenedor de imagen o video con aspecto 16:9 por defecto */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspecto horizontal: 16:9 */
  }
  
  /* Para videos verticales (reels) */
  .video-container.vertical {
    padding-bottom: 177.78%; /* Aspecto vertical: 9:16 */
  }
  
  /* Estilos para el iframe (video) */
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px; /* Tamaño ligeramente más grande */
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 0 24px rgba(37, 211, 102, 0.5);
    color: white;
    font-size: 32px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-icon:hover {
    color: white !important;
    transform: scale(1.1); /* Aumenta un poco el tamaño */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3), 0 0 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon:active {
    transform: scale(0.95); /* Efecto de clic */
}

.whatsapp-icon:visited {
    color: white;
}
#login-image{
    background-image: url(homepages/beach/images/1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.d-flex {
    display: flex;
  }
  .justify-content-between {
    justify-content: space-between;
  }
  .align-items-center {
    align-items: center;
  }
  .mb-3 {
    margin-bottom: 1rem;
  }
  

/* Footer */
.footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
}

.footer-column h3 {
    font-size: 40px;
    margin-bottom: 10px;
    color: white;
}
.footer-column p {
    color: white;
}

.footer-logo {
    width: 150px; /* Ajusta el tamaño del logo */
    height: auto;
}

/* Redes Sociales */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon a{
    background-color: white !important;
}


.social-icon:hover {
    transform: scale(1.1);
}

/* Estilos para el ícono de Airbnb */
.social-icon.social-airbnb a:hover {
    background-color: #FF5A5F !important;
    color: white !important;
}

.social-icon.social-airbnb a:hover i {
    color: white !important;
}

/* Parte inferior */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
    border-top: 1px solid #444;
    margin-top: 20px;
}

/* Footer Inferior */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
    border-top: 1px solid #444;
    margin-top: 20px;
}
.footer-bottom p{
    color: white;
}

/* Estilo para enlaces en el footer */
.footer-bottom a {
    color: #ffd700; /* Color dorado */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffeb99; /* Dorado más claro al pasar el mouse */
    text-decoration: none;
}

#section-house, #section-beach, #section-restaurant {
    scroll-margin-top: 60px; /* Ajusta el valor según la altura del navbar */
}

/* Sección del Calendario */
#calendario h2, #calendarReadOnly h2{
    color: white !important;
}


#title-calender{
    color: white;
}
#calendarReadOnly th span, #calendarReadOnly td span {
    color: white;
}
.calendar-section {
    padding: 50px 0;
    text-align: center;
}

.calendar-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.calendar-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px; /* Ancho máximo para mantener el diseño */
    height: 600px; /* Altura fija, se puede ajustar según preferencia */
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fff;
}

.calendar-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}
#page-content-calender {
    position: relative;
    background-image: url('/homepages/beach/images/IMG_3755\ \(1\).png'); /* Cambia esto por la URL de tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

/* Capa oscura sobre la imagen */
#page-content-calender::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Sombra oscura semitransparente */
    z-index: 1;
}

/* Ajuste para que el contenido esté encima de la sombra */
#page-content-calender .container {
    position: relative;
    z-index: 2;
}

/* Esta regla aplica un fondo azul a las celdas que contienen eventos */
.fc-day.has-event {
    background-color: #7bcefc !important;
    /* Puedes ajustar otros estilos, por ejemplo: */
    color: white;
  }
  .fc-event, .fc-event .fc-title {
    font-size: 14px !important;
    color: white;
    text-align: center;
}


.container #title-calender{
   font-size: 70px;
   text-align: center;
   margin-bottom: 30px;
}

.fc-center h2{ text-transform: capitalize; }

/* --- Estilos Generales --- */
.brochure-imagen-main {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
#section-hogar h2, #section-cocina h2, #section-sala h2, #section-piscina h2, #section-zona h2{
    font-size: 68px;
}

#section-precios h2 {
    text-align: center;
    margin-bottom: 40px; /* Añadir margen inferior al título */
}

/* Estilos para la sección de precios mejorada */
#section-precios {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f9f9f9; /* Un fondo claro para la sección */
}

#container-pricing .plan {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#container-pricing .plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#container-pricing .plan-list ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

#container-pricing .plan-list li {
    padding: 12px 0;
    font-size: 17px; /* Tamaño de fuente ligeramente mayor para mejor legibilidad */
    color: #555;
    display: flex; /* Para alinear íconos y texto */
    align-items: center; /* Centrar verticalmente íconos y texto */
}

#container-pricing .plan-list li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

#container-pricing .plan-list li i {
    margin-right: 15px; /* Espacio entre ícono y texto */
    color: #20c997; /* Color distintivo para los íconos */
    font-size: 20px; /* Tamaño del ícono */
}

#container-pricing .plan-list li strong {
    color: #333;
    margin-left: auto; /* Empuja el precio a la derecha */
    font-size: 18px;
}

#container-pricing .plan-button {
    text-align: center; /* Centrar el botón */
    margin-top: 20px;
}

#container-pricing .plan-button .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px; /* Botón más redondeado */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#container-pricing .plan-button .btn:hover {
    transform: translateY(-2px);
}


/* Estilos para la sección de notas */
#container-pricing .notes {
    background-color: #e9ecef; /* Fondo ligeramente diferente para las notas */
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px; /* Espacio sobre la sección de notas */
    text-align: left; /* Alinear texto a la izquierda para notas */
}

#container-pricing .notes h4 {
    font-size: 20px;
    color: #343a40;
    margin-bottom: 15px;
    font-weight: 600;
}

#container-pricing .notes ul {
    list-style: none; /* Quitar viñetas por defecto */
    padding-left: 0; /* Quitar padding por defecto */
    margin-bottom: 15px;
}

#container-pricing .notes li {
    font-size: 15px;
    color: #495057;
    margin-bottom: 8px; /* Espacio entre elementos de la lista */
    padding-left: 20px; /* Espacio para el ícono personalizado */
    position: relative;
}

#container-pricing .notes li::before {
    content: "\f058"; /* Código para un ícono de FontAwesome (check-circle) */
    font-family: "Font Awesome 5 Free"; /* Asegúrate de que FontAwesome esté cargado */
    font-weight: 900; /* Para íconos sólidos de FA */
    position: absolute;
    left: 0;
    top: 2px; /* Ajuste vertical fino */
    color: #20c997; /* Color del ícono */
}


#container-pricing .notes p {
    font-size: 15px;
    color: #495057;
    margin-bottom: 0;
}

#container-pricing .notes hr.space.xs {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #ced4da;
}

/* Ajustes para el título de la sección de precios para que no sea tan grande si interfiere con el diseño */
#section-precios .page-title h2.font-herr-von-muellerhoff {
    font-size: 80px; /* Reducir un poco si es necesario */
    /* Considerar quitar white-space: nowrap; si causa problemas de desbordamiento */
}