@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif !important;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
}

:root {
  --navy: #082645;
  --navy-deep: #061d35;
  --navy-soft: #324971;
  --ink: #172646;
  --text: #35465a;
  --muted: #68798d;
  --ice: #ebf1f8;
  --line: #d7e0ea;
  --white: #fff;
}

.font-Microgramma-title {
  font-family: "Michroma", sans-serif !important;
  font-size: 32px;
  font-weight: 500;
}

.font-Figtree-description {
  font-family: "Figtree", sans-serif !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.shell {
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
}

.header {
  width: 100%;
  padding: 16px 32px;
  background-color: #980404;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}
.header__menu {
  display: flex;
  gap: 24px;
}
.header__menu a {
  font-size: 0.95rem;
  color: #1e293b;
  transition: color 0.2s;
}
.header__menu a:hover {
  color: #2563eb;
}

.proyecto-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 4px;
  transition: background 0.4s ease, transform 0.4s ease;
}

.proyecto-header__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.proyecto-header.is-scrolled {
  padding-top: 0;
}

.proyecto-header.is-scrolled .proyecto-header__container {
  padding: 16px 40px;
  background: #082645;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.proyecto-header__logo {
  display: flex;
  align-items: center;
  outline: none;
}

.proyecto-header__logo img {
  width: 200px;
  object-fit: cover;
  display: block;
}

.proyecto-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.proyecto-header__nav a {
  position: relative;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 15px;
}

.proyecto-header__nav a:hover {
  opacity: 0.7;
}

.proyecto-header__button {
  width: 130px;
  height: 50px;
  background: #fff;
  color: #082645 !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proyecto-header__toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.proyecto-header__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  margin: 5px 0;
}

.proyecto-mobile-menu {
  position: fixed;
  inset: 0;
  background: #082645;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.proyecto-mobile-menu.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  overflow: auto;
}

.proyecto-mobile-menu__close {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
}

.proyecto-mobile-menu__logo {
  margin-top: 117px;
  margin-bottom: 48px;
}
.proyecto-mobile-menu__logo img {
  width: 150px;
  height: 37px;
  aspect-ratio: 150/37;
}

.proyecto-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.proyecto-mobile-menu__nav a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

.proyecto-mobile-menu__button {
  width: 150px;
  height: 56px;
  background: white;
  color: #042d5c !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proyecto-mobile-menu__social {
  margin-top: auto;
  margin-bottom: 40px;
  display: flex;
  gap: 14px;
  padding-top: 40px;
}

.proyecto-mobile-menu__social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.proyecto-mobile-menu__social a:hover {
  transform: translateY(-3px);
}

@media (max-width: 1025px) {
  .proyecto-header__nav {
    display: none;
  }
  .proyecto-header__toggle {
    display: block;
  }
  .proyecto-header__logo img {
    width: 131px;
  }
}
@media (max-width: 640px) {
  .proyecto-header__container, .proyecto-header.is-scrolled .proyecto-header__container {
    padding: 22px 16px;
  }
  .proyecto-header__logo, .proyecto-header__toggle {
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .proyecto-mobile-menu {
    display: none;
  }
}
.proyecto-footer {
  background: #082645;
  color: white;
}

.proyecto-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 75px;
}

.proyecto-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.proyecto-footer__logo img {
  width: 200px;
}

.proyecto-footer__logo p {
  font-size: 12px;
  margin-top: 16px;
}

.proyecto-footer__menu {
  display: flex;
  gap: 100px;
  font-family: "Figtree", sans-serif !important;
}

.footer-accordion {
  font-family: "Figtree", sans-serif !important;
}

.footer-accordion__trigger {
  font-family: "Figtree", sans-serif !important;
  background: transparent;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: default;
  padding: 0 0 16px;
  border-bottom: 1px solid rgb(255, 255, 255);
  width: 100%;
  text-align: left;
}

.footer-accordion__icon {
  display: none;
}

.footer-accordion__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

.footer-accordion__content a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 300;
}

.footer-accordion__content a:hover {
  opacity: 0.7;
}

.proyecto-footer__grupo {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.proyecto-footer__grupo-title {
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 700;
  font-family: Verdana, Geneva, sans-serif;
  line-height: 18px;
}

.proyecto-footer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.proyecto-footer__logos img {
  height: 23px;
  width: 90px;
  object-fit: contain;
}

.proyecto-footer__bottom {
  font-family: "Figtree", sans-serif !important;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  padding: 20px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .proyecto-footer__container {
    padding: 40px 32px 40px;
  }
  .proyecto-footer__top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }
  .proyecto-footer__logo {
    width: 100%;
    text-align: start;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .proyecto-footer__logo img {
    width: 190px;
  }
  .proyecto-footer__menu {
    width: 100%;
    display: block;
  }
  .footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .footer-accordion + .footer-accordion {
    margin-top: 20px;
  }
  .footer-accordion__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
  }
  .footer-accordion__icon {
    display: block;
    font-size: 34px;
    line-height: 1;
  }
  .footer-accordion__content {
    display: none;
    padding-bottom: 20px;
  }
  .footer-accordion.active .footer-accordion__content {
    display: flex;
    padding-top: 0px;
  }
  .footer-accordion.active .footer-accordion__icon {
    transform: rotate(45deg);
  }
  .proyecto-footer__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .proyecto-footer__logos img {
    width: 100%;
    max-width: 90px;
    margin: auto;
    height: auto;
  }
  .proyecto-footer__bottom {
    font-size: 14px;
  }
}
.hero {
  color: #fff;
  background: var(--navy);
  align-items: center;
  justify-content: center;
  height: 100svh;
  min-height: 720px;
  max-height: 900px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero__media, .hero__slide, .hero__veil {
  position: absolute;
  inset: 0;
}
.hero__slide {
  opacity: 0;
  transition: opacity 0.9s ease-in-out, transform 7s ease-out;
  transform: scale(1);
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.035);
  z-index: 1;
}
.hero__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero__veil {
  z-index: 2;
  background: linear-gradient(90deg, rgba(4, 25, 48, 0.9215686275) 0%, rgba(8, 38, 69, 0.7019607843) 42%, rgba(8, 38, 69, 0.0784313725) 78%), linear-gradient(rgba(4, 23, 43, 0.2509803922), rgba(4, 23, 43, 0.4784313725));
}
.hero__content {
  z-index: 3;
  padding-top: 72px;
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.hero h1 {
  letter-spacing: 0;
  max-width: 800px;
  margin: 0;
  font-family: Figtree, Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}
.hero__lead {
  color: rgba(255, 255, 255, 0.8392156863);
  max-width: 660px;
  margin: 26px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 300;
  line-height: 1.5;
}
.hero__actions {
  align-items: center;
  gap: 28px;
  margin-top: 38px;
  display: flex;
}
.hero .button {
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s, background 0.18s;
  display: inline-flex;
}
.hero .button--light {
  color: var(--navy);
  background: #fff;
}
.hero .button:hover {
  transform: translateY(-2px);
}
.hero .arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.18s;
  display: inline-block;
}
.hero a:hover .arrow,
.hero button:hover .arrow {
  transform: translateX(4px);
}
.hero .text-link {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.hero .text-link::after {
  content: "";
  background: currentColor;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}
.hero .text-link--light {
  color: #fff;
}
.hero__arrow {
  z-index: 4;
  color: #fff;
  background: rgba(8, 38, 69, 0.3490196078);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 32px;
  line-height: 1;
  transition: background 0.18s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hero__arrow:hover {
  background: rgba(8, 38, 69, 0.7490196078);
}
.hero__arrow--left {
  left: 24px;
}
.hero__arrow--right {
  right: 24px;
}
.hero__dots {
  z-index: 4;
  gap: 8px;
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%);
}
.hero__dots button {
  background: rgba(255, 255, 255, 0.4509803922);
  border-radius: 999px;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  transition: width 0.2s, background 0.2s;
}
.hero__dots button.is-active {
  background: #fff;
  width: 28px;
}

.eyebrow {
  color: var(--navy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.7607843137);
}

@media (max-width: 1024px) {
  .hero__arrow {
    display: none;
  }
}
@media (max-width: 760px) {
  .hero {
    height: 100svh;
    min-height: 700px;
  }
  .hero__veil {
    background: linear-gradient(rgba(8, 38, 69, 0.5882352941), rgba(5, 27, 50, 0.9098039216)), linear-gradient(rgba(5, 27, 50, 0.1490196078), rgba(5, 27, 50, 0.8));
  }
  .hero__content {
    padding-top: 56px;
  }
  .hero h1 {
    max-width: 560px;
    font-size: 28px;
    line-height: 32px;
  }
  .hero__lead {
    font-size: 17px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.proyecto-about {
  background: #082645;
  padding: 64px 0;
}

.proyecto-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 75px;
}

.proyecto-about__wrapper {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: center;
}

.proyecto-about__title {
  color: #fff;
  margin-bottom: 16px;
}

.proyecto-about__line {
  display: block;
  width: 50px;
  height: 3px;
  background: #fff;
  border-radius: 0px;
  margin-bottom: 16px;
}

.proyecto-about__description {
  font-family: "Figtree", sans-serif !important;
  color: #ffffff;
  max-width: 92%;
  margin-bottom: 32px;
}

.proyecto-about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.proyecto-about-card {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 19px 24px;
  border-radius: 8px;
  background: rgba(50, 73, 113, 0.3);
  background: rgba(50, 73, 113, 0.3);
  box-shadow: 0 4px 20px 0 rgba(8, 31, 54, 0.5);
}

.proyecto-titular {
  margin-bottom: 40px;
}
.proyecto-titular h2 {
  color: white;
  letter-spacing: -0.035em;
  margin: 0;
  font-family: "Michroma", sans-serif !important;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.25;
}
.proyecto-titular h2 span {
  font-family: "Michroma", sans-serif !important;
  color: white;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.proyecto-about-card__icon {
  flex-shrink: 0;
}

.proyecto-about-card__icon img {
  width: 60px;
  display: block;
}

.proyecto-about-card__content h3 {
  font-family: "Figtree", sans-serif !important;
}

.proyecto-about-card__content h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 20px;
}

.proyecto-about-card__content p {
  color: white;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  margin: 0;
  padding-bottom: 5px;
}

.proyecto-about__image {
  height: 100%;
}

.proyecto-about__image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 1025px) {
  .proyecto-about__cards {
    grid-template-columns: 100%;
  }
  .proyecto-about {
    padding: 48px 0;
  }
  .proyecto-container {
    padding: 0 32px 0px 32px;
  }
  .proyecto-about__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proyecto-about__title {
    font-size: 32px;
  }
  .proyecto-about__description {
    font-size: 14px;
  }
  .proyecto-about-card {
    padding: 20px;
    gap: 16px;
  }
  .proyecto-about-card__icon img {
    width: 44px;
  }
  .proyecto-about-card__content h3 {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .proyecto-container {
    padding: 0 24px 0px 24px;
  }
}
.proyecto-valores {
  background: #ebf1f8;
  padding: 104px 0;
  overflow: hidden;
}

.proyecto-valores__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  align-items: end;
  column-gap: 64px;
  margin-bottom: 46px;
}

.proyecto-valores__eyebrow {
  font-family: "Michroma", sans-serif !important;
  color: #082645;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
}

.proyecto-valores__title {
  color: #172646;
  letter-spacing: -0.035em;
  margin: 0;
  font-family: "Michroma", sans-serif !important;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.25;
}

.proyecto-valores__description {
  max-width: 560px;
  color: #68798d;
  margin: 0;
  font-family: "Figtree", sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
}

.proyecto-valores__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proyecto-valor-card {
  color: #fff;
  background: #082645;
  border-radius: 8px;
  min-height: 142px;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proyecto-valor-card__number {
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 23px;
  font-family: "Michroma", sans-serif !important;
  font-size: 11px;
  display: block;
}

.proyecto-valor-card__title {
  margin: 0;
  font-family: "Figtree", sans-serif !important;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

@media (max-width: 1024px) {
  .proyecto-valores {
    padding: 76px 0;
  }
  .proyecto-valores__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .proyecto-valores__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .proyecto-valores__heading {
    margin-bottom: 32px;
  }
  .proyecto-valores__title {
    font-size: 28px;
  }
  .proyecto-valores__description {
    font-size: 14px;
    line-height: 1.65;
  }
  .proyecto-valores__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .proyecto-valor-card {
    min-height: 118px;
    padding: 20px;
  }
  .proyecto-valor-card__number {
    margin-bottom: 16px;
  }
}
.proyecto-servicios {
  padding: 80px 0;
  background: #ebf1f8;
  overflow: hidden;
}
@media (max-width: 790px) {
  .proyecto-servicios {
    padding: 60px 0;
  }
}

.proyecto-servicio-container {
  margin: 0 auto;
  padding: 0 75px;
}
@media (max-width: 1025px) {
  .proyecto-servicio-container {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .proyecto-servicio-container {
    padding: 0 24px;
  }
}

.proyecto-servicios__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 790px) {
  .proyecto-servicios__header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
}

.proyecto-servicios__header-left .proyecto-servicios__title {
  font-family: "Michroma", sans-serif !important;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.25;
  color: #082645;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}
.proyecto-servicios__header-left .proyecto-servicios__subtitle {
  font-family: "Figtree", sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #082645;
  margin: 0;
}

.proyecto-servicios__header-right {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.proyecto-servicios__header-right .proyecto-servicios__description {
  font-family: "Figtree", sans-serif !important;
  font-size: 15px;
  line-height: 22px;
  color: #64748b;
  font-weight: 400;
  margin: 0;
}

.proyecto-servicios-carousel {
  position: relative;
  padding-bottom: 76px;
  width: 100%;
  min-width: 0;
}
.proyecto-servicios-carousel .owl-stage-outer {
  overflow: visible;
}
.proyecto-servicios-carousel .owl-stage {
  display: flex;
}
.proyecto-servicios-carousel .owl-item {
  display: flex;
  height: auto;
}
.proyecto-servicios-carousel .owl-nav {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 12px;
  margin: 0 !important;
}
.proyecto-servicios-carousel .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: #082645 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
}
.proyecto-servicios-carousel .owl-nav button:hover {
  background: #172646 !important;
  transform: scale(1.05);
}
.proyecto-servicios-carousel .owl-nav button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.proyecto-servicios-carousel .owl-nav button span {
  display: none !important;
}
.proyecto-servicios-carousel .owl-nav button.owl-prev::before {
  content: "←";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.proyecto-servicios-carousel .owl-nav button.owl-next::before {
  content: "→";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.proyecto-servicios-carousel .owl-dots {
  position: absolute;
  right: 0;
  bottom: 16px;
  display: flex !important;
  gap: 8px;
  margin: 0 !important;
  align-items: center;
}
.proyecto-servicios-carousel .owl-dots .owl-dot {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.proyecto-servicios-carousel .owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1 !important;
  margin: 0;
  transition: all 0.3s ease;
}
.proyecto-servicios-carousel .owl-dots .owl-dot.active span {
  background: #082645 !important;
  width: 24px;
  border-radius: 4px;
}

.proyecto-servicio-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 20px 0px rgba(192, 206, 222, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  width: 100%;
}
.proyecto-servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 32px 0px rgba(8, 38, 69, 0.12);
  border-color: #cbd5e1;
}
.proyecto-servicio-card:hover .proyecto-servicio-card__image {
  transform: scale(1.04);
}
.proyecto-servicio-card:hover .proyecto-servicio-card__link {
  color: #172646;
}
.proyecto-servicio-card:hover .proyecto-servicio-card__link span {
  transform: translateX(4px);
}

.proyecto-servicio-card__img-container {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
@media (max-width: 790px) {
  .proyecto-servicio-card__img-container {
    height: 200px;
  }
}

.proyecto-servicio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.proyecto-servicio-card__number {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #082645;
  color: #fff;
  font-family: "Michroma", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-top-left-radius: 4px;
  line-height: 1;
}

.proyecto-servicio-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: "Figtree", sans-serif !important;
}

.proyecto-servicio-card__title {
  font-family: "Figtree", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  color: #082645;
  margin-bottom: 12px;
  line-height: 1.3;
}

.proyecto-servicio-card__text {
  font-family: "Figtree", sans-serif !important;
  font-size: 14px;
  line-height: 22px;
  color: #64748b;
  font-weight: 300;
  margin-bottom: 24px;
  flex-grow: 1;
}

.proyecto-servicio-card__link {
  font-family: "Figtree", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  color: #082645;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.2s ease;
}
.proyecto-servicio-card__link span {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 16px;
  line-height: 1;
}

.proyecto-sectores {
  overflow: hidden;
  padding: 104px 0;
  background: #ebf1f8;
}

.proyecto-sectores__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 46px;
}

.proyecto-sectores__eyebrow {
  font-family: "Michroma", sans-serif !important;
  color: #082645;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
}

.proyecto-sectores__title {
  color: #172646;
  letter-spacing: -0.035em;
  margin: 0;
  font-family: "Michroma", sans-serif !important;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.25;
}

.proyecto-sectores__description {
  max-width: 520px;
  color: #68798d;
  margin: 0;
  font-family: "Figtree", sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
}

.proyecto-sectores__grid {
  border-top: 1px solid #bac8d7;
  border-bottom: 1px solid #bac8d7;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.proyecto-sector-card {
  border-right: 1px solid #bac8d7;
  min-height: 270px;
  padding: 34px 34px 40px 0;
  position: relative;
}
.proyecto-sector-card + .proyecto-sector-card {
  padding-left: 34px;
}
.proyecto-sector-card:last-child {
  border-right: 0;
}

.proyecto-sector-card__number {
  color: #7a8da3;
  margin-bottom: 44px;
  font-family: "Michroma", sans-serif !important;
  font-size: 12px;
  display: block;
}

.proyecto-sector-card__title {
  max-width: 260px;
  color: #172646;
  margin: 0 0 14px;
  font-family: "Michroma", sans-serif !important;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.proyecto-sector-card__text {
  max-width: 300px;
  color: #68798d;
  margin: 0;
  font-family: "Figtree", sans-serif !important;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .proyecto-sectores {
    padding: 76px 0;
  }
  .proyecto-sectores__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .proyecto-sectores__description {
    max-width: 520px;
  }
}
@media (max-width: 760px) {
  .proyecto-sectores__heading {
    margin-bottom: 34px;
  }
  .proyecto-sectores__title {
    font-size: 28px;
  }
  .proyecto-sectores__description {
    font-size: 14px;
    line-height: 1.65;
  }
  .proyecto-sectores__grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }
  .proyecto-sector-card {
    border-bottom: 1px solid #bac8d7;
    border-right: 0;
    min-height: 0;
    padding: 26px 0 30px 0 !important;
  }
  .proyecto-sector-card:last-child {
    border-bottom: 0;
  }
  .proyecto-sector-card__number {
    margin-bottom: 24px;
  }
  .proyecto-sector-card__title {
    font-size: 20px;
  }
}
.proyecto-equipo {
  padding: 56px 0;
  background: #fff;
  overflow: hidden;
  font-family: Rubik;
  background-color: #F8F9FA;
}

.proyecto-equipo-container {
  max-width: 1280px;
  margin: 0 auto;
}

.proyecto-equipo__header {
  text-align: center;
  margin-bottom: 36px;
}

.proyecto-equipo__title {
  font-size: 32px;
  font-weight: 600;
  color: #082645;
  margin-bottom: 8px;
}
.proyecto-equipo__title span {
  display: block;
  max-width: 520px;
  color: var(--muted);
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  text-transform: uppercase;
}

.proyecto-equipo__line {
  width: 50px;
  height: 3px;
  background: #082645;
  margin: 0 auto 8px;
}

.proyecto-equipo__description {
  max-width: 538px;
  margin: auto;
  font-size: 14px;
  line-height: 22px;
  color: #212529;
  font-weight: 300;
}

.proyecto-equipo__tabs {
  margin-top: 28px;
  display: inline-flex;
  border-radius: 4px;
  overflow: hidden;
  padding: 4px 4px 4px 4px;
  background-color: #ebf1f8;
}

.proyecto-equipo__tab {
  font-family: Rubik;
  border: none;
  background: #ebf1f8;
  min-width: 170px;
  padding: 16px 28px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 4px;
  font-weight: 500;
  color: #6c757d;
}

.proyecto-equipo__tab.active {
  background: #082b54;
  color: white;
  font-weight: 600;
}

.proyecto-equipo__content {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 32px;
  padding: 40px 75px;
}

.proyecto-equipo__content.active {
  display: block;
}

.equipo-card {
  font-family: "Figtree", sans-serif !important;
  width: 388px;
  background: transparent;
  display: flex;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 8px 16px;
  box-shadow: 0px 3px 6px 0px #eaeaea;
  gap: 16px;
  align-items: center;
}

.equipo-card__image {
  width: 100%;
  height: 287px;
  object-fit: cover;
  border-radius: 8px;
}

.equipo-card__content {
  padding-top: 14px;
  text-align: left;
}

.equipo-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #172646;
  margin-bottom: 4px;
}

.equipo-card__position {
  font-size: 15px;
  color: #000;
  margin-bottom: 8px;
}

.equipo-card__text {
  font-size: 14px;
  color: #212529;
  line-height: normal;
  font-weight: 300;
}

/* Owl */
.proyecto-equipo-carousel .owl-stage-outer {
  overflow: visible;
}

.proyecto-equipo-carousel {
  padding: 0 0px 0 0;
}

.proyecto-equipo-carousel .owl-nav {
  margin: 0;
  display: none;
}

.proyecto-equipo-carousel .owl-prev,
.proyecto-equipo-carousel .owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: #082b54 !important;
  color: white !important;
  position: absolute;
  display: block !important;
}

.proyecto-equipo-carousel .owl-prev.disabled,
.proyecto-equipo-carousel .owl-next.disabled {
  display: none !important;
}

.proyecto-equipo-carousel .owl-prev {
  left: -26px;
}

.proyecto-equipo-carousel .owl-next {
  right: 25px;
}

.proyecto-equipo-carousel .owl-dots {
  display: none;
}

@media (max-width: 1025px) {
  .proyecto-equipo-container {
    padding-left: 24px;
  }
  .proyecto-equipo__header {
    padding-right: 24px;
  }
  .proyecto-equipo {
    padding: 60px 0;
  }
  .proyecto-equipo__title {
    font-size: 32px;
  }
  .proyecto-equipo__description {
    font-size: 16px;
  }
  .proyecto-equipo__tabs {
    width: 100%;
    max-width: 500px;
  }
  .proyecto-equipo__tab {
    flex: 1;
    min-width: auto;
  }
  .proyecto-equipo-carousel {
    padding: 0;
  }
  .proyecto-equipo-carousel .owl-prev,
  .proyecto-equipo-carousel .owl-next {
    top: 170px;
  }
  .proyecto-equipo-carousel .owl-prev {
    left: -5px;
  }
  .proyecto-equipo-carousel .owl-next {
    right: 20px;
  }
  .proyecto-equipo-carousel .owl-dots {
    display: block;
    margin-top: 20px;
  }
}
@media (max-width: 640px) {
  .equipo-card {
    width: 350px;
  }
  .equipo-card__image {
    height: 100%;
  }
  .proyecto-equipo__content {
    padding: 40px 15px;
  }
}
@media (max-width: 420px) {
  .equipo-card {
    padding-right: 24px;
  }
  .equipo-card {
    width: 100%;
  }
}
.contact {
  color: #fff;
  background: var(--navy-soft);
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  display: grid;
}
.contact__info {
  background: url(https://kubo.com.pe/wp-content/uploads/2026/06/fondo-contactenos.webp) 50%/cover;
  justify-content: flex-end;
  display: flex;
  position: relative;
}
.contact__overlay {
  background: rgba(8, 38, 69, 0.8588235294);
  position: absolute;
  inset: 0;
}
.contact__content, .contact__form-wrap {
  width: min(590px, 100%);
  padding: 80px 72px;
}
.contact__content {
  z-index: 1;
  position: relative;
}
.contact__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7215686275);
  max-width: 460px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.contact h2 {
  color: #fff;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  font-family: "Michroma", sans-serif !important;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.3;
}
.contact address {
  flex-direction: column;
  gap: 22px;
  margin-top: 48px;
  font-size: 14px;
  font-style: normal;
  display: flex;
}
.contact address span {
  color: rgba(255, 255, 255, 0.8196078431);
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.contact address b {
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}
.contact address a {
  color: inherit;
  text-decoration: none;
}
.contact address a:hover {
  text-decoration: underline;
}
.contact__form-wrap {
  background: var(--navy-soft);
  justify-self: start;
}
.contact form p {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}
.contact form p > .eyebrow,
.contact form p > h2,
.contact form p > label:nth-child(5),
.contact form p > label:nth-child(7),
.contact form p > .form-button {
  grid-column: 1/-1;
  min-height: 40px;
  width: 100%;
}
.contact form p br {
  display: none;
}
.contact label {
  color: rgba(255, 255, 255, 0.831372549);
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}
.contact input,
.contact select,
.contact textarea {
  font-family: "Figtree", sans-serif !important, Arial, sans-serif;
  color: #fff;
  background: #2c4269;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  outline: 0;
  width: 100%;
  padding: 14px 13px;
  font-size: 14px;
}
.contact input::placeholder,
.contact select::placeholder,
.contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.5019607843);
}
.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}
.contact select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 35px;
}
.contact select option {
  color: #172646;
  background: #fff;
}
.contact textarea {
  resize: vertical;
}

.form-button {
  width: fit-content;
  margin-top: 8px;
}

.form-success {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 520px;
  display: flex;
}
.form-success > span {
  width: 58px;
  height: 58px;
  color: var(--navy);
  background: #fff;
  border-radius: 50%;
  place-items: center;
  margin-bottom: 24px;
  font-size: 28px;
  display: grid;
}
.form-success h3 {
  margin: 0 0 14px;
  font-size: 28px;
}
.form-success p {
  color: rgba(255, 255, 255, 0.7490196078);
  max-width: 440px;
  margin: 0 0 30px;
  line-height: 1.65;
}
.form-success button {
  color: var(--navy);
  background: #fff;
  border-radius: 5px;
  padding: 13px 18px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .contact__info {
    justify-content: center;
  }
  .contact__content, .contact__form-wrap {
    width: min(760px, 100%);
  }
  .contact__form-wrap {
    justify-self: center;
  }
}
@media (max-width: 760px) {
  .contact__content, .contact__form-wrap {
    padding: 68px 24px;
  }
  .contact form {
    grid-template-columns: 1fr;
  }
  .contact form > label {
    grid-column: 1/-1;
  }
  .form-button {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
