:root {
  --red: #ff403a;
  --pink: #e91b73;
  --purple: #260767;
  --dark: #111;
  --muted: #eef3fb;
  --text: #17171d;
  --line: #ec315e;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.42;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
.container-narrow {
  width: min(100% - 36px, 1140px);
  margin-inline: auto;
}
.topbar {
  background: linear-gradient(100deg, #6100a8 0%, #b3198d 48%, #ff4039 100%);
  color: #fff;
  padding: 27px 0;
}
.topbar-inner {
  display: grid;
  grid-template-columns: 220px 1fr 1fr auto;
  gap: 38px;
  align-items: center;
}
.logo {
  width: 162px;
  height: auto;
}
.top-info {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.top-info .ico {
  font-size: 16px;
  line-height: 1;
}
.top-info a {
  color: inherit;
  text-decoration: none;
}
.top-info a:hover {
  text-decoration: underline;
}
.social {
  display: flex;
  gap: 19px;
  align-items: center;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}
.social i {
  display: block;
  font-size: 17px;
  line-height: 1;
}
.social-floating {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-50%);
}
.social-floating a {
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
  transition: filter 0.2s ease;
}
.social-floating a:hover,
.social-floating a:focus-visible {
  filter: brightness(1.08);
}
.social-floating i {
  font-size: 19px;
}
.social-floating .social-ig {
  background: #ff4f8b;
}
.social-floating .social-in {
  background: #2f71b8;
}
.social-floating .social-fb {
  background: #3159a5;
}
.social-floating .social-yt {
  background: #f21d22;
}
.social-floating .social-wa {
  background: #27bd68;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 88px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(14, 18, 32, 0.08);
}
.navbar .navbar-nav {
  gap: 26px;
}
.navbar .nav-link {
  padding: 0 !important;
  color: #111 !important;
  text-transform: uppercase;
  font-family: "Raleway", "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #ff4050 !important;
}
.navbar-toggler {
  border: 0;
  font-weight: 800;
}
.mobile-menu-toggle {
  display: none;
}

/* Mobile menu icon: make icon black on white circle */
.mobile-menu-toggle,
.mobile-menu-toggle i {
  color: #000 !important;
}
.mobile-menu-toggle {
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section {
  padding: 76px 0;
}
.section-soft {
  background: var(--muted);
}
.motion-reveal {
  opacity: 0;
  transform: translate3d(0, calc(24px + var(--parallax-y, 0px)), 0);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}
.motion-parallax {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .motion-reveal,
  .motion-reveal.is-visible,
  .motion-parallax {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}
.title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 30px;
}
.title:after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  background: var(--line);
  margin-top: 17px;
}
.title.center {
  text-align: center;
}
.title.center:after {
  margin-left: auto;
  margin-right: auto;
}
.title.no-line:after {
  display: none;
}
p {
  margin: 0 0 22px;
}
.lead-strong {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.lead-light {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 24px;
}
.btn-pill {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4138 0%, #e91975 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 12px 34px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, filter 0.2s ease;
}
.btn-pill:hover {
  background: #260767;
  color: #fff;
  filter: none;
}
.btn-purple {
  background: #260767;
}
.hero-wrap {
  background: var(--muted);
}
.hero {
  width: min(100%, 1140px);
  margin: auto;
  padding-top: 0;
}
.hero img {
  width: 100%;
  height: auto;
}
.hero .carousel {
  background: #b0067d;
}
.hero .carousel-indicators {
  bottom: 18px;
  margin-bottom: 0;
}
.hero .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  margin: 0 4px;
  background: #fff;
  opacity: 0.65;
}
.hero .carousel-indicators .active {
  opacity: 1;
}
.draggable-carousel {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.draggable-carousel.is-dragging {
  cursor: grabbing;
}
.draggable-carousel.is-dragging a,
.draggable-carousel.is-dragging img {
  pointer-events: none;
}
.cookie {
  margin: 19px auto 0;
  background: #1b055c;
  color: #fff;
  font-size: 13px;
  padding: 13px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.cookie-floating {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 80;
  width: min(100% - 36px, 1140px);
  transform: translateX(-50%);
  margin: 0 0 18px;
  box-shadow: 0 18px 45px rgba(13, 20, 40, 0.25);
}
.cookie a {
  color: #fff;
  text-decoration: underline;
}
.cookie .btn-pill {
  min-height: 41px;
  min-width: 148px;
  text-decoration: none;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.split-start {
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 26px;
}
.check-list li {
  position: relative;
  padding-left: 29px;
  margin: 10px 0;
  font-size: 16px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e91b73;
  font-weight: 900;
}
.button-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.check-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.image-rounded {
  border-radius: 22px;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 520px;
  margin-left: auto;
}
.about-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}
.catalog-section {
  padding-top: 0;
}
.catalog-header {
  padding: 62px 0 40px;
}
.catalog-head {
  display: grid;
  grid-template-columns: 1fr auto 220px;
  gap: 18px;
  align-items: center;
  margin-bottom: 0;
}
.catalog-head .title {
  font-size: 36px;
  margin-bottom: 0;
}
.catalog-head .title:after {
  width: 74px;
  margin-top: 12px;
}
.catalog-head label {
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.catalog-head select {
  width: 220px;
  border: 1px solid #cbd2dc;
  border-radius: 2px;
  background: #f3f6fb;
  height: 46px;
  font-size: 12px;
  padding: 0 18px;
  color: #5f6670;
}
.catalogs-strip {
  width: 100%;
  overflow: hidden;
  background: var(--muted);
}
.catalogs-strip img {
  width: 100%;
  height: auto;
}
.catalog-slider {
  position: relative;
  width: 100%;
  background: var(--muted);
}
.catalog-rotator {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  background: var(--muted);
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.catalog-rotator.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.catalog-rotator.is-static {
  justify-content: center;
  cursor: default;
}
.catalog-rotator.is-dragging .catalog-card {
  pointer-events: none;
}
.catalog-rotator::-webkit-scrollbar {
  display: none;
}
.catalog-card {
  display: block;
  flex: 0 0 20%;
  max-width: 20%;
  background: #e8edf5;
}
.catalog-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.22s ease;
}
.catalog-card:hover img,
.catalog-card:focus-visible img {
  filter: brightness(0.82);
}
.catalog-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #260767;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(38, 7, 103, 0.24);
}
.catalog-nav:hover {
  background: #e91b73;
}
.catalog-nav.prev {
  left: 18px;
}
.catalog-nav.next {
  right: 18px;
}
.catalog-nav[hidden] {
  display: none;
}
.dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 33px;
  padding-bottom: 38px;
}
.dots button {
  width: 5px;
  height: 5px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #cfd5de;
  cursor: pointer;
}
.dots button.active {
  background: #fff;
}
.launches-section {
  padding: 60px 0 78px;
}
.launches-section .title {
  margin-bottom: 10px;
}
.launches-section p {
  margin-bottom: 0;
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 48px auto 0;
  max-width: 1120px;
}
.launch-card {
  background: #eaf0f8;
  text-align: center;
  padding-bottom: 0;
}
.launch-card:nth-child(2n) {
  background: #f0f3f8;
}
.launch-card:nth-child(3n) {
  background: #e6ebf3;
}
.launch-img {
  overflow: hidden;
}
.launch-img img {
  width: 100%;
  height: auto;
  display: block;
}
.launch-card h3 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  margin: 0;
  min-height: 58px;
  padding: 18px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.launch-card .btn-pill {
  min-height: 38px;
  padding: 10px 28px;
  transform: translateY(50%);
}
.launch-card .btn-pill:hover,
.launch-card .btn-pill:focus-visible,
.launch-card .btn-pill:active {
  background: #260767;
  color: #fff;
}
.projects-special-section {
  padding: 58px 0 70px;
}
.projects-special-section .title {
  margin-bottom: 12px;
}
.projects-special-section p {
  font-size: 16px;
  margin-bottom: 0;
}
.projects-scroll {
  display: flex;
  gap: 28px;
  max-width: 900px;
  margin: 46px auto 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.projects-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.projects-scroll::-webkit-scrollbar {
  height: 6px;
}
.projects-scroll::-webkit-scrollbar-track {
  background: #dfe5ee;
}
.projects-scroll::-webkit-scrollbar-thumb {
  background: #c1cad8;
  border-radius: 999px;
}
.projects-home-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 26px 28px;
  flex: 0 0 900px;
  scroll-snap-align: start;
}
.project-mosaic-item {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.projects-scroll.is-dragging .project-mosaic-item {
  pointer-events: none;
}
.project-mosaic-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.project-mosaic-item.item-3 {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.project-mosaic-item.item-4 {
  grid-column: 1 / span 2;
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 10, 18, 0.86);
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox-overlay[hidden] {
  display: none;
}
.lightbox-image {
  max-width: min(100%, 1120px);
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.projects-actions {
  gap: 28px;
  margin-top: 40px;
}
.sustainability-section {
  padding: 92px 0 84px;
}
.sustainability-section .split {
  grid-template-columns: 1fr 1.08fr;
  gap: 86px;
  align-items: center;
}
.sustainability-section .title {
  margin-bottom: 32px;
}
.sustainability-section p {
  font-size: 16px;
  line-height: 1.34;
  margin-bottom: 28px;
}
.sustainability-section .check-list {
  margin-top: 8px;
}
.sustainability-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 30px;
  width: 100%;
  max-width: 590px;
  margin-left: auto;
}
.sustainability-mosaic img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
  border-radius: 18px;
}
.contact {
  background: var(--muted);
}
.contact .section-intro {
  text-align: center;
  margin-top: -15px;
  margin-bottom: 55px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 270px 370px 320px;
  gap: 70px;
  align-items: start;
}
.contact h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 28px;
}
.contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  margin: 19px 0;
}
.contact-item .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #e91b73;
}
.contact-item .ico i {
  display: block;
  font-size: 22px;
  line-height: 1;
}
.contact-item a {
  color: inherit;
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--pink);
  text-decoration: underline;
}
.form-control,
.form-select {
  height: 47px;
  border: 1px solid #b9c0c8;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  padding: 12px 18px;
}
textarea.form-control {
  height: 156px;
  resize: vertical;
}
.form-control::placeholder {
  color: #60646e;
}
.form-note {
  display: block;
  margin: -8px 0 14px;
  color: #6d737c;
  font-size: 12px;
}
.form-feedback {
  min-height: 24px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  display: none;
}
.form-feedback.ok {
  display: block;
  background: #ecfdf3;
  color: #027a48;
}
.form-feedback.err {
  display: block;
  background: #fef3f2;
  color: #b42318;
}
.footer {
  background: #111;
  color: #fff;
  padding: 70px 0 54px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 250px 1fr 1fr auto;
  gap: 70px;
  align-items: center;
}
.footer .logo {
  width: 165px;
}
.footer a {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-family: "Raleway", "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}
.footer a.active {
  color: #ff4050;
}
.footer nav a:hover,
.footer nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #7f6df2;
}
.footer .social a {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: #ff403a;
  line-height: 0;
  flex: 0 0 45px;
}
.footer-social {
  gap: 22px;
}
.footer-social a {
  background: #fff;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: #260767;
  color: #fff;
}
.footer-social i {
  display: block;
  font-size: 22px;
  line-height: 1;
}
.footer-bottom {
  background: #050505;
  color: #fff;
  font-size: 13px;
  padding: 24px 0;
}
.footer-bottom .container-narrow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  text-align: center;
}
.footer-bottom span:last-child {
  text-align: right;
}
.company-story {
  padding-top: 50px;
  overflow-x: hidden;
}
.company-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
  row-gap: 50px;
  align-items: start;
}
.company-copy {
  font-size: 16px;
  line-height: 1.42;
}
.company-copy p {
  margin: 0 0 24px;
}
.company-copy-bottom {
  padding-top: 34px;
}
.company-photo-stack {
  position: relative;
  min-height: 350px;
}
.company-photo-stack-top {
  margin-top: 8px;
}
.company-photo-stack-bottom {
  min-height: 334px;
  margin-top: 14px;
}
.company-photo {
  position: absolute;
  display: block;
  width: min(360px, 64%);
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.company-photo-stack-top .photo-1 {
  width: 50%;
  height: 175px;
  top: 0;
  left: 34px;
  z-index: 2;
}
.company-photo-stack-top .photo-2 {
  top: 132px;
  right: 0;
  z-index: 1;
}
.company-photo-stack-bottom .photo-3 {
  top: 0;
  left: 0;
  z-index: 1;
}
.company-photo-stack-bottom .photo-4 {
  width: 50%;
  height: 175px;
  top: 130px;
  right: 44px;
  z-index: 2;
}
.company-photo-stack-top .caption {
  position: absolute;
  left: 0;
  top: 300px;
  width: 30%;
  text-align: right !important;
}
.company-photo-stack-bottom .caption {
  position: absolute;
  left: 0px;
  top: 250px;
  width: 35%;
  text-align: right !important;
}
.company-current-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px;
  margin-top: 52px;
}
.company-current-grid figure {
  margin: 0;
}
.company-current-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 534 / 312;
  border-radius: 20px;
  object-fit: cover;
}
.company-current-grid figcaption {
  font-size: 13px;
  line-height: 1.25;
  margin-top: 12px;
}
.caption {
  font-size: 13px;
  margin-top: 10px;
}
.empresa-top-images {
  width: 520px;
  margin-left: auto;
}
.empresa-mid-images {
  width: 530px;
  margin-top: 62px;
}
.empresa-buildings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  margin-top: 72px;
}
.timeline {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 86px;
  padding: 48px 64px 60px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 0;
  background-image: linear-gradient(#da7d1e, #da7d1e);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 28px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  user-select: none;
  box-sizing: border-box;
}
.timeline-wrap {
  position: relative;
  overflow: visible;
}
.timeline-nav {
  position: absolute;
  top: 84px;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #da7d1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(32, 20, 8, 0.16);
  pointer-events: auto;
}
.timeline-nav:hover,
.timeline-nav:focus-visible {
  background: #da7d1e;
  color: #fff;
}
.timeline-nav.prev {
  left: 18px;
}
.timeline-nav.next {
  right: 18px;
}
.timeline-center {
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: #da7d1e;
  transform: translateX(-50%);
  pointer-events: none;
  display: none;
  z-index: 2;
}
.timeline::-webkit-scrollbar {
  display: none;
}
.timeline.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.tl-item {
  flex: 0 0 205px;
  min-width: 205px;
  text-align: center;
  position: relative;
  padding: 0 30px;
  scroll-snap-align: start;
}
.tl-item:before {
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 2px solid #da7d1e;
  border-radius: 50%;
  background: var(--muted);
  transform: translateX(-50%);
  z-index: 2;
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.tl-item:hover:before,
.tl-item:focus-within:before {
  background: #da7d1e;
  box-shadow: 0 0 0 4px rgba(218, 125, 30, 0.16);
  transform: translateX(-50%) scale(1.08);
}
.tl-item:hover h4,
.tl-item:focus-within h4 {
  color: #da7d1e;
}
.tl-item h4 {
  font-size: 30px;
  font-weight: 300;
  margin: 0 0 16px;
  line-height: 1;
  transition: color 0.22s ease;
}
.tl-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  margin: 0 0 7px;
}
.tl-item p {
  font-size: 14px;
  margin: 0;
  line-height: 1.23;
  font-weight: 400;
}
.numbers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.number-box {
  background: #ff403a;
  color: #fff;
  border-radius: 24px;
  text-align: center;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
}
.number-box strong {
  font-size: 58px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}
.number-box span {
  font-size: 20px;
  line-height: 1.04;
}
.mvv-wrap {
  padding-top: 120px;
  padding-bottom: 70px;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: space-between;
  align-items: stretch;
  gap: 42px;
  max-width: 1080px;
}
.mvv-card {
  width: 100%;
  max-width: 320px;
  min-height: 434px;
  padding-bottom: 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: center;
}
.mvv-bg {
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: 25px;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.1));
}
.bg-shape {
  width: 100%;
  display: block;
}
.mvv-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 101px;
  height: 101px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light), var(--dark));
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 4;
}
.mvv-icon:before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}
.mvv-icon i {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--light), var(--dark));
  -webkit-background-clip: text;
  background-clip: text;
}
.mvv-icon-values {
  font-size: 27px;
}
.mvv-icon-values .fa-gem {
  position: absolute;
  top: 31px;
  left: 56px;
  font-size: 17px;
}
.mvv-white {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 370px;
  flex: 1;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.08));
}
.card-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.card-shape path {
  fill: #fff;
}
.mvv-content {
  position: relative;
  z-index: 1;
  padding: 95px 40px 65px;
  text-align: center;
}
.mvv-content h3 {
  font-size: 30px;
  font-weight: 300;
  color: #222;
  margin: 0;
}
.mvv-content span {
  display: block;
  width: 61px;
  height: 2px;
  background: #ed1559;
  margin: 12px auto 28px;
}
.mvv-content p {
  line-height: 1.45;
  color: #111;
  margin: 0;
}
.mvv-card.teal {
  --light: #39d2d1;
  --dark: #087f98;
}
.mvv-card.orange {
  --light: #ffa114;
  --dark: #ff5c0c;
}
.mvv-card.pink {
  --light: #f11563;
  --dark: #be0050;
}
.quality {
  background: url("assets/quality_bg.jpg?v=20260516") center/cover no-repeat;
  color: #fff;
  position: relative;
  padding: 88px 0;
}
.quality:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 47, 91, 0.78);
}
.quality .container-narrow {
  position: relative;
}
.quality p {
  max-width: 560px;
}
.video-thumb {
  max-width: 800px;
  margin: 55px auto 0;
  position: relative;
}
.video-thumb:after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 45px;
  border-radius: 11px;
  background: #f00;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 23px;
}
.projects-hero {
  padding: 52px 0 66px;
}
.projects-hero .lead-strong {
  display: block;
  margin-top: 30px;
}
.video-thumb:after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 21px;
}
.video-section {
  padding: 64px 0 78px;
}
.institutional-video {
  width: min(100%, clamp(320px, 50vw, 640px));
  aspect-ratio: 16 / 9;
  margin: 41px auto 0;
  background: #111;
}
.institutional-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-link {
  display: inline-flex;
  margin-top: 36px;
}
.proj-strip {
  width: 100%;
  display: flex;
  gap: 0;
  background: var(--muted);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.proj-strip::-webkit-scrollbar {
  display: none;
}
.proj-strip.is-dragging {
  cursor: grabbing;
}
.proj-strip-item {
  flex: 0 0 18vw;
  min-width: 180px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.proj-strip.is-dragging .proj-strip-item {
  pointer-events: none;
}
.proj-strip-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: filter 0.22s ease;
}
.proj-strip-item:hover img,
.proj-strip-item:focus-visible img {
  filter: brightness(0.82);
}
.proj-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 10, 18, 0.86);
}
.proj-lightbox[hidden] {
  display: none;
}
.proj-lightbox img {
  max-width: min(100%, 1120px);
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}
.proj-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.segments {
  text-align: center;
  padding: 76px 0 102px;
}
.segments .section-copy {
  max-width: 650px;
  margin: 34px auto 62px;
  font-size: 16px;
  line-height: 1.42;
}
.segments .section-copy p {
  margin: 0 0 24px;
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 12px;
  max-width: 820px;
  margin: 0 auto;
}
.segment-card {
  aspect-ratio: 1 / 1;
  min-height: 146px;
  border-radius: 28px;
  background: #ff403a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 12px;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.segment-card:hover,
.segment-card:focus-within {
  background: #260767;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(38, 7, 103, 0.2);
}
.segment-card img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.segment-card span {
  display: block;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
}
.segment-card small,
.segment-card strong {
  display: block;
  font-weight: 400;
}
.segment-card small {
  font-size: 15px;
}
.segment-card strong {
  font-size: 21px;
}
.policy {
  max-width: 1120px;
  font-size: 16px;
  line-height: 1.38;
  padding-top: 50px;
}
.policy h1 {
  margin-bottom: 32px;
}
.policy h5 {
  font-size: 17px;
  font-weight: 800;
  margin: 26px 0 0;
}
.policy h6 {
  font-size: 16px;
  font-weight: 800;
  margin: 24px 0 0;
  padding-left: 36px;
}
.policy .indent {
  padding-left: 36px;
}
.policy ul {
  margin: 0 0 24px 28px;
}
@media (max-width: 991px) {
  .topbar {
    padding: 14px 0;
  }
  .topbar-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .logo {
    width: 142px;
  }
  .top-info,
  .topbar .social {
    display: none;
  }
  .social-floating {
    right: 0;
  }
  .social-floating a {
    width: 36px;
    height: 36px;
  }
  .social-floating i {
    font-size: 18px;
  }
  .navbar {
    height: auto;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .navbar .navbar-nav {
    gap: 0;
    text-align: left;
    padding: 14px 0 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 10px;
  }
  .navbar .nav-link {
    display: block;
    padding: 12px 4px !important;
    font-size: 13px;
  }
  .navbar-toggler {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f4f7fb;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .navbar > .container-narrow {
    display: block;
  }
  .split,
  .company-intro-grid,
  .empresa-buildings,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .company-photo-stack {
    min-height: auto;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .company-photo {
    position: static;
    width: 100%;
  }
  .company-photo-stack .caption {
    position: static;
    width: auto;
  }
  .company-current-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 38px;
  }
  .company-copy-bottom {
    padding-top: 0;
  }
  .about-grid,
  .empresa-top-images,
  .empresa-mid-images {
    width: 100%;
    margin: 0;
  }
  .sustainability-section .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .sustainability-mosaic {
    max-width: none;
    margin: 0;
  }
  .catalog-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .catalog-head select {
    width: 100%;
    height: 46px;
  }
  .segments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
  }
  .launch-grid,
  .numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-home-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 190px 190px;
    flex-basis: min(900px, calc(100vw - 36px));
  }
  .project-mosaic-item.item-3,
  .project-mosaic-item.item-4 {
    grid-column: auto;
    grid-row: auto;
  }
  .mvv-grid {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
    gap: 95px;
  }
  .footer-bottom .container-narrow {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom span:last-child {
    text-align: center;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .container-narrow {
    width: min(100% - 24px, 1140px);
  }
  .section {
    padding: 42px 0;
  }
  .title {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 24px;
  }
  .title:after {
    margin-top: 12px;
  }
  .section-intro,
  .launches-section p,
  .projects-special-section p {
    max-width: 100%;
    font-size: 16px;
  }
  .lead-strong {
    font-size: 23px;
  }
  .lead-light {
    font-size: 20px;
  }
  .cookie {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .cookie .btn-pill {
    width: 100%;
  }
  .launch-grid,
  .numbers {
    grid-template-columns: 1fr;
  }
  .projects-home-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    flex-basis: min(86vw, 340px);
    gap: 18px;
  }
  .project-mosaic-item {
    height: 220px;
  }
  .projects-scroll {
    margin-top: 30px;
  }
  .number-box strong {
    font-size: 50px;
  }
  .catalog-header {
    padding: 30px 0 18px;
  }
  .catalog-head .title {
    margin-bottom: 0;
  }
  .catalog-head label {
    justify-self: start;
    margin-top: 4px;
  }
  .catalog-card {
    flex-basis: 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }
  .hero {
    width: 100%;
  }
  .hero .carousel-indicators {
    bottom: 10px;
  }
  .hero .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
  .hero img {
    width: 100%;
    min-height: 180px;
    object-fit: cover;
  }
  .cookie-floating {
    width: 100%;
    margin: 0;
    left: 0;
    transform: none;
  }
  .contact-grid {
    gap: 26px;
  }
  .contact {
    padding-bottom: 44px;
  }
  .contact .form-control,
  .contact .form-select {
    min-height: 46px;
  }
  .contact textarea.form-control {
    min-height: 130px;
  }
  .button-row {
    gap: 14px;
  }
  .btn-pill {
    width: 100%;
    padding-inline: 18px;
  }
  .footer {
    padding: 42px 0;
  }
  .footer-grid {
    gap: 28px;
    text-align: center;
  }
  .footer .logo {
    margin-inline: auto;
  }
  .footer nav {
    display: grid;
    gap: 8px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer a {
    font-size: 14px;
  }
  .footer-bottom {
    padding: 18px 0;
  }
  .footer-bottom .container-narrow {
    gap: 12px;
  }
  .timeline {
    padding-inline: 24px;
  }
  .timeline-nav {
    top: 78px;
    width: 36px;
    height: 36px;
  }
  .tl-item {
    flex-basis: 170px;
    min-width: 170px;
    padding-inline: 22px;
  }
  .segments-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .segment-card {
    min-height: 132px;
    border-radius: 22px;
    gap: 10px;
    padding: 14px 10px;
  }
  .segment-card img {
    width: 42px;
    height: 42px;
  }
  .segment-card small {
    font-size: 13px;
  }
  .segment-card strong {
    font-size: 18px;
  }
}
