@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap");

@font-face {
  font-family: "CandyChicks";
  src: url("../fonts/Candy Chicks.woff2") format("woff2"),
    url("../fonts/Candy Chicks.woff") format("woff"),
    url("../fonts/Candy Chicks.ttf") format("ttf"),
    url("../fonts/Candy Chicks.otf") format("otf");
}

/* GENERAL */

html {
  font-size: 1.2vw;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  overflow-x: hidden;
}

section {
  padding: 3.5rem 0;
}

main {
  padding: 4rem 0;
  position: relative;
}

/* FONT STYLES */

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.fs-marca {
  font-family: "CandyChicks", cursive;
  font-weight: 500;
}

.fs-special {
}

.f-10 {
  font-size: 10rem;
  line-height: 7rem;
}

.f-8 {
  font-size: 8rem !important;
}

.f-7 {
  font-size: 7rem !important;
}

.f-6 {
  font-size: 6rem !important;
}

.f-5 {
  font-size: 5rem !important;
}

.f-4 {
  font-size: 4rem;
}

.f-3 {
  font-size: 3rem;
}

.f-25 {
  font-size: 2.5rem;
}

.f-25 .fs-marca {
  font-size: 4rem;
  line-height: 1;
}

.f-2 {
  font-size: 2rem;
}

.f-185 {
  font-size: 1.85rem;
  line-height: 2.5rem;
}

.f-15 {
  font-size: 1.5rem;
}

.f-125 {
  font-size: 1.25rem;
}

.play-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

#videoOverlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}

.text-main {
  color: rgba(0, 73, 135, 1) !important;
}

.text-senti {
  color: #ef8e00;
}

.text-descubri {
  color: #ca488e;
}

.text-evoluciona {
  color: #2fa866;
}

.main-gradient {
  background: rgb(5, 151, 216);
  background: radial-gradient(
    circle,
    rgba(5, 151, 216, 1) 0%,
    rgba(0, 73, 135, 1) 100%
  );
  background-size: 200%;
}

.main-gradient-rotated {
  background: rgb(5, 151, 216);
  background: radial-gradient(
    circle,
    rgba(0, 73, 135, 1) 0%,
    rgba(5, 151, 216, 1) 100%
  );
  background-size: 200%;
}

.gradient-2 {
  background: linear-gradient(90deg, #0598d9, #ce6ca2);
}

.gradient-text {
  background: linear-gradient(-90deg, #56ccd2, #0599da);
}

.gradient-text-rotated {
  background: linear-gradient(90deg, #56ccd2, #0599da);
}

.gradient-btn {
  background: linear-gradient(270deg, #56ccd2, #0599da);
}

ul li {
  list-style: none;
}

/* HEADER */

header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 40000;
  top: 0;
  box-shadow: 0px 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
}

.header-static {
  height: calc(6rem + 35.22px + 3rem);
}

#menuMobile {
  position: fixed;
  top: calc(6rem + 35.22px + 3rem);
  z-index: 25;
  left: 0;
  background-color: white;
  height: calc(100vh - 61px);
  width: 310px;
  padding-right: 0;
  padding-left: 0;
  color: #034d8e !important;
}

#menuMobile li {
  border-bottom: 1px solid #034d8e;
  padding: 2.5rem 0;
}

#menuMobile .dropdown {
  padding: 0 2rem;
}

#menuMobile .nav-link {
  color: #034d8e;
  text-align: left;
}

#menuMobile {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

#menuMobile.show {
  transform: translateX(0);
}

#menuMobile .dropdown-menu {
  position: relative !important;
  transform: none !important;
  border: none !important;
  color: #034d8e !important;
  flex-direction: column !important;
  gap: 20px !important;
  margin-top: 20px !important;
}

#menuMobile .dropdown-menu.show {
  display: flex !important;
}

#menuMobile .dropdown-item {
  color: #034d8e !important;
}

#burgerMenu.show .menu-open {
  display: none;
}

#burgerMenu .menu-close {
  display: none;
}

#burgerMenu.show .menu-close {
  display: block;
}

.menu-mobile-overlay {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.menu-mobile-overlay.show {
  transform: translateX(0);
}

.dropdown-mobile .dropdown-divider {
  margin: 0 !important;
}

.dropdown-mobile ul {
  padding: 0rem;
}

.dropdown-mobile li {
  padding: 1rem;
}

.dropdown-toggle {
  border-radius: 3rem;
  padding: 0.3rem 1rem;
  height: min-content;
  width: fit-content;
  text-decoration: none;
}

.dropdown-toggle::after {
  background-image: url("https://www.unificadolaol.com/imagenes/2025/svg/icono-flecha-abajo-azul.svg");
  border: none !important;
  width: 2.5rem;
  height: 2rem;
  vertical-align: -0.125rem !important;
  background-size: cover;
}

.dropdown-toggle.show::after {
  background-image: url("https://www.unificadolaol.com/imagenes/2025/svg/icono-flecha-arriba-azul.svg");
}

.dropdown-toggle.show {
  color: rgba(0, 73, 135, 1);
  background-color: white;
}

.dropdown-item {
  font-weight: 500;
}

.dropdown-item.active,
.dropdown-item:active {
  color: inherit !important;
  text-decoration: underline;
  background-color: initial !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: inherit !important;
  text-decoration: underline;
  background-color: initial !important;
}

/* FOOTER */

footer {
}

.footer-line {
  height: 2px;
}

.follow-us-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.follow-us-card p {
  margin-bottom: 0 !important;
}

.follow-us-card img {
  width: min-content;
}

/* UI */

.bg-main {
  background-color: rgba(0, 73, 135, 1);
}

.carousel-inner {
  overflow-y: hidden;
  display: flex;
  align-items: center;
}

.carousel-cover-bottom {
  box-shadow: 0px -200px 40px -150px rgba(255, 255, 255, 1) inset;
  -webkit-box-shadow: 0px -200px 40px -150px rgba(255, 255, 255, 1) inset;
  -moz-box-shadow: -0px -200px 40px -150px rgba(255, 255, 255, 1) inset;
}

.carousel-cover-bottom-2 {
  box-shadow: 0px -200px 100px -10px rgba(255, 255, 255, 1) inset;
  -webkit-box-shadow: 0px -200px 100px -10px rgba(255, 255, 255, 1) inset;
  -moz-box-shadow: 0px -200px 100px -10px rgba(255, 255, 255, 1) inset;
}

.carousel-cover-top {
  box-shadow: 0px 200px 40px -150px rgba(255, 255, 255, 1) inset;
  -webkit-box-shadow: 0px 200px 40px -150px rgba(255, 255, 255, 1) inset;
  -moz-box-shadow: -0px 200px 40px -150px rgba(255, 255, 255, 1) inset;
  z-index: 2;
}

.hero-img-row div {
  height: 18.75rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.rounded-7 {
  border-radius: 7rem;
}

.rounded-6 {
  border-radius: 6rem;
}

.rounded-5 {
  border-radius: 5rem;
}

.rounded-4 {
  border-radius: 4rem;
}

.rounded-3 {
  border-radius: 3rem !important;
}

.rounded-2 {
  border-radius: 2rem !important;
}

.rounded-gradient {
  background: linear-gradient(90deg, #0599da, #56ccd2);
  width: max-content;
}

.rounded-gradient p {
  width: max-content;
}

.rounded-btn {
  border-radius: 15rem;
  padding: 0.3rem 1rem;
  height: min-content;
  width: fit-content;
  text-decoration: none;
}

.banner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.background {
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.background-texture {
  width: 100%;
  height: 100%;
  background-size: cover;
  max-width: 1700px !important;
  margin: auto;
}

main div:not(.background) {
  position: relative;
  z-index: 5;
}

footer div:not(.background) {
  position: relative;
  z-index: 5;
}

@media (min-width: 1700px) {
  .background-texture {
    background-size: contain !important;
  }
}

.exp-carousel {
}

.exp-item {
  height: 100%;
}

.exp-item-content {
  background-size: 300%;
  height: 100%;
}

.evoluciona-cards {
  max-width: 75%;
}

.evoluciona-steps {
  box-shadow: 2px 5px 20px 0px rgba(119, 119, 119, 0.59);
  -webkit-box-shadow: 2px 5px 20px 0px rgba(119, 119, 119, 0.59);
  -moz-box-shadow: 2px 5px 20px 0px rgba(119, 119, 119, 0.59);
}

.evoluciona-steps-content {
  z-index: 3;
  height: 25rem;
}

.evoluciona-steps .icon {
  height: 5rem;
}

#evolucionaCarousel .carousel-inner {
  max-height: initial !important;
  height: 100%;
  background: linear-gradient(#0599da, #56ccd2);
}

#evolucionaCarousel .carousel-item {
  height: 50vh;
}

#evolucionaCarousel .col {
  padding: 0 !important;
}

#evolucionaCarousel .carousel-control-prev,
#evolucionaCarousel .carousel-control-next {
  opacity: 1 !important;
  z-index: 10;
}

#evolucionaCarousel .carousel-control-prev {
  left: -6rem;
}

#evolucionaCarousel .carousel-control-next {
  right: -6rem;
}

.w-fit {
  width: fit-content;
}

.w-33 {
  width: 33%;
}

.step {
  width: 20%;
  position: absolute;
}

.step:nth-child(1) {
  left: 13%;
  top: 40%;
}

.step:nth-child(2) {
  left: 0;
  right: 0;
  margin: auto;
  top: 15%;
}

.step:nth-child(3) {
  top: 50%;
  right: 7%;
}

.principios-grid .grid-item img {
  width: 10rem;
}

.hoverme:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition: 0.3s;
}

.hoverme-2:hover {
  transform: scale(0.95);
  cursor: pointer;
  transition: 0.3s;
}

.list li {
  list-style: disc !important;
  margin-bottom: 1rem;
}

.shading {
  box-shadow: 8px 8px 5px -6px rgba(160, 160, 160, 0.75);
  -webkit-box-shadow: 8px 8px 5px -6px rgba(160, 160, 160, 0.75);
  -moz-box-shadow: 8px 8px 5px -6px rgba(160, 160, 160, 0.75);
}

.evoluciona-square {
  border-radius: 2rem;
  border: 1px solid rgba(0, 73, 135, 1);
  aspect-ratio: 1 / 0.8;
  position: relative !important;
  overflow-x: hidden;
}

.evoluciona-square.filled {
  background-color: rgba(0, 73, 135, 1);
}

.carousel-text-upper {
  position: relative;
  z-index: 5;
}

@media (min-width: 769px) {
  .f-md-7 {
    font-size: 7rem !important;
    line-height: 5rem !important;
  }

  .carousel-cover-top {
    display: none;
  }

  .carousel-text {
    background: linear-gradient(90deg, white 50%, transparent 100%);
    padding-right: 10rem;
  }

  .carousel-text.end-0 {
    background: linear-gradient(270deg, white 50%, transparent 100%);
    padding-left: 10rem;
    padding-right: 0 !important;
  }

  .carousel-text .text-start {
    margin-right: 0;
  }

  .carousel-text .text-end {
    margin-left: 8rem !important;
  }

  .f-md-3 {
    font-size: 3rem !important;
  }

  .f-md-25 {
    font-size: 2.5rem !important;
  }

  .f-md-25 .fs-marca {
    font-size: 4rem !important;
    line-height: 1 !important;
  }

  .f-md-2 {
    font-size: 2rem !important;
  }

  .f-md-185 {
    font-size: 1.85rem !important;
    line-height: 2.5rem !important;
  }

  .f-md-15 {
    font-size: 1.5rem !important;
  }

  .f-md-125 {
    font-size: 1.25rem !important;
  }

  .f-md-1 {
    font-size: 1rem !important;
  }

  .carousel-text {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-bottom: 10rem !important;
  }

  .carousel-text-upper {
    z-index: 5;
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .carousel:has(.carousel-text) .carousel-inner {
    width: 80% !important;
    margin-left: auto;
    margin-right: 0;
  }

  .evoluciona-cards {
    max-width: 60%;
  }

  .carousel-title .text-start {
    margin-left: 3rem;
  }

  .carousel-title .text-end {
    margin-left: 7rem;
  }
}

@media (min-width: 990px) {
  html {
    font-size: 1.2vw;
  }

  .f-lg-3 {
    font-size: 3rem;
  }

  .f-lg-25 {
    font-size: 2.5rem;
  }

  .f-lg-25 .fs-marca {
    font-size: 4rem;
    line-height: 1;
  }

  .f-lg-2 {
    font-size: 2rem;
  }

  .f-lg-185 {
    font-size: 1.85rem;
    line-height: 2.5rem;
  }

  .f-lg-15 {
    font-size: 1.5rem;
  }

  .f-lg-125 {
    font-size: 1.25rem;
  }

  .f-lg-1 {
    font-size: 1rem;
  }

  .carousel-inner {
    max-height: 90vh;
  }

  .dropdown-toggle::after {
    background-image: url("https://www.unificadolaol.com/imagenes/2025/svg/icono-flecha-abajo-blanco.svg");
    width: 1rem;
    height: 1rem;
  }

  .header-static {
    height: calc(5rem + 43px);
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 1vw;
  }
}

@media (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1807px) {
}
