@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Open+Sans:wght@300;400;600&family=Montserrat:wght@300;400;600&display=swap");
/* === General Styles === */
body {
  font-family: "Poppins", sans-serif;
}

h1, h2, h3 {
  font-family: "Montserrat", serif;
}

/* === General Styles === */
body {
  font-family: "Poppins", sans-serif;
  background-color: #F8F5F1;
}

h1, h2, h3 {
  font-family: "Montserrat", serif;
}

/* === Navbar === */
.navbar-nav {
  margin: 0 auto;
}
.navbar-nav .nav-item {
  margin: 0 10px;
}
.navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
  color: #000000;
}
.navbar-nav .nav-link.active {
  font-weight: bold;
}
@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* === Footer === */
.footer-section {
  background-color: #627D77;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 2rem 0;
}
.footer-section h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.footer-section p,
.footer-section .footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section p:hover,
.footer-section .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-section .social-icon {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.footer-section .social-icon:hover {
  color: white;
}
.footer-section .container .row .col-md-4:last-child {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-section .container .row .col-md-4:last-child {
    text-align: end;
  }
}
.footer-section .container .row .col-md-4:last-child .social-icon {
  margin-top: 0.5rem;
}
.footer-section .container .fa-whatsapp {
  color: #25d366;
  font-size: 3rem;
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
}
.footer-section .container .text-center {
  margin-top: 1rem;
}
.footer-section .container .text-center p {
  margin: 0;
  font-size: 0.85rem;
}

/* === Newsletter === */
.newsletter-section {
  background-color: #627D77;
  padding: 60px 0;
  color: #ffffff;
}
.newsletter-section .newsletter-btn {
  background-color: #F5E3C3;
  color: #627D77;
  border: none;
  transition: all 0.3s ease-in-out;
}
.newsletter-section .newsletter-btn:hover {
  background-color: #E3D1B8;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
.hero .hero-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/img/guanaco-lama-guanicoe-torres-del-paine-national-park.webp") center/cover no-repeat fixed;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero .hero-parallax {
    background-attachment: scroll;
  }
}
.hero .hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  min-height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 1rem;
  }
}
.hero .btn-primary {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 12px;
  background-color: #008CBA;
  color: #ffffff;
  border: none;
  transition: 0.3s;
}
.hero .btn-primary:hover {
  background-color: #006F98;
}

/* === Experiencias === */
.experiencia-img,
.page-experiencias .experienciaS-card .card-img-top {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.testimonios-section {
  min-height: 600px;
  padding: 80px 0;
}
.testimonios-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.testimonios-section p {
  margin-bottom: 40px;
}

.img-testimonio {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* === Animaciones === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-in-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* === Video Section === */
.video-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  border-radius: 10px;
}
.video-section .ratio iframe {
  border-radius: 20px;
}

/* === Newsletter === */
.newsletter-section {
  background-color: #627D77;
  padding: 60px 0;
  color: #ffffff;
}
.newsletter-section .newsletter-btn {
  background-color: #F5E3C3;
  color: #627D77;
  border: none;
  transition: all 0.3s ease-in-out;
}
.newsletter-section .newsletter-btn:hover {
  background-color: #E3D1B8;
}

.nosotros-section {
  background-color: white;
  min-height: 100vh;
}

.imagen-nosotros-parallax {
  background-image: url("../assets/img/nosotrosnwimg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 110vh;
}

@media (max-width: 768px) {
  .nosotros-section {
    padding-top: 90px;
  }
  .nosotros-section h1 {
    font-size: 26px;
    margin-bottom: 1rem;
  }
  .nosotros-section h2 {
    font-size: 20px;
    margin-top: 1.5rem;
  }
  .nosotros-section p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 1rem;
  }
  .nosotros-section .col-md-6 {
    padding: 0 1rem;
  }
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.8);
}

.bg-opacity-75 {
  background-color: rgba(255, 255, 255, 0.75);
}

.page-experiencias {
  padding-bottom: 60px;
}
.page-experiencias .experienciaS-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-experiencias .experienciaS-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.page-experiencias .experienciaS-card .card-body {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}
.page-experiencias .experienciaS-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  min-height: 3rem;
}
.page-experiencias .experienciaS-card .card-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.page-experiencias .experienciaS-card .btn-custom {
  margin: auto;
  font-weight: 600;
  color: #007f6b;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid #007f6b;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
  min-height: 40px;
}
.page-experiencias .experienciaS-card .btn-custom:hover {
  color: #005e50;
  border-color: #005e50;
}
.page-experiencias .experienciaS-card .btn-custom:focus {
  outline: 2px dashed #005e50;
  outline-offset: 3px;
}
@media (max-width: 768px) {
  .page-experiencias .experienciaS-card .card-title {
    font-size: 1rem;
  }
  .page-experiencias .experienciaS-card .card-text {
    font-size: 0.9rem;
  }
  .page-experiencias .experienciaS-card .btn-custom {
    font-size: 0.875rem;
  }
}

.faq-section {
  background-color: #f9f9f9;
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}
.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
}
.faq-section .faq-item {
  margin-bottom: 2rem;
}
.faq-section .faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.5rem;
}
.faq-section .faq-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.sucursales-section {
  padding-top: 120px;
  padding-bottom: 60px;
}
.sucursales-section h1 {
  margin-bottom: 30px;
}
.sucursales-section h3 {
  font-size: 1.4rem;
}
.sucursales-section p {
  letter-spacing: 0.05em;
}
.sucursales-section .map-container {
  border-radius: 16px;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.sucursales-section .map-container iframe {
  border-radius: 12px;
  width: 100%;
  height: 350px;
}

/* === Botones === */
.btn-primary {
  background-color: #4A90A2;
  color: whte;
  border: none;
}
.btn-primary:hover {
  background-color: #3E788D;
}

.form-contacto {
  max-width: 500px;
  background: transparent;
  margin: 0 auto;
  padding: 0;
  padding-top: 100px;
}
.form-contacto h1, .form-contacto p {
  margin-bottom: 1.5rem;
}
.form-contacto form {
  background-color: transparent;
  padding: 2rem;
  border-radius: 0;
}
.form-contacto form label {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
  color: #333;
}
.form-contacto form .form-control {
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.6);
  border-radius: 0;
  padding: 10px 5px;
  font-size: 1rem;
  background-color: transparent;
  color: #000000;
  transition: border-color 0.3s;
}
.form-contacto form .form-control:focus {
  border-color: #008CBA;
  outline: none;
  box-shadow: none;
}
.form-contacto form textarea.form-control {
  resize: none;
  min-height: 140px;
}
.form-contacto form .btn {
  display: none;
}

.btn-enviar {
  background-color: #008CBA;
  color: white;
  font-size: 1rem;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  transition: background-color 0.3s;
}
.btn-enviar:hover {
  background-color: #006F98;
}/*# sourceMappingURL=styles.css.map */