@charset "UTF-8";
/* =========================
   TIPOGRAFÍAS
   ========================= */
@font-face {
  font-family: "GRegular";
  src: url(../fonts/Gilroy-Regular.ttf);
}
@font-face {
  font-family: "GBold";
  src: url(../fonts/Gilroy-Bold.ttfcl);
}
@font-face {
  font-family: "GBlack";
  src: url(../fonts/Gilroy-Black.ttf);
}
@font-face {
  font-family: "GMedium";
  src: url(../fonts/Gilroy-Medium.ttf);
}
@font-face {
  font-family: "GLight";
  src: url(../fonts/Gilroy-Light.ttf);
}
@font-face {
  font-family: "GSBold";
  src: url(../fonts/Gilroy-SemiBold.ttf);
}
div {
  font-family: "GRegular";
}

.display-1,
h5,
h3,
h2 {
  font-family: "GSBold";
}

b {
  font-family: "GBold";
}

strong {
  font-family: "GBlack";
}

/* =========================
   VARIABLES
   ========================= */
:root {
  --dot-size: 12px;
  --dot-gap: 12px;
  --header-h: 64px;
  --overlay: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .35));
  --card-bg: rgba(255, 255, 255, .85);
  --glass: rgba(255, 255, 255, .15);
  --glass-b: rgba(255, 255, 255, .35);
}

/* =========================
   GLOBAL
   ========================= */
html,
body {
  height: 100%;
  scroll-behavior: auto;
}

body {
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

.text-dark {
  color: #3d3d3d !important;
}

.radius-100 {
  border-radius: 100%;
  width: 30vw !important;
  height: 30vw !important;
}
@media (max-width: 1400px) {
  .radius-100 {
    width: 40vw !important;
    height: 40vw !important;
  }
}
@media (max-width: 1200px) {
  .radius-100 {
    width: 300px !important;
    height: 300px !important;
  }
}
@media (max-width: 768px) {
  .radius-100 {
    width: 270px !important;
    height: 270px !important;
  }
}
@media (max-width: 576px) {
  .radius-100 {
    width: 180px !important;
    height: 180px !important;
  }
}

.backdrop {
  backdrop-filter: blur(20px);
}

/* =========================
   HEADER
   ========================= */
.intro-curtain {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
  opacity: 1;
  pointer-events: none;
}

.site-header {
  height: var(--header-h);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  z-index: 1000;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-filter: none;
          filter: none;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}
@media (max-width: 992px) {
  .site-header {
    height: 90px;
  }
}
@media (max-width: 768px) {
  .site-header {
    height: 60px;
  }
}
.site-header.is-fixed {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
}
.site-header.hide {
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.site-header.show {
  opacity: 1;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.site-header nav {
  background: rgba(10, 10, 10, 0.349);
  border-radius: 10px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .site-header .mx-3 {
    width: 30px;
  }
}
.site-header .logo-mobile {
  width: 100px;
}
@media (max-width: 768px) {
  .site-header .logo-mobile {
    width: 60px;
    height: auto;
  }
}
.site-header .bg-danger {
  background-color: #c61200 !important;
  border-end-end-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 992px) {
  .site-header .bg-danger {
    border-radius: 0px;
    font-size: 20px !important;
  }
}
@media (max-width: 768px) {
  .site-header .bg-danger {
    border-radius: 0px;
    font-size: 14px !important;
  }
}
.site-header .bg-dark {
  border-end-end-radius: 20px;
  border-top-right-radius: 20px;
}
.site-header #navMain,
.site-header .navbar-nav {
  height: 100%;
}
.site-header .nav-link {
  color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  position: relative;
}
@media (max-width: 992px) {
  .site-header .nav-link {
    font-size: 12px;
  }
}
.site-header .nav-link.active:after {
  width: 100%;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  left: 0%;
  background: #ffffff;
  /* transform: translateX(-50%); */
  bottom: 15px;
  height: 2px;
  position: absolute;
  content: "";
}

/* H1 con dos líneas que se abren desde el centro */
.bienvenida {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.05em;
  overflow: visible;
}

.bienvenida .line-wrap {
  display: block;
  overflow: hidden;
  line-height: 1.1;
}

.bienvenida-line {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

/* línea 1 terminará arriba, línea 2 abajo */
.bienvenida-line-1 {
  /* estado inicial: centrada (y=0), la moveremos hacia arriba con GSAP */
}

.bienvenida-line-2 {
  /* estado inicial: centrada (y=0), la moveremos hacia abajo con GSAP */
}

/* Chevron inicial (entrará con GSAP) */
.chevron {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

/* =========================
   SECTIONS
   ========================= */
.section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  z-index: 1;
}
.section.pin {
  position: relative;
  z-index: 1;
}

.bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  -webkit-filter: saturate(1.05) contrast(1.02);
          filter: saturate(1.05) contrast(1.02);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.bg-overlay-2 {
  position: absolute;
  inset: 0;
  background: rgba(0, 61, 113, 0.3411764706);
}

.content {
  position: relative;
  z-index: 2;
}

.glass {
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.section {
  position: relative;
  overflow: hidden;
}

.section .bg-img {
  position: absolute;
  left: 0;
  right: 0;
  top: -10vh;
  bottom: -10vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Por si acaso hubiera separación entre secciones */
#s2 {
  margin-bottom: 0;
  background: transparent;
}

#s3 {
  margin-top: 0;
}

/* =========================
   SECCIONES ESPECÍFICAS
   ========================= */
@media (max-width: 768px) {
  #s2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#s2 #pills-tabContent {
  max-height: 400px;
  overflow-y: hidden !important;
}
@media (max-width: 768px) {
  #s2 #pills-tabContent {
    max-height: unset;
    overflow-y: unset !important;
  }
}
#s2 #pills-profile {
  padding-top: 50px;
}
@media (max-width: 768px) {
  #s2 #pills-profile {
    padding-top: 20px;
  }
}
#s2 .owl-flex {
  margin-top: 20px;
}
#s2 .owl-flex .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -30px;
  right: 0px;
}
#s2 .owl-flex .owl-nav button {
  margin: 5px;
  background: rgba(255, 255, 255, 0);
  border-radius: 17px;
  height: 34px;
  width: 50px;
  border: 1px solid #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#s2 .owl-flex .owl-nav button img {
  width: 18px;
}
#s2 .nav-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#s2 .nav-item .nav-link {
  padding: 20px;
  width: 100%;
  color: white;
  border: 1px solid white;
  font-size: 24px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  #s2 .nav-item .nav-link {
    padding: 10px;
  }
}
#s2 .tab-pane {
  border-radius: 10px;
  padding: 30px;
  color: white;
  border: 1px solid white;
  font-size: 22px;
  height: 400px;
}
@media (max-width: 768px) {
  #s2 .tab-pane {
    height: unset;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  #s2 .tab-pane p {
    margin-bottom: 5px;
  }
}
#s2 #pills-contact {
  font-size: 18px;
}

#s1 {
  z-index: 1;
}

/* S2 se monta un poco sobre S1 */
#s2 {
  position: relative;
  z-index: 2;
}
#s3 .primer-wrapper {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* centra vertical */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* centra horizontal */
  height: 100%;
}

#s3 {
  min-height: 100vh;
}
#s3 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#s3 .bg-img {
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (max-width: 768px) {
  #s3 {
    height: 160vh !important;
  }
}
@media (max-width: 992px) {
  #s3 {
    border-radius: 0px;
  }
}
#s3 #label {
  top: 0px;
  background-color: #ffffff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media (max-width: 992px) {
  #s3 #label {
    display: none;
  }
}
#s3 .underlabel {
  margin: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 200px;
}
@media (max-width: 768px) {
  #s3 .underlabel {
    margin-top: 50px;
  }
}
#s3 .underlabel .primer {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1400px) {
  #s3 .underlabel .primer {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  #s3 .underlabel .primer {
    height: 40vh;
  }
}
@media (max-width: 768px) {
  #s3 .underlabel .segundo {
    height: 60vh;
  }
}
#s3 .bg-white {
  padding: 50px 40px 0 40px;
  font-size: 12.1px;
}
#s3 .bg-white a {
  color: black;
  text-decoration: none;
}
#s3 .bg-white p {
  font-family: GMedium;
}
#s3 h5 {
  border-bottom: 1px solid white;
  font-size: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #s3 h5 {
    margin-bottom: 10px;
  }
}
#s3 .wow-card {
  position: relative;
  min-height: 450px;
}
@media (max-width: 768px) {
  #s3 .wow-card {
    min-height: 320px;
    margin-bottom: 40px;
  }
}
#s3 .wow-card img {
  margin: 20px 0;
}
@media (max-width: 768px) {
  #s3 .wow-card img {
    margin: 10px 0;
  }
}
#s3 .wow-card p {
  margin-bottom: 0;
}

.section {
  position: relative;
  overflow: hidden;
}
.section .bg-img {
  position: absolute;
  inset: -10vh 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.section .content {
  position: relative;
  z-index: 1;
}

#s3 {
  position: relative;
  color: #fff;
  min-height: 100vh;
}
#s3 #label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: #ffffff;
  color: #111;
  line-height: 187%;
  color: #686767 !important;
  padding: 35px 20px 20px 20px;
}
#s3 #label p {
  font-size: 14px !important;
}
#s3 #label .container {
  font-size: 0.95rem;
}
#s3 .underlabel {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 100px;
}
#s3 .primer h1 {
  margin: 0;
}
#s3 .glass.wow-card.extra {
  position: relative;
  border-radius: 15px;
  backdrop-filter: blur(92px);
  background: rgba(64, 64, 65, 0.4);
  color: #fff;
  overflow: hidden;
  min-height: 410px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
#s3 .glass.wow-card.extra h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}
#s3 .glass.wow-card.extra p {
  margin-bottom: 0.3rem;
}
#s3 .glass.wow-card.extra img.bottom-right {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 60px;
  height: auto;
}
@media (max-width: 991.98px) {
  #s3 .underlabel {
    padding-top: 110px;
    padding-bottom: 70px;
  }
  #s3 .glass.wow-card.extra {
    margin-bottom: 1.5rem;
  }
  #s3 #label .col-6 {
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  #s3 #label .row {
    text-align: center;
  }
  #s3 #label .row .col-6 {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  #s3 #label .row .text-end {
    text-align: center !important;
  }
}

#s3 {
  position: relative;
  overflow: hidden;
}

#s3 {
  position: relative;
}

.s3-inner {
  min-height: 130vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  pointer-events: none;
}

#s5 .slider-container h3 {
  font-size: 2.8rem;
}
#s3 .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform;
  z-index: -1;
}

#s5 {
  height: 100vh;
}
@media (max-width: 768px) {
  #s5 {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  #s5 .slider-item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
#s5 .owl-prop .p-2 {
  padding-right: 60px !important;
  padding-left: 60px !important;
}
@media (max-width: 576px) {
  #s5 .owl-prop .p-2 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
@media (max-width: 576px) {
  #s5 .owl-prop .name {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #s5 .owl-prop p {
    font-size: 12px;
    text-align: justify;
  }
}
#s5 .owl-prop .owl-nav .owl-next span, #s5 .owl-prop .owl-nav .owl-prev span {
  font-size: 140px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  color: red;
  position: absolute;
  left: 0px;
}
@media (max-width: 768px) {
  #s5 .owl-prop .owl-nav .owl-next span, #s5 .owl-prop .owl-nav .owl-prev span {
    font-size: 80px;
  }
}
#s5 .owl-prop .owl-nav .owl-next span {
  top: 60px;
  left: -5px;
}
@media (max-width: 768px) {
  #s5 .owl-prop .owl-nav .owl-next span {
    top: 0px;
    left: 10px;
  }
}
@media (max-width: 576px) {
  #s5 .owl-prop .owl-nav .owl-next span {
    top: -30px;
    left: 10px;
  }
}
#s5 .owl-prop .owl-nav .owl-prev span {
  bottom: 190px;
  left: -5px;
}
@media (max-width: 1200px) {
  #s5 .owl-prop .owl-nav .owl-prev span {
    bottom: 130px;
  }
}
@media (max-width: 992px) {
  #s5 .owl-prop .owl-nav .owl-prev span {
    bottom: unset;
    top: 200px;
  }
}
@media (max-width: 768px) {
  #s5 .owl-prop .owl-nav .owl-prev span {
    bottom: unset;
    top: 160px;
    left: 10px;
  }
}
@media (max-width: 576px) {
  #s5 .owl-prop .owl-nav .owl-prev span {
    top: 90px;
  }
}
#s5 .owl-prop .owl-dots {
  counter-reset: slides-num; /* Initialize counter. */
  position: absolute;
  top: 225px;
  left: 5px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  #s5 .owl-prop .owl-dots {
    top: 110px;
  }
}
@media (max-width: 576px) {
  #s5 .owl-prop .owl-dots {
    top: 60px;
  }
}
#s5 .owl-prop .owl-dots:after {
  content: counter(slides-num); /* get total number of items - more info on http://www.sitepoint.com/a-little-known-way-to-replace-some-scripts-with-css-counters/ */
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  vertical-align: middle;
  padding-left: 0px;
}
#s5 .owl-prop .owl-dot {
  display: inline-block;
  counter-increment: slides-num; /* Increment counter */
  margin-right: 5px;
}
#s5 .owl-prop .owl-dot span {
  display: none;
}
#s5 .owl-prop .owl-dot.active:before {
  content: counter(slides-num) " /"; /* Use the same counter to get current item. */
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
#s5 .nav {
  width: 40px;
  position: absolute;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#s6 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 768px) {
  #s6 .bg-overlay {
    background: rgba(0, 0, 0, 0.7294117647);
  }
}
#s6 .grilla .col-md-4 {
  position: relative;
  border-left: 1px solid white;
  border-top: 1px solid white;
  height: calc(33vh + 3px);
  padding: 20px;
  font-size: 13px;
}
@media (max-width: 992px) {
  #s6 .grilla .col-md-4 {
    padding-top: 50px;
  }
}
@media (max-width: 992px) {
  #s6 .grilla .col-md-4 {
    padding: 0px 20px;
    height: unset;
    border: unset;
    border-bottom: 1px solid white;
  }
}
@media (max-width: 576px) {
  #s6 .grilla .col-md-4 {
    border-top: 1px solid white;
    padding-top: unset;
  }
}
#s6 .grilla .col-md-4.nb {
  border: unset !important;
}
#s6 .grilla .col-md-4.this:hover {
  background-color: rgba(255, 255, 255, 0.2509803922);
}
#s6 .grilla .col-md-4 .bajada {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: end;
  width: 200px;
  font-size: 15px;
  -webkit-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
}
@media (max-width: 992px) {
  #s6 .grilla .col-md-4 .bajada {
    position: unset;
    text-align: start;
    opacity: unset;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  #s6 .grilla .col-md-4 .bajada {
    width: unset;
    display: none;
  }
}
#s6 .grilla .col-md-4 .titulo {
  font-size: 19px;
}
@media (max-width: 992px) {
  #s6 .grilla .col-md-4 .titulo {
    font-size: 17px;
    font-weight: bold;
  }
}
@media (max-width: 576px) {
  #s6 .grilla .col-md-4 .titulo {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }
}
#s6 .grilla .col-md-4:hover .bajada {
  opacity: 1;
}
#s6 .accordion {
  background-color: none !important;
}
#s6 .accordion .accordion-item {
  background-color: unset;
  border: unset;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  border-radius: 0px;
}
#s6 .accordion .accordion-button {
  padding: 5px 20px;
  background: none;
  border: none;
  border-radius: 0px;
  color: white;
  font-weight: bolder !important;
}
#s6 .accordion .accordion-button:after {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
#s6 .accordion .accordion-button h4 {
  color: white;
  font-weight: bolder !important;
}
#s6 .accordion .accordion-body {
  padding: 5px 20px;
  background: none;
  border: none;
  border-radius: 0px;
}
#s6 .accordion .accordion-body p {
  color: white;
  margin-bottom: 0px;
}

#s7 .movi-logo {
  width: 380px;
}
@media (max-width: 768px) {
  #s7 .movi-logo {
    width: 90%;
    margin: auto;
  }
}
#s7 .box-ico .ico {
  font-size: 12px;
  height: 110px;
  margin: 10px;
  border: 1px solid white !important;
  border-radius: 10px;
  width: 95px;
  padding: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  #s7 .box-ico .ico {
    margin: 2px;
    padding: 2px;
    padding-top: 10px;
  }
  #s7 .box-ico .ico img {
    margin-bottom: 5px;
  }
  #s7 .box-ico .ico p {
    margin-bottom: 0px;
  }
}
#s7 .box-ico .ico img {
  width: 40px;
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
  margin-bottom: 15px;
}
#s7 .box-ico .ico:hover img {
  width: 43px;
  margin-bottom: 10px;
}

#s8 .logos {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media (max-width: 768px) {
  #s8 .logos {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
#s8 .logos img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 1s ease;
  transition: -webkit-filter 1s ease;
  transition: filter 1s ease;
  transition: filter 1s ease, -webkit-filter 1s ease;
}
@media (max-width: 768px) {
  #s8 .logos img {
    max-width: 150px;
  }
}
@media (max-width: 576px) {
  #s8 .logos img {
    max-width: 110px;
  }
}
#s8 .logos img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
#s8 .card {
  border: unset !important;
  border-radius: 20px;
}
@media (max-width: 768px) {
  #s8 .card p {
    font-size: 14px;
  }
}
#s8 .form-control {
  border: 1px solid rgba(0, 0, 0, 0.7529411765);
  border-radius: 20px;
}
#s8 .btn {
  border-radius: 20px;
}

@media (max-width: 768px) {
  #s9 .this-flex {
    margin-top: -100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: distribute;
        align-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#s9 .this-flex .iso {
  margin-right: -20px;
}
@media (max-width: 768px) {
  #s9 .this-flex .iso {
    margin-right: 0px;
  }
}
#s9 .this-flex .logo {
  margin-right: -20px;
}
@media (max-width: 768px) {
  #s9 .this-flex .logo {
    margin-right: 0px;
  }
}
#s9 .addr {
  bottom: 20px;
  left: 20px;
  width: 350px;
}
#s9 .addr a {
  color: white;
  text-decoration: none;
}
#s9 p {
  font-size: 16px;
  margin-bottom: 0px;
}

/* =========================
   COMPONENTES EXTRA
   ========================= */
.bottom-right {
  position: absolute;
  bottom: 20px;
  right: 30px;
}

.client-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 40px;
  font-weight: 700;
  border: 2px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .client-icon {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: rgba(255, 255, 255, 0.2509803922);
}

.bg-white-40 {
  background-color: rgba(255, 255, 255, 0.2509803922);
}

.bg-dark-40 {
  background-color: rgba(0, 0, 0, 0.2509803922);
}

.ejecutivo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ejecutivo .d-block {
  padding: 20px;
}

.owl-flex .profile {
  max-width: 200px;
  border-radius: 20px;
}

.ico-in {
  width: 20px !important;
  height: 20px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.slider-wrap {
  overflow: hidden;
  width: 100%;
}

.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.ejecutivo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 15px);
          flex: 0 0 calc(50% - 15px);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .ejecutivo {
    padding: 10px 0px;
  }
}
.ejecutivo img.profile {
  border-radius: 20px;
  max-width: 200px;
  width: 100%;
  margin-bottom: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
}
.ejecutivo h4 {
  margin: 5px 0;
}
.ejecutivo p {
  font-size: 14px;
}
@media (max-width: 768px) {
  .ejecutivo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.long {
  min-height: 150vh;
}

#mobileMenu {
  position: fixed;
  top: 0;
  right: -100%; /* oculto por defecto */
  width: 50%;
  height: 100%;
  background: #222;
  -webkit-transition: right 1s ease;
  transition: right 1s ease;
  z-index: 9999;
}
@media (max-width: 768px) {
  #mobileMenu {
    width: 80%;
  }
}
@media (max-width: 576px) {
  #mobileMenu {
    width: 100%;
  }
}
#mobileMenu .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#mobileMenu .nav-link {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  #mobileMenu .nav-link {
    font-size: 16px;
    margin-bottom: 2px;
  }
}

#mobileMenu .nav-link::after {
  width: 0%;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  left: 0%;
  background: #ffffff;
  /* transform: translateX(-50%); */
  bottom: 0px;
  height: 2px;
  position: absolute;
  content: "";
}

#mobileMenu .nav-link:hover::after {
  /* -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%); */
  width: 100%;
  /* -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease; */
}

#mobileMenu.active {
  right: 0%; /* cuando está activo */
}

.hamb {
  cursor: pointer;
  padding: 10px 20px;
  background: #444;
  color: #fff;
  display: inline-block;
}

.close {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 20px;
  cursor: pointer;
}
.close img {
  width: 20px;
}

.overlay {
  background: rgba(0, 0, 0, 0.4392156863);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.overlay.active {
  opacity: 1;
  z-index: 997;
}

.extra {
  background: rgba(0, 0, 0, 0.2509803922);
}

.section--larga {
  position: relative;
  min-height: 135svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.section--larga.pin {
  position: relative;
  z-index: 1;
}

/* Estado normal de la bg, asociada a la sección */
#s2 .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: 0;
  top: -100px;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

/* Estado "pegado" mientras estamos en S2 */
#s2 .bg-img.bg-fixed-s2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

#s1 {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Sección base */
#s3 {
  position: relative;
}

/* Wrapper que se pinnea (título + cards) */
#s3 .s3-inner {
  position: relative;
}

/* 🔥 TÍTULO SIEMPRE CENTRADO EN LA PANTALLA */
/* 🔥 Cards: empujadas hacia abajo para que entren desde abajo sin mover el título */
#s3 .segundo {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

#s5 {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
#s5 h2 {
  font-size: 2rem;
  text-align: left;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 20px;
  padding-top: 100px;
}

#s6 {
  position: relative;
  z-index: 2; /* MÁS alto que S5 */
  min-height: 100vh;
}
#s6 h3 {
  font-size: 3.5rem;
  padding-top: 20px;
}
#s6 h5 {
  font-size: 1.6rem;
  margin-bottom: 15px !important;
}
#s6 .desc {
  padding: 0 5% !important;
  font-size: 1rem;
}

#s7 {
  position: relative;
  z-index: 3; /* MÁS alto que S5 */
  min-height: 100vh;
}