@charset "UTF-8";
.btn-secondary, .btn-hero {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/*
| Rol                 | Variable            |
| ------------------- | ------------------- |
| Fondo general       | `$color-bg-general` |
| Fondo claro / cards | `$color-bg-paper`   |
| Texto principal     | `$color-text-main`  |
| Azul marca          | `$color-brand-navy` |
| Dorado UI           | `$color-gold-ui`    |
| Dorado marca        | `$color-gold-brand` |
| Dorado profundo     | `$color-gold-deep`  |
*/
/****** header layout *****************************************/
/* reset y generales ********************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f4eee6;
  color: #1f2a36;
  scroll-behavior: smooth;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* titulos */
h1, h2, h3 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

p {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
  text-decoration: none;
  color: #1f2a36;
}

/* header con imagen de fondo */
.index-header {
  background: url("../img/backgroundHeroEdificio.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 95vh;
  background-position-x: 100%;
  background-position-y: -20%;
}

.logotipo {
  width: 15rem;
  max-width: 100%;
  min-width: 3rem;
  height: auto;
}

/* contenedor para la descripcion del sitio */
.contenedor-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 80%;
  max-height: 80%;
  padding-top: 3rem;
  padding-left: 5rem;
  row-gap: 3em;
  /* espacio para navbar fija */
  margin-top: 100px;
}

.contenedor-hero-fondoOscuro {
  background-color: rgba(0, 0, 0, 0.4); /* Fondo negro semitransparente */
}

.hero-tituloSitio {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  font-weight: 600;
  color: #fdfaf3;
  width: 60%;
  margin-top: 0.5rem;
}

.hero-subtitulo {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  width: 50%;
  color: #fff;
}

.btn-hero {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #304a6f;
  color: #fdfaf3;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.8rem;
  border-radius: 10px;
  border: 2px solid #d6b36a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-hero:hover {
  transform: translateY(-1px);
  border-color: #b8a77a;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* bootstrap navbar personalizada color idem footer */
.custom-navbar {
  background-color: #304a6f !important;
  align-items: flex-end;
  text-align: right;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  /* link activo navbar */
}
.custom-navbar .nav-link[aria-current=page] {
  color: #b8a77a !important;
}
.custom-navbar a {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff !important;
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
}
.custom-navbar a:hover {
  color: #b8a77a;
  text-decoration: none;
  text-shadow: 0 0 5px #b8a77a;
}

.navbar-toggler {
  border: none;
}

/* pone las rayitas del menu hamburguesa en blanco */
.navbar-toggler-icon {
  filter: invert(1);
}

/* navbar links a la derecha para desktop */
.navbar-nav {
  margin-left: auto;
  /* banderitas de idioma */
}
.navbar-nav .nav-item:last-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.2rem; /* pequeño respiro respecto a FAQ */
}
.navbar-nav .nav-item:last-child img {
  height: 20px;
  width: auto;
}

/****** fin header layout *****************************************/
/****** main layout *****************************************/
.btn-secondary {
  background-color: #a68458;
  color: #fdfaf3;
  text-shadow: 2px 2px 2px #1f2a36;
  padding: 0.6rem 1.6rem;
  border: 2px solid #b8a77a;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-secondary:hover {
  background-color: #b8a77a;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contenedor-principal-main {
  padding-top: 8rem;
  padding-bottom: 2.5rem;
}

.logo-mediano {
  width: 2rem;
}

.logo-mini {
  width: 1.5rem;
  padding: 0;
  margin: 0;
}

/* titulo con lineas degrade (usa flexbox para alinear texto y lineas decorativas) */
.titulo-principal {
  display: flex;
  flex-direction: row;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #1f2a36;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  /* Línea izquierda */
}
.titulo-principal::before {
  content: "";
  width: 10rem;
  height: 2px;
  background: linear-gradient(to right, transparent, #b8a77a);
}
.titulo-principal {
  /* Línea derecha */
}
.titulo-principal::after {
  content: "";
  width: 10rem;
  height: 2px;
  background: linear-gradient(to left, transparent, #b8a77a);
}

.titulo-secundario {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

/* cards ---------------------------------------------------------------------*/
.grilla-main-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tour-card {
  display: flex;
  flex-direction: column;
  background-color: #fdfaf3;
  border-radius: 20px;
  padding-bottom: 0rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.tour-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.tour-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}
.tour-card p {
  margin: 1rem;
}

.card-image {
  position: relative;
  overflow: hidden;
  /* borde redondondeado solo arriba */
  border-radius: 20px 20px 0 0;
  /* degrade */
}
.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253, 250, 243, 0) 55%, rgb(253, 250, 243) 100%);
  pointer-events: none;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  padding: 1.4rem 1.6rem 1.6rem;
}
.card-content .btn-secondary {
  margin-top: auto;
}

/* bootstrap acordeon personalizado --------------------------------------- */
.section-faq {
  max-width: 90%;
  margin: 0 auto;
}
.section-faq .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #b8a77a;
}
.section-faq .accordion-button {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1.2rem 0;
  background-color: transparent;
  color: #1f2a36;
}
.section-faq .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.section-faq .accordion-button:focus {
  box-shadow: none; /* saca el color azul del borde */
  border-color: transparent;
}
.section-faq .accordion-body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0.5rem 0 1.2rem;
  color: #1f2a36;
}

/* carrousel bootstrap ************************/
.carousel {
  margin: 3rem auto;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-item img {
  height: 60vh;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 5;
}

/* paginas detalle de tours */
.contenedor-texto-tours {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin: 2rem auto;
}
.contenedor-texto-tours h2 {
  margin-top: 0.5em;
}

/* fin paginas tours */
/****** fin main layout *****************************************/
/****** footer layout *****************************************/
.site-footer {
  background-color: #304a6f;
  padding: 2.5rem 0 1.2rem;
  /* borde dorado */
  border-top: 3px solid #b8a77a;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer-links {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 2rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.footer-links a:hover {
  color: #fdfaf3;
  text-decoration: none;
  text-shadow: 0 0 5px #b8a77a;
}
.footer-links a {
  /* link activo footer */
}
.footer-links a[aria-current=page] {
  color: #b8a77a;
}

.footer-copy {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #fdfaf3;
  text-align: center;
  margin-top: 1.2rem;
}

.linea-dorada {
  height: 2px; /* Grosor */
  width: 100%; /* Ancho */
  background-color: #b8a77a; /* Color de la línea */
  margin: 20px auto; /* Márgenes superior/inferior y centrado */
  border: none; /* Elimina estilos de navegador por defecto */
}

/****** fin footer layout *****************************************/
/* media querys para tablets y celulares --------------------------------------------- */
/* responsive tablet */
@media (max-width: 768px) {
  /* acomodo la imagen */
  .index-header {
    background-position-x: 60%;
    background-position-y: -20%;
  }
  .contenedor-hero {
    /* achico espacio a la izquierda, achico distancia entre elementos */
    padding-left: 2rem;
    row-gap: 1em;
  }
  .hero-tituloSitio {
    /* achico el font-size */
    font-family: "Lora", Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 600;
  }
  .hero-subtitulo {
    font-family: "Lora", Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 300;
  }
  .btn-hero {
    /* achico el font-size */
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
  }
  .titulo-principal {
    /* achico el font-size */
    font-family: "Lora", Georgia, "Times New Roman", serif;
    font-size: 2em;
    font-weight: 500;
  }
  .titulo-secundario {
    /* achico el font-size */
    font-family: "Lora", Georgia, "Times New Roman", serif;
    font-size: 1.5em;
    font-weight: 500;
  }
  /* bootstrap navbar personalizada ------------------- */
  .custom-navbar a {
    font-size: 1em !important;
    font-weight: 450 !important;
  }
  /* banderitas a la derecha en mobile */
  .navbar-nav .nav-item:last-child {
    margin-left: auto;
  }
  .navbar-nav {
    background-color: rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(6px);
  }
  /* faq accordion *******************/
  .section-faq .accordion-button {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1.2rem 0;
  }
  .section-faq .accordion-body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    padding: 0.5rem 0 1.2rem;
    color: #1f2a36;
  }
  /* footer achicar padding *******************/
  .site-footer {
    padding: 2rem 0 0;
  }
  /* footer vertical y achicar letras espacios */
  .footer-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0.5rem;
  }
  .footer-links a {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
  }
}
/* responsive mobile */
@media (max-width: 390px) {
  /* acomodo la imagen */
  .index-header {
    background-position-x: 70%;
    background-position-y: -20%;
  }
  .hero-tituloSitio {
    /* achico el font-size */
    font-family: "Lora", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 600;
  }
  .hero-subtitulo {
    font-family: "Lora", Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 300;
  }
  .btn-hero {
    /* achico el font-size */
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
  }
  .titulo-principal {
    /* solo achico el font-size*/
    font-family: "Lora", Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .titulo-secundario {
    /* slo achico el font-size */
    font-family: "Lora", Georgia, "Times New Roman", serif;
    font-size: 1.2em;
    font-weight: 500;
  }
}

/*# sourceMappingURL=styles.css.map */
