@font-face {
  font-family: "Fira Sans Condensed";
  src: url("/general/fonts/FiraSansCondensed-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Fira Sans Condensed SemiBold";
  src: url("/general/fonts/FiraSansCondensed-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Fira Sans Condensed Black";
  src: url("/general/fonts/FiraSansCondensed-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Fira Sans Condensed Bold";
  src: url("/general/fonts/FiraSansCondensed-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  src: url("/general/fonts/Lato-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Lato Light";
  src: url("/general/fonts/Lato-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Lato Bold";
  src: url("/general/fonts/Lato-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Lato LightItalic";
  src: url("/general/fonts/Lato-LightItalic.ttf") format("truetype");
}

main {
  margin-top: 5rem;
}

.dropdown-backdrop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 990;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* Header */
.navbar {
  height: 70px;
  transition: height 0.3s ease, background-color 0.3s ease;
  padding: 0 60px;
  align-items: center;
}

.navbar.scrolled {
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  transition: all 0.3s ease;
  max-height: 50px;
}

.navbar-brand .logo-scrolled {
  display: none;
  max-height: 40px;
}

.btn-close-menu {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.close-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
}

.close-icon:before,
.close-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: background-color 0.3s ease;
}

.close-icon:before {
  transform: rotate(45deg);
}

.close-icon:after {
  transform: rotate(-45deg);
}

.btn-close-menu:hover .close-icon:before,
.btn-close-menu:hover .close-icon:after {
  background-color: #c78720;
}

.navbar.scrolled .logo-main {
  display: none;
}

.navbar.scrolled .logo-scrolled {
  display: inline-block;
}

.nav-link {
  font: 16px/19px "Fira Sans Condensed Bold";
  color: #000000;
  padding: 1.5rem 1rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #c78720;
}

.nav-link.active:not(.nav-link-home) {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.nav-link-home {
  display: flex;
  align-items: center;
}

.nav-link-home .home-text {
  display: none;
}

.home-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("/general/images/icon-home-relase.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
}

.nav-link-home.active .home-icon {
  background-image: url("/general/images/icon-home-selected.svg");
}

.nav-link-home:hover .home-icon {
  background-image: url("/general/images/icon-home-hover.svg");
}

.dropdown-menu {
  border-radius: 20px;
  border: none;
}

.dropdown-item {
  font: 16px/19px Lato;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-item:hover {
  color: #c78720;
  background: transparent;
}

.dropdown-menu[aria-labelledby="langDropdown"] {
  min-width: auto;
  padding-left: 10px;
  padding-right: 10px;
}

/*Botones*/
/* Botón ayuda */
.btn-help-container {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.navbar.scrolled .btn-help-container {
  opacity: 0;
  visibility: hidden;
}

.btn-help {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-help-text {
  background: #c78720;
  color: #ffffff;
  font: 14px/16px "Fira Sans Condensed";
  padding: 10px;
  border-radius: 100px;
  clip-path: inset(0 0 0 0 round 100px);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.btn-help-icon {
  width: 36px;
  height: 36px;
  background: #f3c63c;
  border-radius: 50%;
  margin-left: -12px;
  transform: scale(0);
  opacity: 0;
  transition: inherit;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.btn-help-icon::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/general/images/icon-contacto.svg") center/contain no-repeat;
}

.btn-help:hover {
  padding-right: 8px;
}

.btn-help:hover .btn-help-text {
  clip-path: polygon(
    0% 0%,
    calc(100% - 16px) 0%,
    100% 50%,
    calc(100% - 16px) 100%,
    0% 100%
  );
  padding-right: 1.5em;
  border-radius: 0.375em;
}

.btn-help:hover .btn-help-icon {
  transform: scale(1);
  opacity: 1;
  margin-left: 8px;
}

/* Botón descubrir */
.btn-discover {
  display: inline-flex;
  align-items: center;
  padding: 0.125em;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.btn-discover-text {
  padding: 32px 3.75em;
  border-radius: 3.125em;
  clip-path: inset(0 0 0 0 round 3.125em);
  transition: inherit;
  white-space: nowrap;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: bold 21px/26px "Fira Sans Condensed";
}

.btn-discover-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-left: -1.25em;
  transform: scale(0);
  opacity: 0;
  transition: inherit;
  display: grid;
  place-items: center;
}

.btn-discover-icon::after {
  content: "";
  width: 2em;
  height: 2em;
  background: center/contain no-repeat;
}

.btn-discover:hover {
  padding-right: 0.625em;
}

.btn-discover:hover .btn-discover-text {
  clip-path: polygon(
    0% 0%,
    calc(100% - 2.5em) 0%,
    100% 50%,
    calc(100% - 2.5em) 100%,
    0% 100%
  );
  padding-right: 5em;
  border-radius: 0.375em;
}

.services-slider-section .btn-discover:hover .btn-discover-text {
  border-radius: 100px;
  clip-path: polygon(
    0% 0%,
    calc(100% - 2em) 0%,
    100% 50%,
    calc(100% - 2em) 100%,
    0% 100%
  );
  padding-right: 4em;
}

.btn-discover:hover .btn-discover-icon {
  transform: scale(1);
  opacity: 1;
  margin-left: 1.25em;
}

.btn-discover-white-dark .btn-discover-text {
  background: #fff;
  color: #b16712;
}

.btn-discover-white-dark .btn-discover-icon {
  background: #f3c63c;
}

.btn-discover-white-dark .btn-discover-icon::after {
  background-image: url("/general/images/icon-discover-dark.svg");
}

.btn-discover-white-light .btn-discover-text {
  background: #fff;
  color: #c78720;
}

.btn-discover-white-light .btn-discover-icon {
  background: #c78720;
}

.btn-discover-white-light .btn-discover-icon::after {
  background-image: url("/general/images/icon-discover-light.svg");
}

.btn-discover-yellow-light .btn-discover-text {
  background: #f3c63c;
  color: #b16712;
}

.btn-discover-yellow-light .btn-discover-icon {
  background: #c78720;
}

.btn-discover-yellow-light .btn-discover-icon::after {
  background-image: url("/general/images/icon-discover-light.svg");
}

.btn-discover-yellow-light .btn-discover-text {
  padding: 2em;
}

.btn-discover-orange-dark .btn-discover-text {
  background: #c78720;
  color: #ffffff;
}

.btn-discover-orange-dark .btn-discover-icon {
  background: #f3c63c;
}

.btn-discover-orange-dark .btn-discover-icon::after {
  background-image: url("/general/images/icon-discover-dark.svg");
}

.btn-contact-white-dark .btn-discover-text {
  background: #fff;
  color: #b16712;
}

.btn-contact-white-dark .btn-discover-icon {
  background: #f3c63c;
}

.btn-contact-white-dark .btn-discover-icon::after {
  background: url("/general/images/icon-contacto.svg") center/contain no-repeat;
}

/* Botón contacto*/
.btn-contact {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
  border-radius: 100px;
  padding: 12px 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font: 18px/22px Lato;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-contact:hover {
  background: #dda62e;
}

.btn-contact img:last-child {
  transition: all 0.3s ease;
}

.btn-contact:hover img:last-child {
  order: -1;
}

.btn-contact-white {
  border: 1px solid #ffffff;
  padding: 20px 30px;
  color: #ffffff;
}

.btn-contact-white:hover {
  background: #ffffff;
  color: #000000;
}

.btn-contact-white:hover img {
  filter: brightness(0);
}

/* Botones scroll*/
.scroll-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  padding: 15px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  box-shadow: 0px 2px 4px #00000029 !important;
  cursor: pointer;
}

.scroll-to-top {
  bottom: 85px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}

.scroll-to-top:hover .upButton {
  content: url("/general/images/icon_up_hover.svg");
}

.scroll-to-top .upButton {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

#fixed-button {
  display: none;
}

/*Modales*/
#contactModal .modal-dialog-bottom-right {
  position: fixed;
  right: 20px;
  bottom: 20px;
  margin: 0;
  max-width: 380px;
  transform: translateY(50px);
  transition: transform 0.3s ease-out;
}

#contactModal.show .modal-dialog-bottom-right {
  transform: translateY(0);
}

.modal-dialog-bottom-right .modal-content {
  border-radius: 40px;
}

.modal-dialog-bottom-right .modal-title {
  font: 24px/48px "Fira Sans Condensed";
  text-align: center;
}

.modal-dialog-bottom-right p {
  font: 16px/19px Lato;
  text-align: center;
}

/* Footer*/
.footer-top {
  background-color: #c78720;
  color: white;
  padding: 60px;
  text-align: center;
}

.footer-top .contact-title {
  font: 18px/22px "Fira Sans Condensed";
  color: #000000;
  text-transform: uppercase;
}

.footer-top .contact-headline {
  font: 36px/48px Lato;
}

.footer-top .contact-subheadline {
  font: normal normal bold 36px/48px "Lato Bold";
  margin-bottom: 40px;
}

.footer-top .social-links a {
  color: #000000;
  text-decoration: none;
  margin: 0 15px;
  font: 18px/22px Lato;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-top .social-links a:hover {
  filter: brightness(0) invert(1);
}

.footer-top .social-links i {
  margin-right: 5px;
}

.footer-top .footer-logo-container {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-top .footer-logo {
  width: 100px;
}

.footer-bottom {
  background-color: #ffffff;
  padding: 25px 60px;
  font: 14px/17px Lato;
}

.footer-bottom .legal-links a {
  color: #000000;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-bottom .copyright {
  color: #000000;
}

.swiper.swiper-loading {
  opacity: 0;
  visibility: hidden;
}

.swiper.swiper-initialized {
  transition: opacity 0.4s ease;
}

.hero-section {
  position: relative;
}

.hero-image {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 200px;
}

.hero-title {
  color: #ffffff;
  font: 48px/60px Lato;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.hero-section h1 {
  font: 600 48px/58px "Fira Sans Condensed SemiBold";
  color: white;
}

.our-services-section .hero-image {
  background: url("/general/images/img-header-servicios.jpg");
}

.our-objectives-section .hero-image {
  background: url("/general/images/img-header-objetivos.jpg");
}

.about-us-section .hero-image {
  background: url("/general/images/img-header-sobre-nosotros.jpg") center/cover;
}

/* Sección Slider principal*/
.slider-section {
  display: flex;
  flex-direction: column;
  height: calc(80vh - 70px);
  width: 94%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
}

.slider-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  padding: 0 5%;
}

.slider-text-wrapper {
  overflow: hidden;
  max-width: 80%;
}

.slider-text {
  font: 36px/48px "Fira Sans Condensed";
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.slider-text.is-exiting {
  transform: translateY(100%);
  opacity: 0;
}

.slider-flower {
  transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.slider-controls {
  display: flex;
  gap: 15px;
}

.slider-btn-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-btn {
  border: 2px solid transparent;
  background-color: transparent;
  font-family: inherit;
  cursor: pointer;

  width: 100%;
  height: 100%;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c78720;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: none;
}

.slider-btn.active::before {
  transform: scaleX(1);
  transition: transform 5s linear;
}

.slider-btn:hover:not(.active) {
  border-color: #ffffff;
}

.slider-btn img {
  height: 40px;
}

.slider-btn span {
  font: 21px/24px "Fira Sans Condensed";
}

.btn-text {
  display: none;
  margin-top: 10px;
}

/* Sección Scroll*/
.scroll-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  min-height: 130px;
}

.scroll-section .scroll-text {
  font: bold 21px/26px Fira Sans Condensed;
  color: #000000;
  opacity: 0.5;
}

.scroll-section .scroll-line {
  width: 2px;
  height: 40px;
  background-color: #000000;
  margin-bottom: 10px;
  animation: moveLine 3s cubic-bezier(0.86, 0, 0.07, 1) infinite;
}

@keyframes moveLine {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Sección Sobre nosotros*/
.about-section {
  display: flex;
  background-color: #c78720;
  padding: 60px;
  border-radius: 60px;
  margin: 60px;
}

.about-content {
  flex: 1;
  box-sizing: border-box;
}

.about-img {
  flex: 1;
  box-sizing: border-box;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
}

.about-content h2 {
  font: 18px/22px "Fira Sans Condensed";
  margin-bottom: 3rem;
}

.about-content p {
  font: 36px/48px Lato;
  margin: 20px 0;
}

.about-content button {
  padding: 30px 80px;
  background-color: #ffffff;
  color: #b16712;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/* Sección Fondo Fijo*/
.fixed-bg-section {
  height: 80vh;
  position: relative;
}

.fixed-bg {
  background-image: url("/general/images/bg-congress.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.fixed-content {
  height: 100%;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fixed-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sección Servicios*/
.services-section {
  /* background: #000000; */
  padding: 60px;
}

.services-section h2,
.about-slider-section h2,
.about-content h2 {
  font: 21px/26px "Fira Sans Condensed";
  text-transform: uppercase;
  color: #000000;
}

/* Sección Detalle de servicio*/
.service-detail-section h1 {
  font: 36px/48px Lato;
}

.service-detail-section .service-icon {
  width: 50px;
  height: auto;
}

.service-content-section {
  padding: 60px;
  font: 16px/19px Lato;
}

.service-content-section h2 {
  font: 24px/30px Lato;
  margin-bottom: 0.5rem;
}

.service-content-section img {
  border: 1px solid #000000;
  border-radius: 40px;
}

/* Sección Logos*/
.logos-section {
  padding: 5rem 0;
  background: url("/general/images/bg-congress.jpg") center/cover;
  margin: 60px;
  border-radius: 60px;
}

.video-logos-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.logos-section h2,
.video-logos-section h2 {
  color: white;
  text-align: center;
}

.logos-section h2 {
  font: 21px/26px "Fira Sans Condensed";
}

.video-logos-section h1 {
  font: 36px/44px "Fira Sans Condensed SemiBold";
}

.video-logos-section h2 {
  font: 36px/48px Lato;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.logo-item img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Sección Contacto*/
.contact-section {
  padding: 60px;
  text-align: center;
  max-width: 1366px;
  margin: auto;
}

.contact-section h1 {
  font: 36px/48px Lato;
}

.contact-section > p {
  font: 16px/19px Lato;
}

.contact-section .contact-card {
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}

.contact-section .card-title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .card-content {
  display: flex;
  flex-direction: column;
  background-color: #dddddd;
  padding: 40px;
  border-radius: 40px;
  min-height: 180px;
}

.contact-section .contact-link,
.contact-section .card-content > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font: 16px/19px Lato;
  margin-bottom: 20px;
}

.contact-section .contact-link:last-child,
.contact-section .card-content > span:last-child {
  margin-bottom: 0;
}

.contact-section .contact-link span,
.contact-section .card-content > span span {
  flex: 1;
}

.contact-section .mobile-arrow {
  display: none;
}

.contact-section .card-title h2 {
  color: white;
  font: 36px/48px "Fira Sans Condensed";
  text-align: center;
  width: 80%;
  margin: 0;
}

/* Sección Objetivos*/
.our-objectives-section .title-bordered {
  border: 2px solid #000000;
  border-top: 0;
  height: 200px;
  display: flex;
  align-items: center;
  padding: 60px;
  text-align: center;
}

.our-objectives-section h2 {
  font: 36px/48px Lato;
}

.objectives-separator {
  padding: 60px;
}

/* Acordeones*/

.services-accordion .accordion-button {
  padding: 1.5rem 1rem;
}

.services-accordion .accordion-body {
  padding: 1.5rem 1rem;
  padding-left: 6rem;
}

.services-accordion .accordion-button::after {
  display: none;
}

.services-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.services-accordion .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #3c3c3c;
}

.services-accordion .accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background-color: transparent !important;
}

.accordion-title {
  color: #000000;
  font: 36px/48px Lato;
  margin-right: auto;
}

.accordion-body li {
  color: #000000;
  font: 18px/22px Lato;
}

.services-accordion .accordion-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.services-accordion .accordion-icon:hover {
  background: #dddddd;
}

.services-accordion .accordion-icon svg,
.services-accordion .accordion-icon img {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
  filter: invert(1);
}

.services-accordion .accordion-item.active .accordion-icon,
.services-accordion .accordion-button:not(.collapsed) .accordion-icon {
  border-radius: 10px;
  background: #dddddd;
}

.services-accordion .accordion-item.active .accordion-icon svg,
.services-accordion .accordion-item.active .accordion-icon img,
.services-accordion .accordion-button:not(.collapsed) .accordion-icon svg,
.services-accordion .accordion-button:not(.collapsed) .accordion-icon img {
  transform: rotate(45deg);
}

/* Acordeón Sobre nosotros */
.about-us-section {
  color: #fff;
}

.about-us-container {
  margin: 60px;
  border-radius: 60px !important;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.accordion-menu-wrapper {
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 0;
}

.about-us-section .accordion-menu {
  padding: 1rem;
}

.accordion-menu {
  width: 100%;
}

.accordionpane-wrapper {
  padding: 0;
  height: 100%;
}

.about-us-container .accordion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-item h5 {
  margin: 0;
  font: 30px/40px "Fira Sans Condensed";
}

.about-us-container .accordion-item.active h5 {
  text-decoration: none;
}

.about-us-container .accordion-item.active {
  background-color: #c78720;
  border-radius: 100px;
}

.about-us-container .accordion-item:hover:not(.active) {
  background-color: #3c3c3c;
  border-radius: 100px;
}

.accordionpane {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 550px;
}

.accordionblock {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out,
    transform 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.accordionblock.bg-image {
  background-size: cover;
  background-position: top;
}

.accordion-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  object-fit: cover;
}

.accordionoverlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.accordionblock.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.accordiontext {
  text-align: center;
  max-width: 500px;
  color: #fff;
}

.accordiontext p {
  font: 21px/26px Lato;
}

.about-us-container .accordion-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-us-container .accordion-icon img {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
  content: url("/general/images/chevron-r.svg");
}

/*Sliders */
.services-slider-section,
.about-slider-section,
.objectives-slider-section {
  padding: 60px;
}

.services-slider-section {
  position: relative;
  padding-bottom: 80px;
}

.services-slider-section h2 {
  font: 36px/48px Lato;
}

.services-slider-section h5,
.objectives-slider-section h5 {
  font: 18px/22px "Fira Sans Condensed";
}

.services-slider-section h5 {
  color: #000000;
  margin-left: auto;
  margin-right: auto;
}

.about-slider-section h2 {
  color: #000000;
}

.objectives-slider-section h5 {
  color: #000000;
}

/* Botón descubrir servicios */
.services-slider-section .btn-discover-text {
  font: 18px/22px "Fira Sans Condensed Bold";
  padding: 21px 2em;
  height: 60px;
}

.services-slider-section .btn-discover-icon {
  width: 60px;
  height: 60px;
}

.swiper {
  padding: 20px 0 40px;
}

.servicesSwiper {
  padding: 10px 5px 40px;
}

.services-slider-section .swiper-wrapper {
  align-items: stretch;
}

.services-slider-section .swiper-slide {
  height: auto;
}

.swiper-wrapper {
  padding-bottom: 40px;
}

/* Tarjetas en sliders */
.servicesSwiper .card {
  background-color: transparent;
  border: 1px solid #939393;
  color: #000000;
  border-radius: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.aboutSwiper .card,
.our-objectives-section .card {
  border: 1px solid #000000;
  border-radius: 40px;
  height: 100%;
  overflow: hidden;
}

.aboutSwiper .card {
  cursor: pointer;
}

.services-slider-section .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.card-image {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.aboutSwiper .card-image {
  height: 400px;
}

.our-objectives-section .card-image {
  height: 450px;
}

.card-caption {
  color: white;
  padding: 20px;
  width: 100%;
}

.aboutSwiper .card-caption h3 {
  font: 24px/30px Lato;
}

.aboutSwiper .card-caption {
  height: 145px;
}

.objectivesSwiper .card-caption {
  height: 140px;
}

.sustainabilitySwiper .card-caption {
  height: 165px;
}

.objectives-slider-section .card-caption h3 {
  font: 24px/30px Lato;
}

.card-caption p {
  font: 16px/19px Lato;
}

.card-title {
  font: 24px/30px Lato;
}

.services-icon {
  width: 40px;
  margin-bottom: 1.5rem;
}

.service-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font: 16px/19px Lato;
}

/* Controles swiper*/
.arrows-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.arrows {
  display: inline-flex;
  border-radius: 100px;
  padding: 2px;
}

.our-services-section .arrows {
  border: 1px solid #ffffff;
}

.our-objectives-section .arrows,
.service-detail-section .arrows,
.about-slider-section .arrows {
  border: 1px solid #000000;
}

.arrows > div,
.arrow-left,
.arrow-right {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  cursor: pointer;
}

.arrow-left {
  margin-right: 10px;
}

.arrow-right {
  margin-left: 10px;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.swiper-scrollbar {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.our-services-section .swiper-scrollbar {
  width: calc(100% - 10px) !important;
  margin: 0 auto;
  background: #2c2c2c;
}

.our-services-section .swiper-scrollbar .swiper-scrollbar-drag {
  background: #ffffff;
}

.about-slider-section .swiper-scrollbar .swiper-scrollbar-drag,
.service-detail-section .swiper-scrollbar .swiper-scrollbar-drag {
  background: #000000;
}

.services-cards-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1366px;
  margin: auto;
}

.service-card {
  border-radius: 40px;
  width: 400px;
}

/*Breadcrumbs detalle servicio*/
.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link,
.breadcrumb-current {
  font: 13px/15px "Fira Sans Condensed";
  color: #000000;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.breadcrumb-link {
  opacity: 0.5;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
}

@keyframes spin-in {
  from {
    transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    transform: rotate(0deg);
    opacity: 1;
  }
}

.accordionblock.show .icon-flor {
  animation: spin-in 0.6s ease-out forwards;
}

.slider-section {
  position: relative;
  overflow: hidden;
}

.slider-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* simula background-size: cover */
  z-index: 0;
  pointer-events: none;
  /* evita bloquear clics */
}

.slider-content,
.slider-controls {
  position: relative;
  z-index: 1;
  /* todo tu contenido encima del video */
}

@media (max-width: 991px) {
  .navbar {
    height: 60px;
    padding: 0 20px;
  }

  .navbar-brand .logo-main {
    display: none;
  }

  .navbar-brand .logo-scrolled {
    display: inline-block;
  }

  .navbar-collapse .d-flex.justify-content-between {
    margin-bottom: 20px;
  }

  .btn-close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    padding: 30px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-collapse .navbar-brand {
    display: block;
    margin-bottom: 30px;
  }

  .navbar-collapse .navbar-brand .logo-main {
    display: inline-block;
    max-height: 40px;
  }

  .navbar-collapse .navbar-brand .logo-scrolled {
    display: none;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-bottom: auto;
    align-items: center;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 15px 0;
    font-size: 18px;
  }

  .nav-link-home .home-icon {
    display: none;
  }

  .nav-link-home .home-text {
    display: inline-block;
  }

  .nav-link.active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .mobile-elements {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .mobile-menu-subfooter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
    padding: 0 30px;
  }

  .btn-help-container {
    display: none;
  }

  .btn-help-m {
    display: block;
    width: 100%;
    background: #ffffff;
    color: #c78720;
    padding: 10px;
    border-radius: 0;
    font-size: 16px;
    font: 18px/22px "Fira Sans Condensed";
    text-transform: uppercase;
    margin: 20px 0;
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    border: 2px solid #c78720;
    border-radius: 100px;
  }

  .btn-help-m:hover {
    background-color: #c78720;
    color: #ffffff;
  }

  .btn-help-m:hover img {
    filter: brightness(0) invert(1);
  }

  .language-switcher-m {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
  }

  .language-switcher-m a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font: 14px/17px "Fira Sans Condensed";
  }

  .language-switcher-m a.active {
    color: #c78720;
    text-decoration: underline;
  }

  .mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
    text-align: center;
    width: 100vw;
    margin-bottom: -30px;
  }

  #contactModal .modal-dialog-bottom-right {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    margin: auto;
    transform: translateY(100%);
    max-width: 99%;
  }

  #contactModal.show .modal-dialog-bottom-right {
    transform: translateY(0);
  }

  .modal-dialog-bottom-right .modal-content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .services-slider-section {
    padding: 40px 30px;
  }

  .services-slider-section .card-body {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  main {
    margin-top: 60px;
  }

  /* Slider Principal */
  .slider-section {
    width: 100%;
    border-radius: 0;
  }

  .slider-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .slider-content img {
    margin-bottom: 20px;
  }

  .slider-text {
    max-width: 100%;
    font: 21px/30px "Fira Sans Condensed";
  }

  .slider-controls {
    gap: 10px;
  }

  .slider-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slider-btn {
    width: 76px;
    border-radius: 100px;
    padding: 8px;
  }

  .slider-btn img {
    height: auto;
    width: 18px;
  }

  .slider-btn span {
    display: none;
  }

  .btn-text {
    display: block;
    font: 16px/20px "Fira Sans Condensed";
    color: white;
    text-align: center;
    margin-top: 10px;
  }

  /* Sección de Scroll */
  .scroll-section {
    min-height: 120px;
  }

  .scroll-section .scroll-text {
    font: 16px/19px "Fira Sans Condensed Bold";
  }

  /* Secciones*/
  .about-section,
  .services-section,
  .about-slider-section,
  .objectives-slider-section,
  .objectives-separator {
    padding: 20px;
  }

  .about-section {
    flex-direction: column;
    gap: 40px;
    border-radius: 0;
    margin: 0;
  }

  .about-img {
    order: -1;
  }

  .about-content p {
    font: 21px/30px Lato;
  }

  .fixed-bg-section {
    display: none;
  }

  .services-section h2,
  .about-slider-section h2 {
    padding-top: 20px;
  }

  /* Acordeón */
  .accordion-title {
    font: 18px/24px Lato;
  }

  .accordion-body li {
    font: 14px/17px Lato;
  }

  .services-accordion .accordion-body {
    padding: 20px;
    padding-left: calc(1.5rem + 24px + 1rem);
  }

  .services-section .accordion-icon {
    border: 0;
  }

  /* Botón descubrir */
  .btn-discover {
    width: 100%;
    padding: 0;
  }

  .btn-discover-text {
    width: 100%;
    font: bold 18px/22px "Fira Sans Condensed";
    padding: 10px 20px;
    height: 40px;
    clip-path: none;
  }

  .services-slider-section .btn-discover-text {
    font: bold 14px/17px "Fira Sans Condensed";
    padding: 10px 20px;
    height: 40px;
  }

  .btn-discover-icon {
    display: none;
  }

  .btn-discover:hover {
    padding-right: 0;
  }

  .btn-discover:hover .btn-discover-text {
    clip-path: none;
    border-radius: 100px;
  }

  /* Detalle de servicio */
  .service-detail-section {
    margin-top: 70px;
  }

  .service-detail-section > nav,
  .service-detail-section > div:nth-child(2) {
    padding: 20px;
  }

  .service-detail-section h1 {
    font: 21px/30px Lato;
  }

  .breadcrumb-link,
  .breadcrumb-current {
    font: 11px/13px "Fira Sans Condensed";
  }

  .service-content-section {
    padding: 20px;
    font: 14px/18px Lato;
  }

  .service-content-section h2 {
    font: 18px/30px Lato;
  }

  /* Acordeón Sobre nosotros */
  .about-us-container {
    grid-template-columns: 1fr;
    height: 100vh;
    margin: 0;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
  }
  .about-us-section .hero-section {
    display: none;
  }
  .about-us-section .accordion-menu-wrapper {
    order: 2;
    height: 50%;
    display: flex;
    align-items: flex-start;
    padding: 0.7rem;
  }

    .about-us-section .accordionpane {
    min-height: 0;
  }

  .about-us-section .accordionpane-wrapper {
    order: 1;
    height: 50%;
    min-height: 0;
    position: relative;
    overflow: hidden;
  }

  .accordion-video-bg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: auto;
    min-height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .accordionblock.bg-image {
    background-size: cover;
    background-position: center;
  }

  .accordionoverlay {
    padding: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .accordiontext {
    max-width: 90%;
  }

  .about-us-section .accordion-menu {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    padding: 0;
    margin: auto;
  }

  .accordionblock {
    height: 100%;
  }

  .about-us-section .accordion-item {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ffffff;
    border-radius: 100px;
    justify-content: center;
    text-align: center;
    background-color: transparent;
    backdrop-filter: none;
  }

  .about-us-section .accordion-item,
  .about-us-section .accordion-item:first-child,
  .about-us-section .accordion-item.border-0 {
    border: 1px solid #ffffff !important;
    border-radius: 100px;
  }

  .about-us-section .accordion-item h5 {
    font: 18px/22px "Fira Sans Condensed";
    color: #ffffff;
  }

  .about-us-section .accordion-item.active {
    background-color: #c78720;
    border: 1px solid #c78720 !important;
  }

  .about-us-section .accordion-item.active h5 {
    text-decoration: none;
  }

  .about-us-section .accordion-icon {
    display: none;
  }

  .about-us-section .accordiontext p {
    font: 16px/21px Lato;
  }

  .logos-section {
    margin: 0;
    border-radius: 0;
  }

  /* Títulos sobre fondo imagen*/
  .hero-image {
    height: 100px;
  }

  .our-services-section .hero-image {
    background: url("/general/images/img-header-servicios-m.jpg");
  }

  .our-objectives-section .hero-image {
    background: url("/general/images/img-header-objetivos-m.jpg");
  }

  .about-us-section .hero-image {
    background: url("/general/images/img-header-sobre-nosotros-m.jpg");
  }

  .hero-section h1 {
    font: 600 21px/26px "Fira Sans Condensed SemiBold";
  }

  .our-objectives-section .title-bordered {
    height: auto;
    padding: 30px 40px;
  }

  .our-objectives-section h2 {
    font: 21px/30px Lato;
  }

  /* Sliders y Tarjetas */
  .services-slider-section {
    padding: 40px 20px;
  }

  .services-slider-section .card-body {
    padding: 20px;
  }

  .servicesSwiper {
    padding: 5px 5px 40px;
  }

  .services-slider-section h2 {
    font: 21px/30px Lato;
  }

  .card-title {
    font: 18px/24px Lato;
  }

  .service-features {
    font: 14px/17px Lato;
  }

  .arrows {
    padding: 0;
  }

  .arrows > div {
    width: 40px;
    height: 40px;
  }

  .our-objectives-section .card-image {
    height: 300px;
  }

  .card-caption {
    height: auto !important;
  }

  .aboutSwiper .card-caption h3 {
    font: 18px/24px Lato;
  }

  .objectives-slider-section .card-caption h3 {
    font: 18px/24px Lato;
  }

  .objectives-slider-section h5 {
    font: 12px/14px "Fira Sans Condensed";
  }

  /* Logos */
  .video-logos-section {
    padding: 30px 20px;
  }

  .video-logos-section h1 {
    font: 21px/26px "Fira Sans Condensed SemiBold";
  }

  .video-logos-section h2 {
    font: 21px/30px Lato;
  }

  .logo-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .logo-item {
    padding: 0;
  }

  .logo-item img {
    max-height: 80px;
  }

  /* Contacto */
  .contact-section {
    padding: 20px;
  }

  .contact-section h1 {
    font: 21px/48px Lato;
  }

  .contact-section > p {
    font: 14px/17px Lato;
  }

  .contact-section .card-title h2 {
    font: 21px/48px "Fira Sans Condensed";
  }

  .contact-section .contact-card {
    height: 350px;
    background-size: contain;
    background-position: top;
    border-radius: 20px;
  }

  .contact-section .card-content {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .contact-section .contact-link {
    font: 14px/17px Lato;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 15px;
  }

  .contact-section .contact-link span {
    text-align: center;
  }

  .contact-section .mobile-arrow {
    display: block;
    color: #000000;
    margin-left: auto;
  }

  /* Footer */
  .footer-top {
    padding: 20px;
  }

  .footer-top .contact-headline {
    font: 21px/25px Lato;
  }

  .footer-top .contact-subheadline {
    font: bold 21px/25px "Lato Bold";
    margin-bottom: 30px;
  }

  .btn-contact {
    padding: 10px 20px;
    font: 16px/19px Lato;
    justify-content: space-between;
  }

  .social-links {
    flex-direction: column;
  }

  .footer-top .social-links a {
    border: 1px solid #000000;
    border-radius: 100px;
    padding: 10px 20px;
    text-decoration: none;
    font: 16px/19px Lato;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }

  .footer-top .footer-logo-container {
    height: auto;
  }

  .footer-bottom {
    font: 12px/15px Lato;
    padding: 20px;
  }

  /* Botones scroll*/
  #fixed-button {
    position: fixed;
    width: 50px;
    height: 50px;
    padding: 15px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    box-shadow: 0px 2px 4px #00000029 !important;
    cursor: pointer;
    background-color: #c78720;
    bottom: 140px;
    right: 10px;
    max-width: 50px;
    overflow: hidden;
    border: 1px solid #ffffff80;
  }

  #fixed-button .helpIcon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }

  #fixed-button:hover {
    right: 10px;
    border: 2px solid #c78720;
    width: auto;
    max-width: 300px;
  }
}
