@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  margin: 0;
  background-color: #fafafa;
  color: #222;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  font-weight: 300;
}

#main-content {
  overflow-x: hidden;
}

strong {
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
}

.site-header {
  background: #262626;
  color: #fff;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  /* 🔹 Botón hamburguesa */
  /* 🔹 Menú principal */
  /* Mostrar botón hamburguesa solo en móvil */
}
@media screen and (max-width: 768px) {
  .header-inner div:last-of-type {
    position: absolute;
    width: 100%;
    left: 0;
    top: 61px;
  }
}
.header-inner .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-inner .logo a {
  display: flex;
}
.header-inner .logo a img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-inner .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header-inner .menu-toggle .hamburger {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header-inner .menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.header-inner .menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}
.header-inner .menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}
.header-inner .main-nav {
  position: relative;
  z-index: 10;
  margin: 0;
  /* 🔸 Animación */
  /* 🔹 Mobile */
}
.header-inner .main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-inner .main-nav li {
  position: relative;
  /* 🔸 Submenú */
  /* Mostrar submenú al pasar el mouse */
}
.header-inner .main-nav li a,
.header-inner .main-nav li span {
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 14px;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}
.header-inner .main-nav li a:hover,
.header-inner .main-nav li span:hover {
  background-color: #cce3ff;
  color: #071b7a;
  opacity: 1 !important;
}
.header-inner .main-nav li a.is-active,
.header-inner .main-nav li span.is-active {
  background: #cce3ff;
  color: #071b7a;
}
.header-inner .main-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #262626;
  border-radius: 0 0 8px 8px;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  display: none;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.header-inner .main-nav li ul li {
  width: 100%;
}
.header-inner .main-nav li ul li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-inner .main-nav li ul li a:hover {
  background: #cce3ff;
  color: #303030;
}
.header-inner .main-nav li:hover > ul {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .header-inner .main-nav {
    display: none;
    flex-direction: column;
    background: #262626;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
  }
  .header-inner .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .header-inner .main-nav li {
    width: 100%;
    text-align: left;
    /* Submenú en mobile */
  }
  .header-inner .main-nav li a,
  .header-inner .main-nav li span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.8rem 1.2rem;
  }
  .header-inner .main-nav li ul {
    position: static;
    display: none;
    background: #1e1e1e;
    padding-left: 1rem;
    border-left: 3px solid #3b82f6;
  }
  .header-inner .main-nav li.open > ul {
    display: block;
  }
  .header-inner .main-nav.open {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .menu-toggle {
    display: flex;
  }
}

.site-footer {
  background: #1c1c1c;
  color: #f3f3f3;
  padding: 3rem 0;
  font-size: 0.9rem;
}
.site-footer .logos-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .site-footer .logos-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer .logos-flex img {
    width: 100%;
    max-width: 180px;
  }
}
.site-footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-inner .social-icons {
  display: flex;
  gap: 10px;
}
.site-footer .footer-inner .footer-col .footer-logo {
  width: 120px;
  display: block;
  margin-bottom: 30px;
}
.site-footer .footer-inner .footer-col h4 {
  color: #f3f3f3;
  margin-bottom: 1rem;
}
.site-footer .footer-inner .footer-col a,
.site-footer .footer-inner .footer-col p {
  color: #f3f3f3;
  margin-bottom: 10px;
  display: block;
}
.site-footer .footer-inner .footer-col a:hover,
.site-footer .footer-inner .footer-col p:hover {
  color: #9eb8ff;
}
.site-footer .footer-bottom {
  padding-top: 1rem;
  text-align: center;
}
.site-footer .footer-bottom img {
  width: 100%;
}

h2 {
  font-weight: 400;
  font-size: 28px;
}
h2 span,
h2 strong {
  padding: 5px 10px;
  color: #fff;
  background-color: #086ffc;
}

.banner {
  height: 660px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
@media screen and (max-width: 768px) {
  .banner {
    height: auto;
  }
}
.banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .container {
  padding: 80px 20px;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .banner .container {
    padding: 80px 20px;
  }
}
.banner .text {
  position: relative;
}
.banner .text svg {
  position: absolute;
  bottom: -66px;
  left: -64px;
}
.banner h2 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .banner h2 {
    font-size: 25px;
  }
}
.banner h2 span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.banner small {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Sora", sans-serif;
  font-size: 26px;
  display: block;
  background-color: #fe581e;
  padding: 8px;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .banner small {
    font-size: 16px;
  }
}
.banner.version2 h2 {
  color: #fff;
}
.banner.version2.hoy h2 {
  color: #fff;
}
.banner.version2.hoy h2 span {
  background-color: #fe581e;
}

.body2,
.body1 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .body2,
  .body1 {
    flex-direction: column;
    gap: 30px;
  }
}
.body2 p,
.body1 p {
  margin-bottom: 15px;
  line-height: 22px;
}
.body2 .left,
.body2 .right,
.body2 .content,
.body1 .left,
.body1 .right,
.body1 .content {
  max-width: 550px;
  width: 100%;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .body2 .left,
  .body2 .right,
  .body2 .content,
  .body1 .left,
  .body1 .right,
  .body1 .content {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .body2 .content,
  .body1 .content {
    padding: 0;
  }
}

.body1 {
  background-color: #f8edda;
  max-height: 710px;
  justify-content: center;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .body1 {
    max-height: none;
    flex-direction: column;
  }
}
.body1 h2 {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .body1 h2 {
    font-size: 36px;
  }
}
.body1 .left {
  padding: 0 20px;
}
.body1 .content {
  padding: 0 32px;
  border-left: 1px solid #303030;
}

.body2 {
  background-color: #096ffc;
  color: #fff;
  min-height: 560px;
}
.body2 .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 39%;
}
@media screen and (max-width: 768px) {
  .body2 .left {
    max-width: 100%;
  }
}
.body2 .splide__pagination {
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  border-radius: 8px;
}
.body2 .splide__pagination .splide__pagination__page {
  background-color: #b2b2b2;
  opacity: 1;
}
.body2 .splide__pagination .splide__pagination__page.is-active {
  background-color: #fe581e;
}
.body2 .splide__track {
  height: 100%;
}
.body2 .splide,
.body2 .imagen {
  flex: 1;
}
.body2 .splide img,
.body2 .imagen img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.datosGenerales {
  background-color: #fff;
}
.datosGenerales .container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .datosGenerales .container {
    flex-direction: column;
  }
}
.datosGenerales .container h2 {
  max-width: 340px;
  width: 100%;
  font-size: 38px;
}
.datosGenerales .container h2 span {
  background-color: #fe581e;
}
.datosGenerales .container .content {
  padding: 15px;
  border-left: 1px solid #303030;
  font-size: 18px;
  max-width: 490px;
}

.descargables {
  background-color: #f8edda;
}
.descargables .container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .descargables .container {
    flex-direction: column;
  }
}
.descargables .container h2 span {
  padding: 0 20px;
  color: #fff;
  background-color: #086ffc;
}
.descargables .container .content {
  padding: 15px;
  border-left: 1px solid #303030;
  font-size: 18px;
  max-width: 460px;
}
.descargables .container .content strong {
  color: #1b4edb;
}

.listDescargables,
.listDatos {
  background-color: #303030;
  min-height: 512px;
  display: flex;
  align-items: center;
  overflow-x: auto; /* 👈 permite desplazamiento horizontal */
  /* Opcional: personalizar scroll bar */
}
.listDescargables .container,
.listDatos .container {
  display: flex;
  align-items: center;
  gap: 19px;
}
.listDescargables .card-zibo:nth-child(0),
.listDatos .card-zibo:nth-child(0) {
  background-color: #fe581e;
  color: #fff;
}
.listDescargables .card-zibo:nth-child(1),
.listDatos .card-zibo:nth-child(1) {
  background-color: #fff;
  color: #000;
}
.listDescargables .card-zibo:nth-child(2),
.listDatos .card-zibo:nth-child(2) {
  background-color: #086ffc;
  color: #ffffff;
}
.listDescargables .card-zibo:nth-child(3),
.listDatos .card-zibo:nth-child(3) {
  background-color: #fcd5a9;
  color: #000000;
}
.listDescargables .card-zibo:nth-child(4),
.listDatos .card-zibo:nth-child(4) {
  background-color: #fe581e;
  color: #ffffff;
}
.listDescargables .card-zibo:nth-child(5),
.listDatos .card-zibo:nth-child(5) {
  background-color: #f8edda;
  color: #000000;
}
.listDescargables .card-zibo:nth-child(6),
.listDatos .card-zibo:nth-child(6) {
  background-color: #086ffc;
  color: #ffffff;
}
.listDescargables .card-zibo:nth-child(7),
.listDatos .card-zibo:nth-child(7) {
  background-color: #ef9355;
  color: #000;
}
.listDescargables .card-zibo:nth-child(8),
.listDatos .card-zibo:nth-child(8) {
  background-color: #3db3ee;
  color: #000;
}
.listDescargables .card-zibo:nth-child(9),
.listDatos .card-zibo:nth-child(9) {
  background-color: #fe581e;
  color: #fff;
}
.listDescargables .card-zibo:nth-child(10),
.listDatos .card-zibo:nth-child(10) {
  background-color: #fff;
  color: #000;
}
.listDescargables .card-zibo:nth-child(11),
.listDatos .card-zibo:nth-child(11) {
  background-color: #086ffc;
  color: #ffffff;
}
.listDescargables .card-zibo:nth-child(12),
.listDatos .card-zibo:nth-child(12) {
  background-color: #fcd5a9;
  color: #000000;
}
.listDescargables .card-zibo:nth-child(13),
.listDatos .card-zibo:nth-child(13) {
  background-color: #fe581e;
  color: #ffffff;
}
.listDescargables .card-zibo:nth-child(14),
.listDatos .card-zibo:nth-child(14) {
  background-color: #f8edda;
  color: #000000;
}
.listDescargables .card-zibo:nth-child(15),
.listDatos .card-zibo:nth-child(15) {
  background-color: #086ffc;
  color: #ffffff;
}
.listDescargables .card-zibo:nth-child(16),
.listDatos .card-zibo:nth-child(16) {
  background-color: #ef9355;
  color: #000;
}
.listDescargables .card-zibo:nth-child(17),
.listDatos .card-zibo:nth-child(17) {
  background-color: #3db3ee;
  color: #000;
}
.listDescargables .card-zibo:nth-child(18),
.listDatos .card-zibo:nth-child(18) {
  background-color: #fe581e;
  color: #fff;
}
.listDescargables .card-zibo:nth-child(19),
.listDatos .card-zibo:nth-child(19) {
  background-color: #fff;
  color: #000;
}
.listDescargables .card-zibo:nth-child(20),
.listDatos .card-zibo:nth-child(20) {
  background-color: #086ffc;
  color: #ffffff;
}
.listDescargables .card-zibo,
.listDatos .card-zibo {
  flex: 0 0 auto; /* 👈 evita que las tarjetas se achiquen */
  width: 320px;
  height: 320px;
  border-radius: 0 56px 0 56px;
  overflow: hidden;
  scroll-snap-align: start; /* 👈 alinea cada tarjeta al hacer scroll */
  position: relative;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .listDescargables .card-zibo,
  .listDatos .card-zibo {
    width: 280px;
  }
}
.listDescargables .card-zibo:last-of-type,
.listDatos .card-zibo:last-of-type {
  margin-right: 56px;
}
.listDescargables .card-zibo:hover,
.listDatos .card-zibo:hover {
  transform: scale(1.05);
}
.listDescargables .card-zibo__image,
.listDatos .card-zibo__image {
  width: 100%;
  height: 100%;
  border-radius: 0 56px 0 56px;
  position: relative;
}
.listDescargables .card-zibo__image::after,
.listDatos .card-zibo__image::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.listDescargables .card-zibo .content,
.listDatos .card-zibo .content {
  padding: 19px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.listDescargables .card-zibo .icon,
.listDatos .card-zibo .icon {
  margin-bottom: 15px;
}
.listDescargables .card-zibo .icon img,
.listDatos .card-zibo .icon img {
  width: 60px;
}
.listDescargables .card-zibo svg,
.listDatos .card-zibo svg {
  margin-bottom: 15px;
}
.listDescargables .card-zibo small,
.listDescargables .card-zibo strong,
.listDescargables .card-zibo p,
.listDatos .card-zibo small,
.listDatos .card-zibo strong,
.listDatos .card-zibo p {
  display: block;
}
.listDescargables .card-zibo small,
.listDatos .card-zibo small {
  font-size: 20px;
  font-weight: 400;
  font-family: "Sora", sans-serif;
}
.listDescargables .card-zibo strong,
.listDatos .card-zibo strong {
  font-weight: 400;
  font-family: "Sora", sans-serif;
  font-size: 26px;
  margin-bottom: 32px;
}
.listDescargables .card-zibo p,
.listDatos .card-zibo p {
  font-size: 14px;
  text-align: right;
  max-width: 230px;
  margin: 0 0 0 auto;
}
.listDescargables .card-zibo__overlay,
.listDatos .card-zibo__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 0;
}
.listDescargables .card-zibo__label,
.listDatos .card-zibo__label {
  background: #fe581e;
  border-radius: 0 15px 15px 0;
  padding: 10px 16px;
  max-width: 240px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.listDescargables .card-zibo__label h3,
.listDatos .card-zibo__label h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.listDescargables .card-zibo__label h3 strong,
.listDatos .card-zibo__label h3 strong {
  margin: 0;
  font-size: 18px;
}
.listDescargables .card-zibo__label p,
.listDatos .card-zibo__label p {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
}
.listDescargables::-webkit-scrollbar,
.listDatos::-webkit-scrollbar {
  height: 8px;
}
.listDescargables::-webkit-scrollbar-thumb,
.listDatos::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}
.listDescargables::-webkit-scrollbar-track,
.listDatos::-webkit-scrollbar-track {
  background: #2b2b2b;
}

.listDescargables {
  background-color: #fff;
  min-height: auto;
  padding-bottom: 80px;
}
.listDescargables .card-zibo {
  border-radius: 56px 0 56px 0;
}
.listDescargables .card-zibo:nth-child(1n) {
  background-color: #fe581e;
}
.listDescargables .card-zibo:nth-child(1n) .content {
  color: #fff;
}
.listDescargables .card-zibo:nth-child(2n) {
  background-color: #086ffc;
}
.listDescargables .card-zibo:nth-child(2n) .content {
  color: #fff;
}
.listDescargables .card-zibo:nth-child(3n) {
  background-color: #fcd5a9;
}
.listDescargables .card-zibo:nth-child(3n) .content {
  color: #000;
}
.listDescargables .card-zibo:nth-child(4n) {
  background-color: #b2b2b2;
}
.listDescargables .card-zibo:nth-child(4n) .content {
  color: #000;
}
.listDescargables .card-zibo .content {
  text-align: right;
}
.listDescargables .card-zibo .content small {
  font-size: 17px;
}
.listDescargables .card-zibo .content strong {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 29px;
}
.listDescargables .card-zibo .content svg {
  margin: 0 0 15px auto;
}
.listDescargables .card-zibo__image {
  border-radius: 56px 0 56px 0;
}
.listDescargables .card-zibo__image .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  padding: 12px;
}
.listDescargables .card-zibo__image .download-btn svg,
.listDescargables .card-zibo__image .download-btn img {
  margin: 0;
  width: 16px;
}

.descargables {
  background-color: #fff;
}
.descargables .container h2 {
  font-size: 39px;
}
.descargables .container .content {
  padding: 15px 32px;
  max-width: 790px;
}
@media screen and (max-width: 768px) {
  .descargables .container .content {
    font-size: 14px;
  }
}

.objetivo {
  background-color: #fff;
}
.objetivo .container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .objetivo .container {
    flex-direction: column;
  }
}
.objetivo .container h2 {
  max-width: 270px;
  width: 100%;
  font-size: 38px;
}
.objetivo .container .content {
  padding: 32px;
  border-left: 1px solid #303030;
  font-size: 16px;
  max-width: 730px;
}
@media screen and (max-width: 768px) {
  .objetivo .container .content {
    font-size: 18px;
  }
}
.objetivo .container .content p {
  font-weight: 300;
}
.objetivo .container .content p em {
  background-color: #086ffc;
  font-style: normal;
  color: #fff;
}
.objetivo .container .content p strong {
  font-weight: 400;
}

.como-sera {
  background-color: #303030;
}
.como-sera .container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 20px 0;
  color: #fff;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .como-sera .container {
    flex-direction: column;
  }
}
.como-sera .container .content {
  padding: 0 32px;
  border-left: 1px solid #fff;
  font-size: 14px;
  max-width: 540px;
  line-height: 22px;
}
.como-sera .container .content p strong {
  color: #086ffc;
}
.como-sera .mapa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .como-sera .mapa {
    display: none;
  }
}
.como-sera .linkMapa {
  display: none;
}
@media screen and (max-width: 768px) {
  .como-sera .linkMapa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    width: 90%;
    padding: 12px;
    font-size: 12px;
    margin: 30px auto;
  }
}

.btn {
  padding: 5px 10px;
  background-color: #086ffc;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  font-size: 25px;
}

.beneficios {
  padding: 72px 20px;
  background: #f5f5f5;
}
.beneficios .container {
  max-width: 1000px;
}
.beneficios .container h2 {
  display: block;
  border-bottom: 1px solid #303030;
  font-size: 80px;
  line-height: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .beneficios .container h2 {
    font-size: 50px;
    line-height: 50px;
  }
}
.beneficios .beneficios-container {
  gap: 2rem;
  padding-bottom: 1rem;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .beneficios .beneficios-container {
    padding: 0;
  }
}
.beneficios .beneficio-card {
  display: flex;
  margin-bottom: 40px;
  background: #096ffc;
  border-radius: 0 32px 0 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .beneficios .beneficio-card {
    flex-direction: column;
  }
}
.beneficios .beneficio-card .image {
  position: relative;
  width: 50%;
  height: 390px;
}
@media screen and (max-width: 768px) {
  .beneficios .beneficio-card .image {
    width: 100%;
    height: auto;
  }
}
.beneficios .beneficio-card .image .flag {
  position: absolute;
  padding: 7px 15px 7px 40px;
  bottom: 30px;
  left: 0;
  background-color: #096ffc;
  color: #fff;
  font-weight: 700;
}
.beneficios .beneficio-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .beneficios .beneficio-card img {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
}
.beneficios .beneficio-card .beneficio-content {
  padding: 2rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .beneficios .beneficio-card .beneficio-content {
    width: 100%;
  }
}
.beneficios .beneficio-card .beneficio-content .beneficio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 30px;
}
.beneficios .beneficio-card .beneficio-content .beneficio-header h3 {
  font-size: 1.5rem;
  background-color: #fe581e;
  color: #fff;
  font-weight: normal;
  padding: 0.3rem 1rem;
}
.beneficios .beneficio-card .beneficio-content ul {
  margin-top: 1rem;
  max-width: 490px;
  margin: 0 auto;
  padding-left: 45px;
}
@media screen and (max-width: 768px) {
  .beneficios .beneficio-card .beneficio-content ul {
    padding-left: 0;
  }
}
.beneficios .beneficio-card .beneficio-content ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .beneficios .beneficio-card .beneficio-content ul li {
    font-size: 14px;
  }
}
.beneficios .beneficio-card .beneficio-content ul li strong {
  font-weight: 700;
}
.beneficios .beneficio-card:nth-of-type(2n) {
  background-color: #3db3ee;
  color: #000;
}
.beneficios .beneficio-card:nth-of-type(2n) .image .flag {
  background-color: #086ffc;
  color: #fff;
  left: inherit;
  right: 0;
}
.beneficios .beneficio-card:nth-of-type(2n) .beneficio-content .beneficio-header h3 {
  background-color: #fe581e;
  color: #fff;
}
.beneficios .beneficio-card:nth-of-type(3n) {
  background-color: #f5f5f5;
  color: #000;
}
.beneficios .beneficio-card:nth-of-type(3n) .image .flag {
  color: #000;
  background-color: #3db3ee;
}
.beneficios .beneficio-card:nth-of-type(3n) .beneficio-content .beneficio-header h3 {
  background-color: #096ffc;
  color: #fff;
}
.beneficios .beneficio-card:nth-of-type(4n) {
  background-color: #ef9355;
  color: #000;
}
.beneficios .beneficio-card:nth-of-type(4n) .image .flag {
  color: #fff;
  background-color: #fe581e;
}
.beneficios .beneficio-card:nth-of-type(4n) .beneficio-content .beneficio-header h3 {
  background-color: #fe581e;
  color: #fff;
}
.beneficios .beneficio-card:nth-of-type(5n) {
  background-color: #3db3ee;
  color: #000;
}
.beneficios .beneficio-card:nth-of-type(5n) .image .flag {
  background-color: #ef9355;
  color: #a33314;
}
.beneficios .beneficio-card:nth-of-type(5n) .beneficio-content .beneficio-header h3 {
  background-color: #096ffc;
  color: #fff;
}
.beneficios .beneficio-card:nth-of-type(2n) {
  flex-direction: row-reverse;
  border-radius: 0 0 0 32px;
}
@media screen and (max-width: 768px) {
  .beneficios .beneficio-card:nth-of-type(2n) {
    flex-direction: column;
  }
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  padding: 12px;
}
.download-btn svg,
.download-btn img {
  width: 16px;
  margin: 0;
}

.historia {
  background-color: #f8edda;
  min-height: 560px;
  align-items: center;
}
.historia .container {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .historia .container {
    flex-direction: column;
  }
}
.historia .container h2 {
  font-size: 30px;
  color: #000;
}
.historia .container h2 span {
  background-color: #fe581e;
  color: #fff;
}
.historia .container .content {
  padding: 32px;
  max-width: 620px;
  border-left: 1px solid #303030;
}
.historia .container .content h3 {
  font-weight: 700;
  color: #000;
}
.historia .container .content p {
  color: #000;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.preloader img {
  width: 180px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1001;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translate(-50%, -50%);
}
.preloader::after {
  content: "";
  background: radial-gradient(circle, #303030 0%, rgb(0, 0, 0) 80%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
}

.noticias {
  background-color: #d3e5ff;
}
.noticias .container.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .noticias .container.intro {
    flex-direction: column;
  }
}
.noticias .container.intro h2 span {
  padding: 5px 40px;
}
.noticias .container.intro .content {
  padding: 32px;
  max-width: 620px;
  border-left: 1px solid #303030;
}
.noticias ul.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 120px;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .noticias ul.container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.noticias ul.container li {
  width: 100%;
  list-style-type: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #f3f3f3;
}
.noticias ul.container li a {
  text-decoration: none;
  display: block;
  width: 100%;
  color: inherit;
}
.noticias ul.container li a img {
  width: 100%;
  aspect-ratio: 16/9;
}
.noticias ul.container li a .noticia-item__content {
  padding: 24px;
}
.noticias ul.container li a .noticia-item__content span.date {
  font-size: 12px;
  color: #6a7282;
}
.noticias ul.container li a .noticia-item__content span.category {
  color: #0a0a0a;
  padding: 4px 12px;
  font-size: 12px;
  border: 1px solid #0a0a0a;
}
.noticias ul.container li a .noticia-item__content .noticia-item__header {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.noticias ul.container li a .noticia-item__content h4 {
  color: #0a0a0a;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 5px;
}
.noticias ul.container li a .noticia-item__content p {
  font-size: 13px;
  color: #4a5565;
  margin-bottom: 8px;
}
.noticias ul.container li a .noticia-item__content span.link {
  color: #000000;
  font-size: 12px;
}

.predio {
  background-color: #e6e6e6;
}
.predio .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 95px 20px;
}
@media screen and (max-width: 768px) {
  .predio .container {
    flex-direction: column;
  }
}
.predio .container h1 {
  background-color: #fe581e;
  font-weight: 400;
  color: #fff;
  max-width: 375px;
  text-align: right;
  padding: 10px 20px;
  margin-right: 30px;
}
.predio .container .content {
  max-width: 550px;
  width: 100%;
  padding: 32px;
  border-left: 1px solid #303030;
}
@media screen and (max-width: 768px) {
  .predio .container .content {
    max-width: 100%;
  }
}
.predio .container .content p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  font-family: "Sora", sans-serif;
  color: #303030;
}

.vive {
  background-color: #e6e6e6;
}
.vive .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 95px 20px;
}
@media screen and (max-width: 768px) {
  .vive .container {
    flex-direction: column;
  }
}
.vive .container h1 {
  background-color: #086ffc;
  font-weight: 400;
  color: #fff;
  max-width: 370px;
  text-align: right;
  padding: 10px 20px;
  margin-right: 30px;
}
.vive .container .content {
  max-width: 550px;
  width: 100%;
  padding: 32px;
  border-left: 1px solid #303030;
}
@media screen and (max-width: 768px) {
  .vive .container .content {
    max-width: 100%;
  }
}
.vive .container .content p {
  font-size: 14px;
  line-height: 22px;
  color: #303030;
}

.fases {
  display: flex;
  align-items: center;
  gap: 19px;
  justify-content: center;
  padding: 80px 20px 0;
}
.fases .fase-1,
.fases .fase-2,
.fases .fase-3 {
  flex: 0 0 auto; /* 👈 evita que las tarjetas se achiquen */
  width: 320px;
  border-radius: 0 56px 0 56px;
  overflow: hidden;
  scroll-snap-align: start; /* 👈 alinea cada tarjeta al hacer scroll */
  position: relative;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .fases .fase-1,
  .fases .fase-2,
  .fases .fase-3 {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .fases .fase-1,
  .fases .fase-2,
  .fases .fase-3 {
    flex-direction: column;
  }
}
.fases .fase-1 .content,
.fases .fase-2 .content,
.fases .fase-3 .content {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  flex-direction: column;
  max-width: 640px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fases .fase-1 .content,
  .fases .fase-2 .content,
  .fases .fase-3 .content {
    max-width: 100%;
  }
}
.fases .fase-1 .content .icon,
.fases .fase-2 .content .icon,
.fases .fase-3 .content .icon {
  width: 100%;
}
.fases .fase-1 .content .icon img,
.fases .fase-2 .content .icon img,
.fases .fase-3 .content .icon img {
  width: 40px;
}
.fases .fase-1 .content .icon svg,
.fases .fase-2 .content .icon svg,
.fases .fase-3 .content .icon svg {
  margin-bottom: 16px;
}
.fases .fase-1 .content .icon small,
.fases .fase-2 .content .icon small,
.fases .fase-3 .content .icon small {
  display: block;
  width: 100%;
  font-family: "Sora", sans-serif;
}
.fases .fase-1 .content h2,
.fases .fase-2 .content h2,
.fases .fase-3 .content h2 {
  margin-bottom: 16px;
  width: 100%;
  font-size: 25px;
  font-weight: 300;
}
.fases .fase-1 .content p,
.fases .fase-2 .content p,
.fases .fase-3 .content p {
  font-size: 14px;
}
.fases .fase-1 .image img,
.fases .fase-2 .image img,
.fases .fase-3 .image img {
  max-width: 1440px;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.fases .fase-1 .content {
  background-color: #086ffc;
}
.fases .fase-2 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .fases .fase-2 {
    flex-direction: column;
  }
}
.fases .fase-2 .content {
  color: #000;
  background-color: #ef9355;
}
.fases .fase-3 .content {
  background-color: #303030;
}

.eventos .evento-1,
.eventos .evento-2,
.eventos .evento-3 {
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .eventos .evento-1,
  .eventos .evento-2,
  .eventos .evento-3 {
    flex-direction: column;
  }
}
.eventos .evento-1 .content,
.eventos .evento-2 .content,
.eventos .evento-3 .content {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 72px;
  flex-direction: column;
  max-width: 540px;
  width: 100%;
}
.eventos .evento-1 .content .icon,
.eventos .evento-2 .content .icon,
.eventos .evento-3 .content .icon {
  margin-bottom: 16px;
  width: 100%;
}
.eventos .evento-1 .content .icon svg,
.eventos .evento-2 .content .icon svg,
.eventos .evento-3 .content .icon svg {
  margin-bottom: 16px;
}
.eventos .evento-1 .content .icon small,
.eventos .evento-2 .content .icon small,
.eventos .evento-3 .content .icon small {
  display: block;
  width: 100%;
}
.eventos .evento-1 .content h2,
.eventos .evento-2 .content h2,
.eventos .evento-3 .content h2 {
  margin-bottom: 16px;
  width: 100%;
  font-size: 50px;
  font-weight: 300;
}
.eventos .evento-1 .content p,
.eventos .evento-2 .content p,
.eventos .evento-3 .content p {
  margin-bottom: 18px;
}
.eventos .evento-1 .content a,
.eventos .evento-2 .content a,
.eventos .evento-3 .content a {
  width: 100%;
}
.eventos .evento-1 .image,
.eventos .evento-2 .image,
.eventos .evento-3 .image {
  height: 510px;
  width: 100%;
}
.eventos .evento-1 .image img,
.eventos .evento-2 .image img,
.eventos .evento-3 .image img {
  max-width: 1440px;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.eventos .evento-1 .content {
  background-color: #096ffc;
}
.eventos .evento-2 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .eventos .evento-2 {
    flex-direction: column;
  }
}
.eventos .evento-2 .content {
  color: #000;
  background-color: #3db3ee;
}
.eventos .evento-3 .content {
  color: #000;
  background-color: #ef9355;
}

.form .container {
  padding: 88px 20px;
  max-width: 800px;
  width: 100%;
}
.form .container h2 {
  margin-bottom: 24px;
  text-align: center;
}
.form .container h2 span,
.form .container h2 strong {
  padding: 5px 20px;
}
.form .container p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 24px;
}
.form .container p strong {
  color: #5a5a5a;
}

.portafolio {
  background-color: #f8edda;
}
.portafolio .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 20px;
}
@media screen and (max-width: 768px) {
  .portafolio .container {
    flex-direction: column;
  }
}
.portafolio .container h2 {
  font-weight: 400;
  color: #000;
  max-width: 370px;
  text-align: right;
  padding: 10px 20px;
  margin-right: 30px;
}
.portafolio .container h2 span {
  display: block;
  background-color: #fe581e;
}
.portafolio .container .content {
  max-width: 550px;
  width: 100%;
  padding: 0 32px;
  border-left: 1px solid #303030;
}
@media screen and (max-width: 768px) {
  .portafolio .container .content {
    max-width: 100%;
  }
}
.portafolio .container .content p {
  font-size: 14px;
  line-height: 22px;
  color: #303030;
  margin-bottom: 30px;
}

.servicios {
  background-color: #303030;
  padding: 48px 0;
}
.servicios h2 {
  text-align: center;
  margin-bottom: 48px;
}
.servicios h2 span {
  background-color: #fff;
  color: #303030;
}
.servicios .info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .servicios .info {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.servicios .info article {
  padding: 48px;
}
.servicios .info article .icon {
  margin-bottom: 15px;
}
.servicios .info article .icon img {
  width: 60px;
}
.servicios .info article h3 {
  font-size: 27px;
  font-weight: 300;
  margin-bottom: 12px;
}
.servicios .info article p {
  font-size: 14px;
  line-height: 22px;
}
.servicios .info article:nth-of-type(1) {
  background-color: #096ffc;
  color: #fff;
  border-radius: 56px 0 56px 0;
}
.servicios .info article:nth-of-type(2) {
  background-color: #fe581e;
  border-radius: 0 56px 0 56px;
  color: #fff;
}
.servicios .info article:nth-of-type(3) {
  background-color: #3db3ee;
  color: #000;
  border-radius: 0 56px 0 56px;
}
.servicios .info article:nth-of-type(4) {
  background-color: #ef9355;
  color: #000;
  border-radius: 56px 0 56px 0;
}

.datos_contacto .container {
  padding: 88px 20px;
}
.datos_contacto .container h2 {
  width: 100%;
  margin: 0 auto 72px;
  display: block;
  text-align: center;
}
.datos_contacto .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  align-items: center;
  justify-content: center;
  max-width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .datos_contacto .container ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.datos_contacto .container ul li {
  list-style-type: none;
}
.datos_contacto .container ul li:nth-of-type(6) {
  grid-column: 1;
}
.datos_contacto .container ul li strong {
  font-weight: 500;
}
.datos_contacto .container ul li a,
.datos_contacto .container ul li p {
  color: #000;
  font-size: 14px;
  line-height: 22px;
}

.marcashoy .listDatos {
  background-color: #f5f5f5;
  display: block;
  padding-top: 72px;
  overflow: hidden;
}
.marcashoy .listDatos h2 {
  text-align: center;
  margin: 0 auto 72px;
}
.marcashoy .listDatos h2 span {
  background-color: #0c2793;
}
@media screen and (max-width: 768px) {
  .marcashoy .listDatos .container {
    flex-direction: column;
  }
}
.marcashoy .card-zibo {
  flex: 0 0 auto; /* 👈 evita que las tarjetas se achiquen */
  width: 25%;
  height: 320px;
  border-radius: 0 56px 0 56px;
  overflow: hidden;
  scroll-snap-align: start; /* 👈 alinea cada tarjeta al hacer scroll */
  background-color: #fff;
  position: relative;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .marcashoy .card-zibo {
    width: 280px;
  }
}
.marcashoy .card-zibo:last-of-type {
  margin-right: 56px;
}
.marcashoy .card-zibo:hover {
  transform: scale(1.05);
}
.marcashoy .card-zibo__image {
  width: 100%;
  height: 100%;
  border-radius: 0 56px 0 56px;
  background-size: cover;
  position: relative;
  background-color: #fe581e;
  background-position: center;
  background-blend-mode: multiply;
}
.marcashoy .card-zibo__image::after {
  content: none;
}
.marcashoy .card-zibo .content {
  padding: 19px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.marcashoy .card-zibo svg,
.marcashoy .card-zibo .icon img {
  width: 30px;
  margin-bottom: 15px;
}
.marcashoy .card-zibo small,
.marcashoy .card-zibo strong,
.marcashoy .card-zibo p {
  display: block;
}
.marcashoy .card-zibo small {
  font-size: 20px;
}
.marcashoy .card-zibo p,
.marcashoy .card-zibo strong {
  font-size: 15px;
  text-align: right;
  max-width: 260px;
  display: inline;
  margin: 0 0 0 auto;
}
.marcashoy .card-zibo__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 0;
  gap: 0;
  width: 100%;
}
.marcashoy .card-zibo__label {
  background: #ffffff;
  border-radius: 0;
  padding: 10px 16px;
  max-width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 100px;
}
.marcashoy .card-zibo__label h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.marcashoy .card-zibo__label h3 strong {
  margin: 0;
}
.marcashoy .card-zibo__label p {
  margin: 0;
  font-size: 14px;
  color: #071b7a;
  font-weight: 400;
  flex: 1;
  text-align: left;
}
.marcashoy .card-zibo:nth-child(2n) {
  background-color: #086ffc;
}
.marcashoy .card-zibo:nth-child(2n) .card-zibo__image {
  background-color: #fcd5a9;
}
.marcashoy .card-zibo:nth-child(2n) .card-zibo__label {
  background-color: #f8edda;
}
.marcashoy .card-zibo:nth-child(3n) {
  background-color: #fcd5a9;
}
.marcashoy .card-zibo:nth-child(3n) .card-zibo__image {
  background-color: #d3e5ff;
}
.marcashoy .card-zibo:nth-child(4n) {
  background-color: #fe581e;
}
.marcashoy .card-zibo:nth-child(4n) .card-zibo__image {
  background-color: #3db3ee;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#marcas-form,
#desarrollo-form,
#mi-formulario-form {
  max-width: 800px;
  margin: 0 auto;
}
#marcas-form small,
#desarrollo-form small,
#mi-formulario-form small {
  color: #757575;
  font-size: 12px;
}
#marcas-form .form-item-type-select,
#marcas-form .form-item-type-email,
#marcas-form .form-item-type-tel,
#desarrollo-form .form-item-type-select,
#desarrollo-form .form-item-type-email,
#desarrollo-form .form-item-type-tel,
#mi-formulario-form .form-item-type-select,
#mi-formulario-form .form-item-type-email,
#mi-formulario-form .form-item-type-tel {
  margin-bottom: 15px;
}
#marcas-form .form-intro,
#desarrollo-form .form-intro,
#mi-formulario-form .form-intro {
  text-align: center;
  font-size: 1.1em;
  color: #444;
  margin-bottom: 25px;
}
#marcas-form .form-intro .logo-badge,
#desarrollo-form .form-intro .logo-badge,
#mi-formulario-form .form-intro .logo-badge {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  margin-left: 5px;
}
#marcas-form fieldset,
#desarrollo-form fieldset,
#mi-formulario-form fieldset {
  border: none;
  padding: 0;
  margin-bottom: 30px;
}
#marcas-form label,
#desarrollo-form label,
#mi-formulario-form label {
  font-size: 12px;
  margin-bottom: 8px;
  display: block;
}
#marcas-form fieldset#edit-bic--wrapper legend,
#desarrollo-form fieldset#edit-bic--wrapper legend,
#mi-formulario-form fieldset#edit-bic--wrapper legend {
  font-size: 12px;
  display: block;
  font-weight: normal;
  margin-bottom: 8px;
}
#marcas-form fieldset#edit-bic--wrapper legend span,
#desarrollo-form fieldset#edit-bic--wrapper legend span,
#mi-formulario-form fieldset#edit-bic--wrapper legend span {
  font-size: 12px;
  font-weight: normal;
}
#marcas-form legend,
#desarrollo-form legend,
#mi-formulario-form legend {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  padding: 0;
  margin-bottom: 15px;
}
#marcas-form input[type=date],
#marcas-form input[type=text],
#marcas-form input[type=email],
#marcas-form input[type=tel],
#marcas-form input[type=number],
#marcas-form textarea,
#marcas-form select,
#desarrollo-form input[type=date],
#desarrollo-form input[type=text],
#desarrollo-form input[type=email],
#desarrollo-form input[type=tel],
#desarrollo-form input[type=number],
#desarrollo-form textarea,
#desarrollo-form select,
#mi-formulario-form input[type=date],
#mi-formulario-form input[type=text],
#mi-formulario-form input[type=email],
#mi-formulario-form input[type=tel],
#mi-formulario-form input[type=number],
#mi-formulario-form textarea,
#mi-formulario-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cccccc;
  font-size: 14px;
  line-height: 14px;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#marcas-form input[type=date]:focus,
#marcas-form input[type=text]:focus,
#marcas-form input[type=email]:focus,
#marcas-form input[type=tel]:focus,
#marcas-form input[type=number]:focus,
#marcas-form textarea:focus,
#marcas-form select:focus,
#desarrollo-form input[type=date]:focus,
#desarrollo-form input[type=text]:focus,
#desarrollo-form input[type=email]:focus,
#desarrollo-form input[type=tel]:focus,
#desarrollo-form input[type=number]:focus,
#desarrollo-form textarea:focus,
#desarrollo-form select:focus,
#mi-formulario-form input[type=date]:focus,
#mi-formulario-form input[type=text]:focus,
#mi-formulario-form input[type=email]:focus,
#mi-formulario-form input[type=tel]:focus,
#mi-formulario-form input[type=number]:focus,
#mi-formulario-form textarea:focus,
#mi-formulario-form select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}
#marcas-form .form-type--radios .form-item,
#desarrollo-form .form-type--radios .form-item,
#mi-formulario-form .form-type--radios .form-item {
  display: inline-block;
  margin-right: 20px;
}
#marcas-form .form-type--radios label,
#desarrollo-form .form-type--radios label,
#mi-formulario-form .form-type--radios label {
  font-weight: normal;
}
#marcas-form .datos-ley,
#desarrollo-form .datos-ley,
#mi-formulario-form .datos-ley {
  font-size: 0.8em;
  color: #666;
  text-align: left;
  margin-top: 30px;
  padding: 0 5px;
  line-height: 1.4;
}
#marcas-form input[type=submit],
#desarrollo-form input[type=submit],
#mi-formulario-form input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  padding: 12px;
  border: 0;
  width: 100%;
  font-size: 16px;
  margin: 30px 0;
}
#marcas-form input[type=submit]:hover,
#desarrollo-form input[type=submit]:hover,
#mi-formulario-form input[type=submit]:hover {
  background-color: #333333;
}

#edit-bic {
  display: flex;
  gap: 8px;
  align-items: center;
}
#edit-bic .form-item {
  display: flex;
  align-items: center;
}
#edit-bic .form-item label {
  margin: 0;
}

.agenda .predio .container h1 {
  background-color: #086ffc;
}

.f-button.is-close-button {
  display: none;
}

.fancybox__dialog .content .close {
  top: 10px;
  right: 10px;
  position: absolute;
}
.fancybox__dialog .content .icon {
  margin-bottom: 16px;
}
.fancybox__dialog .content h3 {
  margin-bottom: 16px;
}
.fancybox__dialog .content p {
  margin-bottom: 16px;
}
.fancybox__dialog .content a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  padding: 12px;
}

#dialog-content-0 .content h3 {
  color: #fff;
}
#dialog-content-0 .content p {
  color: #fff;
}

.noticias-page .predio .container h1 {
  background-color: #086ffc;
}
.noticias-page .noticias {
  padding: 88px 20px 0;
}
.noticias-page .newsletter {
  background-color: #d3e5ff;
  padding: 0 20px 96px;
}
.noticias-page .newsletter .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.noticias-page .newsletter .container .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 120%;
  text-align: right;
}
.noticias-page .newsletter .container .title strong {
  font-weight: 400;
  padding: 0 20px;
  color: #fff;
  display: block;
  background-color: #086ffc;
}
.noticias-page .newsletter .container .content {
  padding: 0 32px;
  border-left: 1px solid #303030;
}
.noticias-page .newsletter .container .content p {
  margin-bottom: 18px;
}

.boletin-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.boletin-form input[type=email] {
  flex: 1;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.boletin-form .btn-black {
  background: #000;
  color: #fff;
  margin: 0;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 20px;
  padding: 12px;
}

.route-view-formularios-page_1 .formularios-view {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  background-color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.route-view-formularios-page_1 table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.route-view-formularios-page_1 table th,
.route-view-formularios-page_1 table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.95rem;
}
.route-view-formularios-page_1 table th {
  background-color: #f1f5f9;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #1e293b;
}
.route-view-formularios-page_1 table tr {
  transition: background 0.2s ease;
}
.route-view-formularios-page_1 table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
@media (max-width: 640px) {
  .route-view-formularios-page_1 table thead {
    display: none;
  }
  .route-view-formularios-page_1 table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #fff;
  }
  .route-view-formularios-page_1 table td {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    text-align: right;
    font-size: 0.9rem;
  }
  .route-view-formularios-page_1 table td::before {
    content: attr(data-label);
    font-weight: 600;
    text-transform: capitalize;
    color: #1e293b;
    text-align: left;
  }
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 2rem auto;
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div {
  display: flex;
  flex-direction: column;
  flex: 1 1 200px;
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div label {
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div select,
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div input[type=text],
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div input[type=email],
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div input[type=search],
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div input[type=number] {
  padding: 0.6rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  background-color: white;
  font-size: 1rem;
  color: #334155;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div select:focus,
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div input[type=text]:focus,
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div input[type=email]:focus,
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div input[type=search]:focus,
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div input[type=number]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] [data-drupal-selector^=edit-actions] {
  flex: 0 0 auto;
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] [data-drupal-selector^=edit-actions] input[type=submit] {
  background-color: #3b82f6;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] [data-drupal-selector^=edit-actions] input[type=submit]:hover {
  transform: translateY(-1px);
}
.route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] [data-drupal-selector^=edit-actions] input[type=submit]:active {
  transform: translateY(0);
}
@media (max-width: 640px) {
  .route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] {
    flex-direction: column;
    align-items: stretch;
  }
  .route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] div {
    width: 100%;
  }
  .route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] [data-drupal-selector^=edit-actions] {
    width: 100%;
  }
  .route-view-formularios-page_1 form[data-drupal-selector*=views-exposed-form] [data-drupal-selector^=edit-actions] input[type=submit] {
    width: 100%;
  }
}

.filtros-noticias {
  text-align: center;
  margin: 3rem 0;
}
.filtros-noticias h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}
.filtros-noticias .buscador {
  width: 100%;
  max-width: 600px;
  padding: 0.8rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 1.5rem;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
}
.filtros-noticias .buscador:focus {
  border-color: #1e63ff;
  box-shadow: 0 0 0 2px rgba(30, 99, 255, 0.2);
}
.filtros-noticias .categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.filtros-noticias .categorias .cat-btn {
  background-color: #e9f1ff;
  color: #1e63ff;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: 1.5rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filtros-noticias .categorias .cat-btn:hover {
  background-color: #d7e6ff;
}
.filtros-noticias .categorias .cat-btn.active {
  background-color: #1e63ff;
  color: #fff;
}

@media (max-width: 768px) {
  .filtros-noticias .buscador {
    max-width: 100%;
  }
  .filtros-noticias .categorias {
    gap: 0.4rem;
  }
  .filtros-noticias .categorias .cat-btn {
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
  }
}
.form-item label {
  display: block;
  margin-bottom: 10px;
}

.form-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.form-checkboxes .js-form-type-checkbox {
  display: flex;
  gap: 10px;
}

input[type=checkbox] {
  width: 15px;
  height: 15px;
  border: 1px solid #086ffc;
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

/* Check visual */
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid #086ffc;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#block-renobo-theme-piedepagina #block-renobo-theme-piedepagina-menu {
  display: none;
}
#block-renobo-theme-piedepagina ul {
  list-style: none;
}

a {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
a:hover {
  opacity: 0.6;
}

a.download-btn,
.btn {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
a.download-btn:hover,
.btn:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.timeline-section {
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
}

.horizontal-scroll {
  position: relative;
  height: 100%;
  width: 3000px;
}

.timeline-svg {
  width: 3000px;
  height: 600px;
  display: block;
  margin: 0 auto;
  position: relative;
}

.event-group circle {
  transition: transform 0.3s ease;
}

.bottom-text {
  position: fixed;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  top: 60%;
  left: 50%;
  background-color: #a8c9ff;
  transform: translateX(-50%);
  width: 100%;
  max-width: 768px;
  text-align: center;
  border-top: 1px solid #303030;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  padding: 24px;
  font-size: 12px;
  z-index: 20;
}

.bottom-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #66a3ff;
}

.bottom-text p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}

#desarrollo-form .js-form-type-textarea,
#marcas-form .js-form-type-textarea,
#mi-formulario-form .js-form-type-textarea {
  margin-top: 20px;
}
#desarrollo-form .checkboxes-dos-columnas legend,
#marcas-form .checkboxes-dos-columnas legend,
#mi-formulario-form .checkboxes-dos-columnas legend {
  font-size: 12px;
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
}

.horizontal-section {
  position: sticky;
  top: 0; /* Se pegará a la parte superior */
  width: 100%;
}

.horizontal-wrapper {
  display: flex; /* Para poner el contenido en línea */
  width: -moz-max-content;
  width: max-content; /* Es crucial para que el contenido se extienda horizontalmente */
  height: 100%;
}

input[type=submit] {
  cursor: pointer;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-11-13 20:35:42
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 *//*# sourceMappingURL=style.css.map */