@import url("https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap");
.fw-700 {
  font-weight: 700;
}

.fw-300 {
  font-weight: 300;
}

.fw-600 {
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-family: "Rethink Sans", sans-serif;
  color: #4e4e4e;
  font-size: 18px;
  background-color: #eef1ef;
  background: radial-gradient(circle at top right, rgba(0, 130, 68, 0.08), transparent 35%), radial-gradient(circle at bottom left, rgba(11, 80, 93, 0.08), transparent 40%), linear-gradient(90deg, rgba(0, 130, 68, 0.2) 0%, rgba(11, 80, 93, 0.15) 25%, rgba(11, 80, 93, 0.14) 50%, rgba(0, 130, 68, 0.12) 75%, rgba(255, 255, 255, 0) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

.header {
  position: fixed;
  width: 100%;
  top: 40px;
  z-index: 1000;
  transition: top 0.3s ease;
}
.header.scrolled {
  top: 10px;
}
.header .card {
  background-color: #002d36;
  border-radius: 50px;
  border: none;
}
.header .logo {
  margin-left: 3rem;
  margin-right: 3rem;
}
.header nav ul.nav {
  gap: 3rem;
}
.header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0;
}
.header nav a:hover {
  color: #008244;
}

.btn-success {
  background-color: #008244;
  color: #fff;
}

.unstyled-link {
  color: inherit;
  text-decoration: none;
}
.unstyled-link:hover {
  color: inherit;
  text-decoration: none;
}

.br-30 {
  border-radius: 30px !important;
}

#portada {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}
@media (max-width: 767px) {
  #portada {
    min-height: 50vh;
  }
}

#quienes-somos {
  position: relative;
  padding: 50px 0px 0px;
  z-index: 1;
}
@media (max-width: 767px) {
  #quienes-somos .textoQs p {
    text-align: justify;
  }
  #quienes-somos .textoQs p:last-child {
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}

.lineaSeparadora {
  width: 0;
  height: 2px;
  background-color: rgba(78, 78, 78, 0.15);
  margin: 50px 0;
}
.lineaSeparadora.is-visible {
  animation: lineaLargo 1s ease-out forwards;
}

@keyframes lineaLargo {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#exportar {
  padding: 50px 0px;
  position: relative;
}
#exportar .imagenExportar {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 480px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #exportar .imagenExportar {
    min-height: 240px;
    margin: 0 15px 30px;
  }
}
#exportar .textoExportar {
  padding: 0 30px;
}
@media (max-width: 767px) {
  #exportar .textoExportar {
    padding: 0;
  }
}

#productos {
  padding: 80px 0px 0px;
}
#productos .card {
  border: none;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0, 45, 54, 0.08);
  background-color: #fff;
}
#productos h2 {
  font-weight: 700;
  color: #002d36;
}
#productos .producto-img {
  max-height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
}
#productos .textoProductos {
  font-size: 0.95rem;
  color: #4e4e4e;
  line-height: 1.75;
}
#productos .textoProductos strong, #productos .textoProductos b {
  color: #002d36;
}
#productos .carousel-item {
  transition: none;
  min-height: 400px;
}

.productos-tabs {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(78, 78, 78, 0.12);
}

.product-cat-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  outline: none;
}
.product-cat-btn .tab-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(78, 78, 78, 0.2);
  background-color: rgba(78, 78, 78, 0.06);
  transition: border-color 0.25s, background-color 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-cat-btn .tab-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-cat-btn .tab-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4e4e4e;
  transition: color 0.25s;
}
.product-cat-btn:hover .tab-circle {
  border-color: #0b505d;
  transform: translateY(-3px);
}
.product-cat-btn.active .tab-circle {
  border-color: #0b505d;
  background-color: rgba(11, 80, 93, 0.12);
  box-shadow: 0 4px 16px rgba(11, 80, 93, 0.25);
  transform: translateY(-3px);
}
.product-cat-btn.active .tab-label {
  color: #0b505d;
}

#servicios {
  padding: 80px 0px 0px;
}
#servicios img {
  margin-top: -250px;
}

#servicios-detalle {
  margin-top: -300px;
  padding: 0px;
}
#servicios-detalle .textosServcios {
  text-align: justify;
}
@media (max-width: 1199px) {
  #servicios-detalle {
    margin-top: 0;
    padding-top: 40px;
  }
}
#servicios-detalle .col-xl-4:nth-child(1) .card-top,
#servicios-detalle .col-xl-4:nth-child(4) .card-top {
  background-color: #d9e4e5;
}
#servicios-detalle .col-xl-4:nth-child(2) .card-top,
#servicios-detalle .col-xl-4:nth-child(5) .card-top {
  background-color: #dde6e8;
}
#servicios-detalle .col-xl-4:nth-child(3) .card-top,
#servicios-detalle .col-xl-4:nth-child(6) .card-top {
  background-color: #deefe8;
}
#servicios-detalle .card {
  position: relative;
  background-color: transparent !important;
  border: 2px solid rgba(78, 78, 78, 0.3);
  border-radius: 30px;
  min-height: 110px;
  margin-top: 50px;
}
#servicios-detalle .card .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.85rem;
  font-size: 0.9rem;
}
#servicios-detalle .card .card-top {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  white-space: nowrap;
}
#servicios-detalle .card .card-top img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .header {
    top: 0;
  }
  .header .col-xl-10 {
    padding: 0;
  }
  .header .card {
    border-radius: 0 0 24px 24px !important;
  }
  .header .card-body {
    padding: 0.75rem 1rem;
  }
  .header-mobile-bar {
    min-height: 56px;
  }
  .logo-mobile img {
    height: 38px;
    width: auto;
  }
  .hamburger {
    background: none;
    border: none;
    padding: 8px 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger[aria-expanded=true] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .hamburger[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-nav-list {
    padding-bottom: 0.5rem;
  }
  .mobile-nav-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 0;
    display: block;
    text-align: center;
    transition: color 0.2s;
  }
  .mobile-nav-list a:hover {
    color: #008244;
  }
}
#contacto {
  padding: 100px 0px;
}
#contacto .card {
  border: none;
}

.footer {
  background-color: #002d36;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 40px;
  font-family: "Rethink Sans", sans-serif;
}
.footer__logo {
  max-width: 160px;
  height: auto;
  display: block;
}
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.7;
  margin-bottom: 0;
}
.footer__title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  position: relative;
}
.footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: #0b505d;
}
.footer__nav li {
  margin-bottom: 0.5rem;
}
.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer__nav a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer__contact a:hover {
  color: #fff;
}
.footer__icon {
  width: 17px;
  height: 17px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.footer__social-link img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__social-link:hover {
  background-color: #0b505d;
  border-color: #0b505d;
  transform: translateY(-3px);
}

.footer__copy {
  background-color: #001920;
  color: rgba(255, 255, 255, 0.5);
  padding: 14px 20px;
  font-size: 0.8rem;
  font-family: "Rethink Sans", sans-serif;
}
.footer__copy a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer__copy a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  #destinos .icono img {
    width: 70px !important;
  }
}/*# sourceMappingURL=estilos.css.map */