/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@font-face {
  font-family: "Biome-W04";
  src: url("../fonts/Biome-W01-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Biome-W04";
  src: url("../fonts/Biome-W04-Light.woff.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Biome-W04";
  src: url("../fonts/Biome-W01-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Biome-W04";
  src: url("../fonts/FontsFree-Net-Biome-W04-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Biome-W04";
  src: url("../fonts/Biome-W04-Black.ttf");
  font-weight: 900;
}
* {
  -webkit-font-smoothing: antialiased; /* Sin bold en Mac. */
  box-sizing: border-box;
}

h1, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

*:focus {
  outline: none;
}

body {
  margin: 0;
  font-family: "Biome-W04";
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
@media (max-width: 1000px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.filas2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 1000px) {
  .filas2 {
    grid-template-columns: 100%;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: white;
}
header .nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 200px auto;
  align-items: center;
}
@media (max-width: 1000px) {
  header .nav-wrapper {
    grid-template-columns: 150px auto;
  }
}
header .nav-wrapper .burger_mobile ul {
  text-align: right;
}
header .nav-wrapper .burger_mobile ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 30px;
  margin: 0 20px;
  transition: transform 0.2s ease;
}
@media (max-width: 1350px) {
  header .nav-wrapper .burger_mobile ul li {
    margin: 0;
  }
}
@media (max-width: 1000px) {
  header .nav-wrapper .burger_mobile ul li {
    display: block;
    text-align: left;
  }
}
header .nav-wrapper .burger_mobile ul li img {
  max-width: 15px;
  height: 12px;
}
header .nav-wrapper .burger_mobile ul li .menu-subemenu {
  display: none;
}
header .nav-wrapper .burger_mobile ul li:hover {
  background: linear-gradient(135deg, #D5070F, #1a0000);
  color: white;
  border-radius: 99px;
  transition: background 0.3s ease;
}
header .nav-wrapper .burger_mobile ul li:hover img {
  filter: contrast(0) brightness(10);
}
header .nav-wrapper .burger_mobile ul li:hover li {
  border-radius: 0;
}
@media (max-width: 1000px) {
  header .nav-wrapper .burger_mobile ul li:hover {
    background: transparent;
    color: black;
  }
}
header .nav-wrapper .burger_mobile ul li a {
  font-weight: 600;
  font-size: 18px;
}
header .nav-wrapper .burger_mobile ul li.activo-submenu {
  background: #D5070F;
  border-radius: 99px;
  position: relative;
  z-index: 200;
}
@media (max-width: 1000px) {
  header .nav-wrapper .burger_mobile ul li.activo-submenu {
    padding: 0;
    padding-top: 15px;
  }
}
header .nav-wrapper .burger_mobile ul li.activo-submenu a {
  color: white;
}
header .nav-wrapper .burger_mobile ul li.activo-submenu img {
  filter: contrast(0) brightness(10);
}
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu {
  display: block;
  position: absolute;
  top: 100%;
  margin-top: 5px;
  left: 0;
  right: 0;
  z-index: 100;
  background: #D5070F;
  border-radius: 20px;
  padding: 10px 0 15px 0;
}
@media (max-width: 1000px) {
  header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu {
    position: relative;
    top: 0;
    margin-top: 20px;
  }
}
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu ul li {
  display: block;
  padding: 5px 0;
  text-align: left;
  border-top: 1px solid white;
}
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu ul li a {
  color: white;
}
header .nav-wrapper .burger_mobile ul li.submenu {
  position: relative;
  text-align: left;
}
@media (max-width: 1000px) {
  header .nav-wrapper .burger_mobile ul li.submenu {
    display: grid;
    grid-template-columns: auto 15px;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
  }
  header .nav-wrapper .burger_mobile ul li.submenu:hover {
    background: transparent;
    color: black;
  }
  header .nav-wrapper .burger_mobile ul li.submenu:hover img {
    filter: none;
  }
}
header .nav-wrapper .burger_mobile ul li.submenu img {
  margin-left: 5px;
}
header .nav-wrapper .burger_mobile ul li.activo-submenu-accordeon {
  background: #D5070F !important;
}
header .nav-wrapper .burger_mobile ul li.activo-submenu-accordeon a {
  color: white;
}
header .nav-wrapper .burger_mobile ul li.activo-submenu-accordeon img {
  filter: contrast(0) brightness(10) !important;
  transform: rotate(180deg);
}
header .nav-wrapper .burger_mobile ul li.activo-submenu-accordeon .menu-subemenu {
  display: block;
  grid-column: 1/span 2;
  margin-top: 10px;
}
header .nav-wrapper .burger_mobile ul li.activo-submenu-accordeon .menu-subemenu li {
  padding: 10px 0;
  border-top: 1px solid white;
}
@media (max-width: 1000px) {
  header .nav-wrapper .burger_mobile .menu-mob {
    display: none;
  }
}
header .burger_mobile .icono {
  display: none;
}
@media (max-width: 1000px) {
  header .burger_mobile .icono {
    display: block;
    text-align: right;
  }
  header .burger_mobile .icono.activo + .menu-mob {
    top: 90px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    background: white;
    z-index: 9;
    padding-bottom: 20px;
    border-top: 2px solid #ccc;
  }
  header .burger_mobile .icono.activo span:last-child {
    display: none;
  }
  header .burger_mobile .icono.activo span:first-child {
    transform: rotate(45deg) translateY(5px);
    transform-origin: center;
  }
  header .burger_mobile .icono.activo span:nth-child(2) {
    transform: rotate(-45deg) translateY(-5px);
    transform-origin: center;
  }
}
header .burger_mobile .icono span {
  background: black;
  width: 30px;
  height: 4px;
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 1000px) {
  header .burger_mobile .icono span {
    margin-left: auto;
  }
}
@media (max-width: 1000px) {
  header .logo img {
    max-width: 200px;
  }
}

footer {
  background: #1B1D21;
  padding: 50px 0;
}
footer .container > a {
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
  position: relative;
}
footer .container > a:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
}
footer .container > a:after {
  z-index: 2;
  content: "";
  width: 150px;
  height: 40px;
  display: block;
  background: #1B1D21;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
footer .container > a img {
  position: relative;
  z-index: 9;
}
footer .container > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  footer .container > div {
    margin-top: 20px;
    grid-template-columns: 100%;
    grid-gap: 20px;
  }
}
footer .container > div > div {
  display: inline-block;
  vertical-align: middle;
  text-align: Center;
}
@media (max-width: 1000px) {
  footer .container > div > div {
    margin: 0;
    text-align: left;
  }
}
footer .container > div > div img, footer .container > div > div p {
  display: inline-block;
  vertical-align: top;
}
footer .container > div > div p {
  color: white;
  font-size: 19px;
  width: auto;
  margin: 0;
  text-align: left;
}
@media (max-width: 1000px) {
  footer .container > div > div p {
    font-size: 13px;
  }
}

.todos {
  background: black;
  padding: 30px 0;
}
.todos p {
  margin: 0;
  color: white;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .todos p {
    font-size: 12px;
  }
}

.fixed {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.fixed img {
  max-width: 60px;
}

.slider-principal .texto {
  position: absolute;
  bottom: 50px;
  left: 100px;
}
@media (max-width: 1000px) {
  .slider-principal .texto {
    left: 40px;
    bottom: 40px;
  }
}
.slider-principal .texto h2 {
  font-size: 60px;
  font-weight: 600;
  margin: 0;
  color: white;
}
@media (max-width: 1000px) {
  .slider-principal .texto h2 {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .slider-principal .texto h2 {
    font-size: 15px;
  }
}
.slider-principal .texto h2 span {
  display: block;
  color: #D5070F;
}
.slider-principal .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
@media (max-width: 1000px) {
  .slider-principal .owl-dots {
    bottom: -40px;
  }
}
.slider-principal .owl-dots button span {
  width: 21px !important;
  height: 21px !important;
}
@media (max-width: 1000px) {
  .slider-principal .owl-dots button span {
    background: white !important;
  }
}
.slider-principal .owl-dots button.active span {
  background: #D5070F !important;
}
.slider-principal .item img:last-child {
  display: none;
}
@media (max-width: 1000px) {
  .slider-principal .item img:last-child {
    display: block;
  }
  .slider-principal .item img:first-child {
    display: none;
  }
}

.nuestras-soluciones {
  padding: 50px 0;
  background: #D9D9D9;
}
@media (max-width: 1000px) {
  .nuestras-soluciones {
    padding-top: 70px;
  }
}
.nuestras-soluciones h2 {
  font-size: 60px;
  font-weight: 300;
  padding-left: 40px;
}
@media (max-width: 1000px) {
  .nuestras-soluciones h2 {
    margin: 0;
    font-size: 30px;
    padding-left: 20px;
  }
}
.nuestras-soluciones h2 span {
  display: block;
  font-weight: 600;
  position: relative;
}
.nuestras-soluciones h2 span::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #D5070F;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
@media (max-width: 1000px) {
  .nuestras-soluciones h2 span::before {
    width: 15px;
    height: 15px;
    left: -20px;
  }
}
.nuestras-soluciones .filas2 > div > a {
  display: grid;
  grid-template-columns: 130px auto;
  vertical-align: middle;
  margin: 50px 0;
  align-items: center;
}
@media (max-width: 1000px) {
  .nuestras-soluciones .filas2 > div > a {
    margin: 20px 0;
    grid-template-columns: 60px auto;
  }
}
.nuestras-soluciones .filas2 > div > a div {
  padding: 25px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  background: #D5070F;
}
@media (max-width: 1000px) {
  .nuestras-soluciones .filas2 > div > a div {
    width: 70px;
    height: 70px;
    padding: 15px;
  }
}
.nuestras-soluciones .filas2 > div > a img {
  width: 100%;
}
.nuestras-soluciones .filas2 > div > a p {
  margin: 0;
  background: #D5070F;
  font-size: 26px;
  color: white;
  font-weight: 900;
  display: grid;
  align-items: center;
  text-align: center;
  height: 50px;
  margin-left: -5px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .nuestras-soluciones .filas2 > div > a p {
    font-size: 15px;
  }
}

.nuestros-partners {
  background: #D5070F;
  padding: 50px 0;
}
.nuestros-partners h2 {
  text-align: center;
  color: white;
  margin: 0;
  font-size: 60px;
  font-weight: 300;
}
@media (max-width: 1000px) {
  .nuestros-partners h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.nuestros-partners h2 span {
  font-weight: 600;
}
.nuestros-partners .logos div {
  text-align: center;
  padding: 50px 0;
}
@media (max-width: 1000px) {
  .nuestros-partners .logos div {
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-gap: 20px;
    margin-top: 20px;
  }
}
.nuestros-partners .logos div img {
  margin: 0 50px;
}
@media (max-width: 1000px) {
  .nuestros-partners .logos div img {
    margin: 0 auto;
    max-width: 60%;
  }
}

.nosotros header .menu-mob .btn-nosotros {
  background: #D5070F;
  color: white;
  border-radius: 99px;
}
@media (max-width: 1000px) {
  .nosotros header .menu-mob .btn-nosotros {
    background: transparent;
    color: black;
  }
}

.banner-quienes-somos {
  line-height: 0;
}
.banner-quienes-somos img {
  width: 100%;
}
.banner-quienes-somos img:last-child {
  display: none;
  width: 100%;
}
@media (max-width: 1000px) {
  .banner-quienes-somos img:last-child {
    display: block;
  }
  .banner-quienes-somos img:first-child {
    display: none;
  }
}

.nuestros-valores {
  padding: 50px 0;
  background: #D9D9D9;
}
.nuestros-valores .dividido {
  display: grid;
  grid-template-columns: 30% auto;
  align-items: center;
}
@media (max-width: 1000px) {
  .nuestros-valores .dividido {
    grid-template-columns: 100%;
  }
}
.nuestros-valores .dividido h2 {
  font-size: 60px;
  font-weight: 300;
  padding-left: 40px;
}
@media (max-width: 1000px) {
  .nuestros-valores .dividido h2 {
    margin: 0;
    font-size: 30px;
    margin-bottom: 30PX;
  }
}
.nuestros-valores .dividido h2 span {
  display: block;
  font-weight: 600;
  position: relative;
}
.nuestros-valores .dividido h2 span::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #D5070F;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}
@media (max-width: 1000px) {
  .nuestros-valores .dividido h2 span::before {
    width: 15px;
    height: 15px;
    left: -20px;
  }
}
.nuestros-valores .dividido .grilla-valores {
  text-align: center;
}
.nuestros-valores .dividido .grilla-valores > div {
  max-width: 250px;
  width: 100%;
  display: inline-block;
  margin: 0 30px;
  vertical-align: top;
  text-align: center;
  padding-bottom: 30px;
}
@media (max-width: 1000px) {
  .nuestros-valores .dividido .grilla-valores > div {
    max-width: 100%;
    margin: 0;
  }
}
.nuestros-valores .dividido .grilla-valores > div p {
  font-weight: 300;
  font-size: 16px;
  text-align: justify;
  text-align-last: left;
  color: #6F6F6F;
}
.nuestros-valores .dividido .grilla-valores > div p span {
  color: #D5070F;
  display: grid;
  text-align: center;
  font-weight: 700;
  justify-content: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.nuestros-valores .dividido .grilla-valores > div .circulo {
  width: 80px;
  height: 80px;
  background: #D5070F;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 30px;
  display: grid;
  align-items: center;
  justify-content: center;
}
.nuestros-valores .dividido .grilla-valores > div .circulo:before {
  content: "";
  width: 95px;
  height: 95px;
  border: 2px solid #D5070F;
  position: absolute;
  top: -10px;
  left: -10px;
  right: 0;
  border-radius: 50%;
}

.nuestras-certi {
  background: #1B1D21;
  padding: 50px 0;
}
.nuestras-certi .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1000px) {
  .nuestras-certi .container {
    display: block;
  }
}
.nuestras-certi h2 {
  font-size: 60px;
  font-weight: 300;
  color: white;
  margin: 0;
  padding-left: 40px;
}
@media (max-width: 1000px) {
  .nuestras-certi h2 {
    margin: 0;
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.nuestras-certi h2 span {
  display: block;
  font-weight: 600;
  position: relative;
}
.nuestras-certi h2 span::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #D5070F;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}
@media (max-width: 1000px) {
  .nuestras-certi h2 span::before {
    width: 15px;
    height: 15px;
    left: -20px;
  }
}
@media (max-width: 1000px) {
  .nuestras-certi h2 + div {
    text-align: center;
  }
}
.nuestras-certi img {
  margin: 0 10px;
  max-width: 130px;
  vertical-align: middle;
}

.nuestro-alcance {
  background: #D4D4D4;
  padding: 100px 0;
}
@media (max-width: 1000px) {
  .nuestro-alcance {
    padding: 50px 0;
  }
}
.nuestro-alcance h2 {
  font-size: 60px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .nuestro-alcance h2 {
    margin: 0;
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.nuestro-alcance h2::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #D5070F;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
@media (max-width: 1000px) {
  .nuestro-alcance h2::before {
    width: 15px;
    height: 15px;
  }
}
.nuestro-alcance h2 span {
  font-weight: 700;
}
.nuestro-alcance .dividido {
  display: grid;
  grid-template-columns: 55% auto;
  grid-gap: 30px;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido {
    grid-template-columns: 100%;
    grid-gap: 10px;
  }
}
.nuestro-alcance .dividido > div {
  background: #D5070F;
}
.nuestro-alcance .dividido > div:first-child h3 {
  color: black;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido > div:first-child h3 {
    font-size: 25px;
  }
}
.nuestro-alcance .dividido > div:first-child h3 div {
  display: inline-block;
}
.nuestro-alcance .dividido > div:first-child h3 span {
  display: block;
  color: white;
  font-size: 42px;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido > div:first-child h3 span {
    font-size: 20px;
  }
}
.nuestro-alcance .dividido > div:first-child h3 small {
  font-size: 30px;
  font-weight: 300;
  color: white;
  position: relative;
  top: -20px;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido > div:first-child h3 small {
    font-size: 15px;
    top: 0px;
  }
}
.nuestro-alcance .dividido > div:first-child h3 small div {
  display: block;
}
.nuestro-alcance .dividido > div:first-child > div:first-child {
  padding: 30px 70px;
  border-bottom: 30px solid #D4D4D4;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido > div:first-child > div:first-child {
    border-bottom: 10px solid #D4D4D4;
    padding: 30px 30px;
  }
}
.nuestro-alcance .dividido > div:first-child > div:last-child {
  padding: 30px 70px;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido > div:first-child > div:last-child {
    padding: 30px;
  }
}
.nuestro-alcance .dividido > div:last-child {
  display: grid;
  align-items: center;
  padding: 30px;
}
.nuestro-alcance .dividido > div:last-child h3 {
  color: white;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido > div:last-child h3 {
    font-size: 25px;
  }
}
.nuestro-alcance .dividido > div:last-child h3 div {
  display: inline-block;
}
.nuestro-alcance .dividido > div:last-child h3 span {
  display: block;
  font-size: 42px;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido > div:last-child h3 span {
    font-size: 20px;
  }
}
.nuestro-alcance .dividido > div:last-child h3 small {
  font-weight: 300;
  font-size: 30px;
  position: relative;
  top: -20px;
}
@media (max-width: 1000px) {
  .nuestro-alcance .dividido > div:last-child h3 small {
    font-size: 15px;
    top: 0;
  }
}
.nuestro-alcance .conectividad {
  background: #1B1D21;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  padding: 10px 70px;
}
@media (max-width: 1000px) {
  .nuestro-alcance .conectividad {
    display: block;
    padding: 20px;
    margin-top: 10px;
  }
}
.nuestro-alcance .conectividad h4 {
  color: white;
  font-size: 35px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .nuestro-alcance .conectividad h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.nuestra-evolucion {
  padding: 50px 0;
}
.nuestra-evolucion h2 {
  font-size: 60px;
  font-weight: 300;
  padding-left: 40px;
}
@media (max-width: 1000px) {
  .nuestra-evolucion h2 {
    font-size: 30px;
    padding-left: 20px;
  }
}
.nuestra-evolucion h2 span {
  font-weight: 600;
  display: block;
  position: relative;
}
.nuestra-evolucion h2 span::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #D5070F;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}
@media (max-width: 1000px) {
  .nuestra-evolucion h2 span::before {
    width: 15px;
    height: 15px;
    left: -20px;
  }
}
.nuestra-evolucion .grilla {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media (max-width: 1000px) {
  .nuestra-evolucion .grilla {
    grid-template-columns: 100%;
  }
}
.nuestra-evolucion .grilla > div {
  border: 1px solid black;
  line-height: 0;
}
.nuestra-evolucion .grilla > div img {
  width: 100%;
}
.nuestra-evolucion .grilla > div .texto {
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 45% auto;
}
@media (max-width: 1000px) {
  .nuestra-evolucion .grilla > div .texto {
    padding: 20px;
  }
}
.nuestra-evolucion .grilla > div .texto h3 {
  font-size: 50px;
  font-weight: 600;
  position: relative;
  padding-right: 20px;
  text-align: center;
  line-height: 1;
}
.nuestra-evolucion .grilla > div .texto h3:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #D5070F;
  display: block;
  bottom: 5px;
  right: 38px;
  border-radius: 50%;
}
.nuestra-evolucion .grilla > div .texto p {
  border-left: 2px solid #D5070F;
  margin: 0;
  padding: 10px;
  color: #6F6F6F;
  font-size: 15px;
  font-weight: 300;
  display: grid;
  align-items: center;
  line-height: normal;
}

.soluciones header .menu-mob .btn-soluciones {
  background: #D5070F;
  color: white;
  border-radius: 99px;
}
@media (max-width: 1000px) {
  .soluciones header .menu-mob .btn-soluciones {
    background: transparent;
    color: black;
  }
}

.cloud {
  padding: 50px 0;
  background: #D9D9D9;
}
.cloud .container {
  max-width: 1115px;
}
@media (max-width: 1300px) {
  .cloud .container {
    max-width: 935px;
  }
}
.cloud h2 {
  text-align: center;
  margin: 0;
  font-size: 76px;
  font-weight: 900;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .cloud h2 {
    font-size: 30px;
  }
}
.cloud .owl-tarjetas .owl-stage, .cloud .owl-tarjetas2 .owl-stage {
  padding: 30px 0;
}
.cloud .owl-tarjetas .owl-nav, .cloud .owl-tarjetas2 .owl-nav {
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  top: 50%;
  margin: 0;
}
.cloud .owl-tarjetas .owl-nav button, .cloud .owl-tarjetas2 .owl-nav button {
  margin: 0;
  background-color: transparent !important;
  border: 10px solid white;
  border-radius: 50%;
}
@media (max-width: 1000px) {
  .cloud .owl-tarjetas .owl-nav button, .cloud .owl-tarjetas2 .owl-nav button {
    border: 0;
  }
  .cloud .owl-tarjetas .owl-nav button svg, .cloud .owl-tarjetas2 .owl-nav button svg {
    width: 40px;
    height: 40px;
  }
}
.cloud .owl-tarjetas .owl-nav button.owl-prev, .cloud .owl-tarjetas2 .owl-nav button.owl-prev {
  float: left;
  margin-left: -120px;
}
@media (max-width: 1000px) {
  .cloud .owl-tarjetas .owl-nav button.owl-prev, .cloud .owl-tarjetas2 .owl-nav button.owl-prev {
    margin-left: -20px;
  }
}
.cloud .owl-tarjetas .owl-nav button.owl-next, .cloud .owl-tarjetas2 .owl-nav button.owl-next {
  float: right;
  margin-right: -120px;
}
@media (max-width: 1000px) {
  .cloud .owl-tarjetas .owl-nav button.owl-next, .cloud .owl-tarjetas2 .owl-nav button.owl-next {
    margin-right: -20px;
  }
}
.cloud .item {
  border: 3px solid #D5070F;
  position: relative;
}
.cloud .item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 5px solid white;
  background: #D5070F;
  border-radius: 50%;
  margin: 0 auto;
  padding: 8px;
  transform: translateY(-50%);
}
.cloud .item a.activo + .texto {
  background-color: #D5070F !important;
  background-image: none !important;
}
.cloud .item a.activo + .texto h3, .cloud .item a.activo + .texto p {
  display: none;
}
.cloud .item a.activo + .texto .hover {
  display: block;
}
.cloud .item a.activo + .texto .hover p {
  display: block;
  color: white;
  font-weight: bold;
  font-size: 25px;
  text-align: justify;
}
.cloud .item a.activo + .texto .hover ul li {
  color: white;
  font-weight: normal;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.cloud .item a.activo + .texto .hover ul li:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border: 3px solid white;
  border-radius: 50%;
  display: block;
  left: 0;
  top: 3px;
}
.cloud .item .imagen {
  padding: 10px 30px;
  min-height: 96px;
}
.cloud .item .imagen h4 {
  text-align: center;
  font-size: 22px;
  color: #D5070F;
  font-weight: 600;
  margin-bottom: 10px;
}
.cloud .item .imagen div {
  display: flex;
  justify-items: center;
  justify-content: center;
}
.cloud .item .imagen div img {
  width: auto;
  margin: 0 25px;
  max-width: 118px;
}
.cloud .item .texto {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  align-items: start;
  padding: 20px;
  background-size: cover;
  background-position: center;
}
.cloud .item .texto h3 {
  font-size: 35px;
  font-weight: 600;
  margin: 0;
  color: white;
}
@media (max-width: 1000px) {
  .cloud .item .texto h3 {
    font-size: 20px;
  }
}
.cloud .item .texto p {
  font-size: 18px;
  color: white;
  text-align: justify;
}
.cloud .item .texto .hover {
  display: none;
}
.cloud.backup {
  text-align: center;
}
.cloud.backup .container {
  max-width: 885px;
}
.cloud.backup .item {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1000px) {
  .cloud.backup .item {
    max-width: 100%;
    margin: 0;
  }
}

.contacto header .menu-mob .btn-contacto {
  background: #D5070F;
  color: white;
  border-radius: 99px;
}
@media (max-width: 1000px) {
  .contacto header .menu-mob .btn-contacto {
    background: transparent;
    color: black;
  }
}
.contacto .formulario {
  padding: 50px 0;
}
.contacto .formulario p {
  text-align: center;
  font-size: 33px;
  font-weight: 600;
  max-width: 890px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .contacto .formulario p {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.contacto .formulario .filas2 {
  grid-gap: 50px;
}
.contacto .formulario .filas2 > div:first-child {
  max-width: 540px;
  padding-left: 70px;
}
@media (max-width: 1000px) {
  .contacto .formulario .filas2 > div:first-child {
    padding-left: 0;
  }
}
.contacto .formulario .filas2 input {
  border: 0;
  width: 100%;
  border-bottom: 1px solid #858383;
  padding-bottom: 10px;
  height: 30px;
  margin-bottom: 40px;
  font-size: 20px;
  font-family: "Biome-W04";
}
@media (max-width: 1000px) {
  .contacto .formulario .filas2 input {
    margin-bottom: 20px;
  }
}
.contacto .formulario .filas2 input::placeholder {
  color: #A6A6A6;
  font-size: 20px;
  font-weight: 300;
  font-family: "Biome-W04";
}
@media (max-width: 1000px) {
  .contacto .formulario .filas2 input::placeholder {
    font-size: 20px;
  }
}
.contacto .formulario .filas2 .check label {
  padding: 0;
  position: relative;
  padding-left: 34px;
  margin-bottom: 15px;
  display: block;
  font-size: 15px;
}
.contacto .formulario .filas2 .check .checkmark {
  border: 1px solid #A7A4A4;
  width: 29px;
  height: 29px;
  border-radius: 5px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contacto .formulario .filas2 .check input {
  display: none;
}
.contacto .formulario .filas2 .check input:checked + span {
  background-color: #A7A4A4;
  background-image: url(../images/check.png);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
}
.contacto .formulario .filas2 select, .contacto .formulario .filas2 label, .contacto .formulario .filas2 textarea {
  display: block;
  font-family: "Biome-W04";
}
.contacto .formulario .filas2 select {
  background-color: #D5070F;
  color: white;
  border: 0;
  height: 50px;
  max-width: 530px;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  font-weight: 300;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="20" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.9993 19.4993L0.946166 0.627626L23.4615 0.873231L11.9993 19.4993Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 15px;
  padding-right: 30px;
  font-family: "Biome-W04";
  font-weight: 600;
}
@media (max-width: 1000px) {
  .contacto .formulario .filas2 select {
    font-size: 20px;
  }
}
.contacto .formulario .filas2 select option {
  font-weight: 300;
  font-size: 20px;
  font-family: "Biome-W04";
  font-weight: 600;
}
.contacto .formulario .filas2 label {
  font-size: 20px;
  font-weight: 300;
  margin: 20px 0;
  color: #575756;
}
@media (max-width: 1000px) {
  .contacto .formulario .filas2 label {
    font-size: 20px;
  }
}
.contacto .formulario .filas2 textarea {
  max-width: 530px;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #4B4B4B;
  padding: 15px;
}
.contacto .formulario .filas2 button {
  background: #D5070F;
  color: white;
  border: 0;
  max-width: 460px;
  width: 100%;
  display: block;
  font-size: 25px;
  font-weight: 800;
  border-radius: 15px;
  margin-top: 30px;
  padding: 10px;
  margin-left: 5%;
}
@media (max-width: 1000px) {
  .contacto .formulario .filas2 button {
    font-size: 20px;
    max-width: 100%;
    margin: 0;
    margin-top: 20px;
  }
}

.tendencias header .menu-mob .btn-tendencias {
  background: #D5070F;
  color: white;
  border-radius: 99px;
}
.tendencias header .menu-mob .btn-tendencias img {
  filter: contrast(0) brightness(10);
}
@media (max-width: 1000px) {
  .tendencias header .menu-mob .btn-tendencias {
    background: transparent;
    color: black;
  }
  .tendencias header .menu-mob .btn-tendencias img {
    filter: none;
  }
}
.tendencias .varias-tendencias {
  padding: 100px 0;
}
@media (max-width: 1000px) {
  .tendencias .varias-tendencias {
    padding: 40px 0;
  }
}
.tendencias .varias-tendencias .container {
  max-width: 1130px;
}
.tendencias .varias-tendencias p {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 40px;
  text-align: justify;
}
.tendencias .varias-tendencias .filas3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media (max-width: 1000px) {
  .tendencias .varias-tendencias .filas3 {
    grid-template-columns: 100%;
    margin-bottom: 30px;
  }
}
.tendencias .varias-tendencias .filas3 > div {
  border-top-left-radius: 47px;
  border-top-right-radius: 47px;
  background: #D0D0D0;
  display: grid;
  padding-bottom: 40px;
}
.tendencias .varias-tendencias .filas3 > div > div {
  height: 100%;
  min-height: 150px;
  display: grid;
  align-content: space-between;
}
.tendencias .varias-tendencias .filas3 > div > div a {
  background: #D5070F;
  color: white;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  max-width: 45%;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 400;
  transition: all ease 0.5s;
}
.tendencias .varias-tendencias .filas3 > div > div a:hover {
  max-width: 60%;
  transition: all ease 0.5s;
}
.tendencias .varias-tendencias .filas3 > div h2 {
  color: #D5070F;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 20px;
  padding-bottom: 0;
}
.tendencias .varias-tendencias .filas3 > div img {
  width: 100%;
}
.tendencias .varias-tendencias .separador {
  display: block;
  background: #D5070F;
  height: 3px;
  margin: 100px 0;
  width: 100%;
}
@media (max-width: 1000px) {
  .tendencias .varias-tendencias .separador {
    display: none;
  }
}

.detalle-tendencias footer {
  margin-top: 50px;
}
.detalle-tendencias .banner-detalle-tendencias img {
  width: 100%;
}
.detalle-tendencias .banner-detalle-tendencias img:last-child {
  display: none;
}
@media (max-width: 1000px) {
  .detalle-tendencias .banner-detalle-tendencias img:last-child {
    display: block;
  }
}
@media (max-width: 1000px) {
  .detalle-tendencias .banner-detalle-tendencias img:first-child {
    display: none;
  }
}
.detalle-tendencias .info-detalle-tendencias img {
  width: 100%;
}
.detalle-tendencias .info-detalle-tendencias img:last-child {
  display: none;
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias img:last-child {
    display: block;
  }
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias img:first-child {
    display: none;
  }
}
.detalle-tendencias .info-detalle-tendencias .container {
  max-width: 1117px;
}
.detalle-tendencias .info-detalle-tendencias .separador2 {
  height: 3px;
  width: 100%;
  background: #D5070F;
  display: block;
  margin: 50px 0;
}
.detalle-tendencias .info-detalle-tendencias p {
  color: black;
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: justify;
}
.detalle-tendencias .info-detalle-tendencias h2 {
  margin-top: 50px;
  font-weight: 700;
  font-size: 28px;
}
.detalle-tendencias .info-detalle-tendencias h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 26px;
  color: black;
}
.detalle-tendencias .info-detalle-tendencias ul li {
  color: black;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  text-align: justify;
}
.detalle-tendencias .info-detalle-tendencias ul li:before {
  content: "";
  margin-right: 10px;
  width: 5px;
  height: 5px;
  display: inline-block;
  vertical-align: middle;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  left: 0;
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias ul li:before {
    top: 10px;
  }
}
.detalle-tendencias .info-detalle-tendencias ol {
  padding: 0;
  padding-left: 15px;
}
.detalle-tendencias .info-detalle-tendencias ol li {
  font-size: 18px;
  font-weight: 400;
  color: black;
  margin-bottom: 20px;
  text-align: justify;
}
.detalle-tendencias .info-detalle-tendencias .filas4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias .filas4 {
    grid-template-columns: 100%;
  }
}
.detalle-tendencias .info-detalle-tendencias .filas4 div {
  display: grid;
  align-content: center;
  position: relative;
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias .filas4 div {
    width: 90%;
  }
}
.detalle-tendencias .info-detalle-tendencias .filas4 div::before {
  content: "\a";
  border-style: solid;
  border-width: 93px 55px 93px 0;
  border-color: transparent white transparent transparent;
  position: absolute;
  transform: rotate(180deg);
  z-index: 0;
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias .filas4 div::before {
    border-width: 60px 35px 60px 0;
    left: -1px;
  }
}
.detalle-tendencias .info-detalle-tendencias .filas4 div::after {
  content: "\a";
  border-style: solid;
  border-width: 93px 55px 93px 0;
  border-color: transparent #d5070f transparent transparent;
  position: absolute;
  right: -55px;
  transform: rotate(180deg);
  z-index: 1;
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias .filas4 div::after {
    border-width: 58px 55px 58px 0;
    right: -54px;
  }
}
.detalle-tendencias .info-detalle-tendencias .filas4 div h3 {
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  padding: 12px;
  padding-left: 70px;
  padding-right: 0;
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias .filas4 div h3 {
    margin-top: 20px;
    padding-left: 40px;
  }
}
.detalle-tendencias .info-detalle-tendencias .filas4 .gris {
  background: #D9D9D9;
}
.detalle-tendencias .info-detalle-tendencias .filas4 .gris::after {
  content: "\a";
  border-style: solid;
  border-width: 93px 55px 93px 0;
  border-color: transparent #D9D9D9 transparent transparent;
  position: absolute;
  right: -55px;
  transform: rotate(180deg);
  z-index: 1;
}
@media (max-width: 1000px) {
  .detalle-tendencias .info-detalle-tendencias .filas4 .gris::after {
    border-width: 58px 55px 58px 0;
    right: -54px;
  }
}
.detalle-tendencias .info-detalle-tendencias .filas4 .gris h3 {
  color: black;
}
.detalle-tendencias .info-detalle-tendencias .filas4 .rojo {
  background: #D5070F;
}
/* REEMPLAZA las últimas líneas del CSS (desde "body.contacto" hasta el final) con esto: */

/* Estilo para LOGROS activo - Aplicar al <li> no al <a> */
body.page-logros header .nav-wrapper .burger_mobile ul li.btn-exito {
    background: #D5070F !important;
    color: white !important;
    border-radius: 99px;
    padding: 10px 30px !important;
    margin: 0 20px !important;
}

body.page-logros header .nav-wrapper .burger_mobile ul li.btn-exito a {
    color: white !important;
}

/* Para mobile */
@media (max-width: 1000px) {
    body.page-logros header .nav-wrapper .burger_mobile ul li.btn-exito {
        background: #D5070F !important;
        border-radius: 0 !important;
    }
}

/* ══════════════════════════════════════
   SUBMENÚ DESPLEGABLE — arreglo visual
══════════════════════════════════════ */

/* Contenedor del submenú */
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu {
  border-radius: 0 0 20px 20px;
  padding: 8px 0 14px 0;
  overflow: hidden;
}

/* Items del submenú: sin herencia de píldora del padre */
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu ul li {
  display: block;
  padding: 10px 28px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0 !important;
  background: transparent !important;
  transition: background 0.2s ease;
}

/* Primer item sin línea superior */
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu ul li:first-child {
  border-top: none;
  padding-top: 14px;
}

/* Último item con más espacio abajo */
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu ul li:last-child {
  padding-bottom: 14px;
}

/* Hover en cada opción del submenú */
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu ul li:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 0 !important;
  color: white;
}

/* Texto de los links del submenú */
header .nav-wrapper .burger_mobile ul li.activo-submenu .menu-subemenu ul li a {
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

header .nav-wrapper .burger_mobile ul li:hover {
  background: linear-gradient(270deg, #D5070F, #1a0000, #D5070F);
  background-size: 300% 300%;
  animation: gradientMove 2s ease infinite;
  color: white;
  border-radius: 99px;
  position: relative;
  z-index: 11;
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/*# sourceMappingURL=main.css.map */