@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');




/*.card-header2 {*/
/*    text-align: center;*/
/*}*/

/*.card-header2 img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    max-width: 100%;*/
/*}*/


/*@media (max-width: 768px) {*/
/*    .card-header2 img {*/
/*        width: 100%; */
/*    }*/
    
/*    body {*/
/*    font-size: 16px;*/
/*  }*/
/*}*/



/*#navbar-container {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 80px; */
/*    z-index: 1000; */
/*    background-color: white; */
/*    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
/*}*/

/* Compensar el navbar para que no tape la portada */
/*body {*/
/*  padding-top: 241.97px; */
/*}*/
/* ------------------------------------------------------------------------------- */
/* Estilos de los titulos */
.avisos {
  text-align: left;
  margin: 10px 0;
}

.avisos h5 {
    font-size: 2rem;
    font-weight: 600;
    color: black;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    animation: fadeInLeft 1s ease-out;
    margin-left: 80px;
    font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.avisos h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 4px;
    background-color: #611232;
    border-radius: 2px;
}

/*------------------------------------------------------------------------------- */




/* Ocultar imagen en tablet y teléfono */
/*@media (max-width: 991px) {*/
/*  .container-fluid2 {*/
/*    display: none;*/
/*  }*/
/*}*/




/* ============================
   CARRUSEL FIJO 1024x368
============================ */
.slider-frame {
  position: relative;
  width: 1024px;       /* Ancho fijo */
  height: 368px;       /* Alto fijo */
  overflow: hidden;
  margin: 40px auto;   /* Centrado y con margen superior */
  border-radius: 5px; /* (opcional) esquinas redondeadas */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.slider-frame ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.slider-frame ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-frame ul li.active {
  opacity: 1;
}

.slider-frame ul li img {
  width: 1024px;   /* Tamaño fijo */
  height: 368px;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
}

/* ============================
   OCULTAR EN MÓVILES
============================ */
@media (max-width: 767px) {
  .slider-frame {
    display: none;
  }
}

   
/* ============= 
   == Botones ==
   ============= */
.button-container {
    display: flex;
    gap: 30px; /* Espaciado entre botones */
    justify-content: center; /* Centra los botones */
    padding-top: 10px;
  }

  .button {
    display: flex;
    flex-direction: column; /* Hace que el ícono esté arriba del texto */
    align-items: center; /* Centra el contenido */
    justify-content: center;
    width: 200px;
    height: 90px;
    font-size: 18px;
    color: white;
    border: 2px solid #611232;
    border-radius: 20px;
    background-color: #611232;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
  }

  .button i {
    margin-bottom: 5px; /* Espacio entre el ícono y el texto */
  }

  .button:hover {
    background-color: white;
    color: #611232;
    transform: scale(1.05);
  }

  .button:active {
    transform: scale(1);
  }

  .button a {
    text-decoration: none;
  }

  .button h6 {
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  }

/* -------------------------------------- 
   -- Botones cuando estan en telefono -- 
   -------------------------------------- */
@media (max-width: 768px) {
  .button-container {
    flex-wrap: wrap; /* Permite que bajen a la siguiente línea */
    gap: 15px; /* Reduce el espacio */
  }

  .button {
    width: 45%; /* Dos botones por fila */
    height: 70px; /* Más pequeños */
    font-size: 14px; /* Texto más pequeño */
  }

  .button i {
    font-size: 1.2em; /* Iconos más pequeños */
  }
}

@media (max-width: 480px) {
  .button {
    width: 80%; /* Uno por fila en pantallas muy pequeñas */
    height: 65px;
  }
}

  
  
  
  
  
  /* -------------------- */
  /* -- redes sociales -- */
  /* -------------------- */
  /* Contenedor principal */
  .social-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      width: 90%;
      max-width: 1200px;
      margin: 30px auto;
  }

  /* Cada tarjeta de red social */
  .social-card {
      background: #f8f9fa;
      border-radius: 15px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      padding: 15px;
      text-align: center;
      width: 320px;
  }

  /* Títulos */
  .social-card h3 {
      color: #611232;
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: bold;
      font-family: "Montserrat", serif;
      font-optical-sizing: auto;
      font-weight: 500;
      font-style: normal;
  }

  /* Instagram */
  .insta-widget {
      width: 100%;
      height: 450px;
      border: none;
      border-radius: 12px;
  }
  
  /* ------------------------------------------------------------------------------------------------------ */
  /* NOTICIAS */
  /* From Uiverse.io by alexmaracinaru */
  /* Contenedor principal centrado */
  .news-header {
    text-align: center;  /* Centra el título de las noticias */
    margin-bottom: 30px;  /* Espacio debajo del título */
}
.news-header h2 {
    font-size: 2em; /* Tamaño grande para el título */
    font-weight: 700; /* Negrita */
    color: rgb(63, 121, 230); /* Color similar al de la categoría */
    margin: 0;  /* Elimina el margen por defecto */
}
.news-container {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Asegura que todas las tarjetas tengan la misma altura */gap: 30px;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}
/* Tarjeta de noticia */
.card {
    width: 300px;
    /*height:700px;  Se define una altura fija para todas */
    background: white;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: scale(1.05);
}
.card-image {
    background-color: rgb(236, 236, 236);
    width: 100%;
    height: 200px; /* Tamaño fijo */
    border-radius: 10px 10px 0 0;
    overflow: hidden; /* Asegura que la imagen no sobresalga */
}
.noticia {
    width: 100%;  /* Ajusta la imagen al 100% del contenedor */
    height: 100%; /* Asegura que la imagen tenga la misma altura que el contenedor */
    object-fit: cover; /* Hace que la imagen cubra todo el espacio sin deformarse */
}
.category {
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    color: #611232;
    padding: 12px 10px 0;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.heading {
    font-weight: 700;
    font-size: 1em; /* Ajustado a un tamaño razonable */
    color: rgb(88, 87, 87);
    padding: 10px;
    flex-grow: 1;
    display: block;
    overflow: hidden; /* Asegura que no se desborde */
    white-space: normal; /* Asegura que el texto pueda saltar de línea */
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

}

.author {
    color: gray;
    font-weight: 400;
    font-size: 12px;
    padding-top: 15px;
}

.name {
    font-weight: 600;
}


/*#navbar-container {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 80px;*/
/*  z-index: 1000; */
/*  background-color: white;*/
/*  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
/*}*/

/* Compensar el navbar para que no tape la portada */



/*CLIMA*/

.clima-centro {
  display: flex;
  justify-content: center;
  align-items: center;
}


.tarjeta-contenedor {
      width: fit-content;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      display: flex;
    }

    .tarjeta-clima {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      padding: 20px 10px;
      border-radius: 10px;
      backdrop-filter: blur(30px);
      background-color: rgba(65, 65, 65, 0.308);
      border: 1px solid rgba(255, 255, 255, 0.089);
      cursor: pointer;
    }

    .ciudad {
      font-weight: 700;
      font-size: 0.9em;
      letter-spacing: 1.2px;
      color: white;
    }

    .condicion {
      font-weight: 500;
      font-size: 0.7em;
      letter-spacing: 1.2px;
      color: white;
    }

    .icono-clima {
      width: 60px;
      height: 60px;
    }

    .fecha {
      font-size: 1.8em;
      color: white;
    }

    .contenedor-minmax {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .minimo,
    .maximo {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      padding: 0px 20px;
      gap: 4px;
    }

    .maximo {
      align-items: flex-start;
      border-left: 2px solid white;
    }

    .titulo-min,
    .titulo-max {
      font-size: 0.7em;
      font-weight: 600;
      color: white;
    }

    .temp-min,
    .temp-max {
      font-size: 0.6em;
      font-weight: 500;
      color: white;
    }

    .tarjeta-contenedor::before {
      width: 100px;
      height: 100px;
      content: "";
      position: absolute;
      background-color: rgb(144, 161, 255);
      z-index: -1;
      border-radius: 50%;
      left: 100px;
      top: 50px;
      transition: all 1s;
    }

    .tarjeta-contenedor:hover::before {
      transform: translate(-50px, 50px);
    }



/* Contenedor horizontal responsivo */
.contenido-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Para que tanto el texto como el formulario se ajusten correctamente */
.section-booking-table,
.form-contacto {
  flex: 1;
  min-width: 320px; /* Ajuste mínimo en móvil */
}


















/* ======================================================
   FIX RESPONSIVE + DOS BUZONES VISUALES
====================================================== */

/* CONTENEDOR GENERAL */
.nm {
  padding: 100px 60px;
}

@media (max-width: 768px) {
  .nm {
    padding: 30px 15px;
  }
}

/* HEADER GENERAL */
.buzon-header {
  text-align: center;
  margin-bottom: 60px;
}

.buzon-header h2 {
  font-size: 32px;
  font-weight: 600;
}

.buzon-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}

/* CONTENIDO HORIZONTAL */
.contenido-horizontal {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contenido-horizontal {
    flex-direction: column;
    align-items: center;
  }
}

/* TARJETAS DE BUZÓN */
.buzon-participacion,
.buzon-denuncias {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* COLORES DIFERENTES */
.buzon-participacion {
  border-top: 8px solid #2f7d5a;
}

.buzon-denuncias {
  border-top: 8px solid #691c32;
}

/* AJUSTE TARJETAS EN MÓVIL */
@media (max-width: 768px) {
  .buzon-participacion,
  .buzon-denuncias {
    padding: 25px 20px;
  }
}

/* FORMULARIO */
.form-contacto {
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
}

/* INPUTS FULL WIDTH */
.form-contacto input,
.form-contacto textarea,
.form-contacto select {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border-radius: 25px !important;
  margin-bottom: 12px;
  background-color: #fff2e5;
  border: 2px solid #f1deca;
  outline: none;
  font-family: "Montserrat", serif;
}

/* PLACEHOLDERS */
.form-contacto input::placeholder,
.form-contacto textarea::placeholder {
  color: #d9b38d;
}

/* LABELS */
.form-contacto label {
  color: #283629;
  font-weight: 600;
  margin-bottom: 8px;
}

/* SELECT */
.form-contacto select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23c7a17a' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}

/* TEXTO PRIVACIDAD */
.form-contacto-txt {
  margin: 20px 0 30px;
  display: flex;
  justify-content: center;
}

.form-contacto-txt a {
  color: #611232 !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* BOTÓN */
.btn_enviar {
  width: 100%;
  font-size: 16px;
  color: #ffffff;
  border: 0;
  border-radius: 25px;
  background-color: #c7a17a !important;
  box-shadow: 0 0 20px rgba(249, 202, 154, 1);
  cursor: pointer;
  padding: 14px;
}

/* BOTÓN GOOGLE FORM */
.btn-formulario {
  display: inline-block;
  background-color: #2f7d5a;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-formulario:hover {
  background-color: #256548;
  transform: translateY(-2px);
}

.btn_enviar:hover {
  background-color: #b8956f !important;
}

/* TITULOS Y TEXTO */
.nm h2,
.nm h5,
.nm p,
.schedules h3 {
  text-align: center;
  font-family: "Montserrat", serif;
}

/* =========================================
   CENTRAR LOS DOS BUZONES JUNTOS
========================================= */

/* Limitar ancho del conjunto */
.contenido-horizontal {
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

/* En pantallas grandes que no se estiren */
@media (min-width: 1400px) {
  .contenido-horizontal {
    max-width: 1050px;
  }
}

/* ======================================================
   FIN DE BUZON
====================================================== */








.news-container .card {
  display: none; /* Ocultamos todas al inicio */
  margin-bottom: 20px;
}

.ver-mas-container {
  text-align: center;
  margin-top: 20px;
}

.ver-mas-btn {
  appearance: none;
  background-color: transparent;
  border: 0.125em solid #691c32; /* borde color principal */
  border-radius: 0.9375em;
  box-sizing: border-box;
  color: #691c32; /* texto color principal */
  cursor: pointer;
  display: inline-block;
  font-family: "Montserrat", sans-serif; /* fuente actualizada */
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: normal;
  margin: 0;
  min-height: 3.75em;
  min-width: 0;
  outline: none;
  padding: 1em 2.3em;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.ver-mas-btn:disabled {
  background-color: rgb(199, 199, 199);
  border-color: rgb(199, 199, 199);
  color: gray;
}

.ver-mas-btn:disabled:hover {
  background-color: #BC955B; /* hover cuando está deshabilitado */
  border-color: #BC955B;
  color: white;
  cursor: not-allowed;
  transform: translateY(0px);
  box-shadow: none;
}

.ver-mas-btn:hover {
  color: #fff;
  background-color: #BC955B; /* hover normal */
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
}

.ver-mas-btn:active {
  box-shadow: none;
  transform: translateY(0);
}




