/* =============================================
   OM ENERGY RESOURCES — WIREFRAME STYLES
   ============================================= */

/* ---- UTILIDADES ---- */

.wf-img {
  background: #d8d8d8;
  border: 1.5px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 12px;
}

.label {
  font-size: 30px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.btn-wf {
  display: inline-block;
  border: 1.5px solid #999;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  color: #888;
  margin-right: 8px;
  margin-top: 6px;
  cursor: pointer;
  text-decoration: none;
}

.chip {
  background: #e0e0e0;
  border-radius: 3px;
  padding: 3px 9px;
  font-size: 11px;
  color: #888;
  display: inline-block;
  margin-right: 6px;
  margin-top: 4px;
}

.card-wf {
  height: 300px;
  background: #404742;
  padding: 14px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.h1 {
  font-size: 20px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}

.h2 {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  margin-bottom: 4px;
}

.h3 {
  font-size: 13px;
  font-weight: 500;
  color: #777;
  margin-bottom: 4px;
}

.body-txt {
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
}

.num-badge {
  width: auto;
  height: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  font-weight: 500;
  flex-shrink: 0;
}

/* =============================================
   WRAPPER GENERAL
   ============================================= */

.page-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  background-color: var(--color-bg-page);
  display: block;
  background: #aaaaaa;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  width: 100px;
  height: 80px;
  background-image: url("../assets/images/logos/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 18px;
  position: static;
}

.navbar__link {
  height: 10px;
  border-radius: 2px;
}

.navbar__cta {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 12px;
  border: none;
  background-color: #404742;
  padding-left: 16px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-top: 8px;
  transition: all 0.2s ease;
}

.navbar__cta:hover {
  background-color: #ffffff;
  color: #000000;
}

.navbar__item {
  position: relative;
}

/* Hamburger: oculto en desktop */
.navbar__hamburger {
  display: none;
}

/* DROPDOWN — desktop */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: max-content;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 9999;
}

.navbar__dropdown--active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-label {
  font-size: 13px;
  color: #111111;
  white-space: nowrap;
}

.navbar__dropdown-btn {
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  padding: 10px 16px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.navbar__dropdown-btn:hover {
  background: #404742;
}

.navbar__dropdown--vertical {
  flex-direction: column;
  align-items: stretch;
  min-width: 240px;
  padding: 8px 0;
}

.navbar__dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.navbar__dropdown-row:hover {
  background: rgba(0, 0, 0, 0.04);
}

.navbar__dropdown-row .navbar__dropdown-label {
  color: #111111;
}

.navbar__dropdown-arrow {
  color: #111111;
  opacity: 0.5;
  font-size: 13px;
}

.navbar__dropdown-img {
  display: none !important;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-image: url("../assets/images/hero-images/Home.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-left: 40px;
  padding-bottom: 100px;
  padding-right: 40px;
}

.hero__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.hero__title {
  width: 50%;
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

.hero__info {
  height: auto;
  width: 600px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.hero__sub {
  width: 100%;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 12px;
  line-height: 29px;
}

.hero__cta {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 12px;
  border: none;
  background-color: #404742;
  padding-left: 16px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-top: 8px;
  transition: all 0.2s ease;
}

.hero__cta:hover {
  background-color: #ffffff;
  color: #000000;
}

/* =============================================
   WHAT WE DO — INTRO
   ============================================= */

.what-intro {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  padding-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
  gap: 48px;
}

.what__title {
  font-size: 64px;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
}

.what__icons {
  height: auto;
  width: 100%;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
}

.title__icons {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 8px;
}

.icon {
  height: 24px;
  width: 24px;
  margin-top: 3px;
}

.title {
  font-size: 24px;
  color: #000000;
  margin-bottom: 12px;
}

.subtitle {
  width: 60%;
  font-size: 24px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 12px;
  line-height: 29px;
}

/* =============================================
   WHAT WE DO — SERVICIOS (01/02/03)
   ============================================= */

.services {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 40px;
  padding-right: 40px;
}

.service-card {
  height: auto;
  width: 100%;
  display: flex;
  gap: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  background-color: #404742;
  padding: 16px;
}

.service-card__inner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.service-card__img-1 {
  height: 300px;
  width: 100%;
  background-image: url("../assets/images/homepage-images/analyzing-lifestyle-female-marketing-tech-high\ 1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card__img-2 {
  height: 300px;
  width: 100%;
  background-image: url("../assets/images/homepage-images/alternative.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card__img-3 {
  height: 300px;
  width: 100%;
  background-image: url("../assets/images/homepage-images/What\ We\ Do-3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service__info {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.service-card__title {
  font-size: 24px;
  color: #ffffff;
}

.service-card__text {
  font-size: 16px;
  color: #ffffff;
}

/* =============================================
   CHANGING LANDSCAPE
   ============================================= */

.landscape {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-image: url("../assets/images/homepage-images/section-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
}

.div-landscape__info1 {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.landscapte__title1 {
  font-size: 24px;
  color: #ffffff;
}

.landscapte__subtitle1 {
  width: 50%;
  font-size: 16px;
  color: #ffffff;
}

.div-landscape__info2 {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: flex-end;
}

.landscapte__title2 {
  width: 50%;
  font-size: 24px;
  color: #ffffff;
}

/* =============================================
   OUR APPROACH
   ============================================= */

.approach {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
}

.approach__left {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.approach__top {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.approach__title {
  font-size: 48px;
  color: #000000;
}

.approach__subtitle {
  width: 50%;
  font-size: 24px;
  color: #000000;
}

.approach__image {
  height: 100%;
  width: fit-content;
}

.approach__bottom {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.approach__cards {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.cards__top,
.cards__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.card__individual {
  height: 100px;
  width: 350px;
  border: 1px solid #000000;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 14px;
}

.card__title {
  font-size: 16px;
  color: #000000;
}

.card__subtitle {
  font-size: 12px;
  color: #000000;
}

/* =============================================
   WHY US
   ============================================= */

.why-us {
  height: 700px;
  width: 100%;
  padding: 40px;
  background-image: url("../assets/images/homepage-images/section2-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 48px;
}

.why-us__info {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.why-us__title {
  font-size: 48px;
  color: #ffffff;
}

.why-us__subtitle {
  width: 50%;
  font-size: 24px;
  color: #ffffff;
}

.why-us__chips {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.chip__row {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.chip {
  height: 36px;
  font-size: 16px;
  width: auto;
  border: 1px solid #ffffff;
  border-radius: 25px;
  padding: 8px;
  color: #ffffff;
  background-color: transparent;
  text-align: center;
}

/* =============================================
   VISION & MISSION
   ============================================= */

.vision-mission {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 40px;
  padding-bottom: 100px;
  padding-right: 40px;
  padding-top: 100px;
  gap: 200px;
}

.vision-mission__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vision-mission__title {
  font-size: 48px;
  color: #000000;
}

.vision-mission__icon {
  height: 24px;
  width: 24px;
}

.vision-mission__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.vision-mission__Card {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 24px;
}

.vision__title {
  width: 24px;
  font-size: 16px;
  color: #000000;
}

.vision__img {
  height: fit-content;
  width: 350px;
}

.vision__subtitle {
  width: 30%;
  font-size: 16px;
  color: #000000;
}

/* =============================================
   IMAGE
   ============================================= */

.image-rest {
  height: 700px;
  width: 100%;
  background-image: url("../assets/images/homepage-images/section-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =============================================
   WHO WE WORK WITH
   ============================================= */

.partners {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-left: 40px;
  padding-bottom: 100px;
  padding-right: 40px;
  padding-top: 100px;
}

.partners__left {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.partners__info {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.partners__title {
  font-size: 48px;
  color: #000000;
}

.partners__subtitle {
  width: 50%;
  font-size: 24px;
  color: #000000;
}

.partners__chips {
  height: auto;
  width: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.partners__chip-row {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.partners__chip {
  height: 36px;
  font-size: 16px;
  width: auto;
  border: 1px solid #000000;
  border-radius: 25px;
  padding: 8px;
  color: #000000;
  background-color: transparent;
  text-align: center;
}

.partners__image {
  height: 100%;
  width: fit-content;
}

/* =============================================
   IMAGE
   ============================================= */

.image-rest-2 {
  height: 700px;
  width: 100%;
  background-image: url("../assets/images/homepage-images/section-3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.cta__title {
  width: 40%;
  font-size: 48px;
  color: #000000;
  text-align: center;
}

.cta__subtitle {
  width: 50%;
  font-size: 24px;
  color: #000000;
  text-align: center;
}

.cta-banner__title {
  font-size: 22px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 10px;
  line-height: 1.35;
}

.cta-banner__sub {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.ctas {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta__1 {
  font-size: 16px;
  color: white;
  padding: 8px;
  background-color: #000000;
  text-align: center;
}

.cta__2 {
  font-size: 16px;
  color: white;
  padding: 8px;
  background-color: #404742;
  text-align: center;
}

/* =============================================
   FOOTER SPLIT
   ============================================= */

.footer-split {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-split__left {
  height: 100%;
  width: auto;
  background-color: #404742;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.footer-split__right {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  position: relative;
  background-image: url("../assets/images/footer/footer-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 24px;
  padding-left: 40px;
}

.footer__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.footer-split__cta-title {
  font-size: 48px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 6px;
}

.footer__title {
  font-size: 48px;
  color: #fffefe;
}

.footer__desc {
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer__nav {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__col-title {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer__links {
  font-size: 14px;
  color: #ffffff;
  list-style: none;
}

.footer__contact {
  margin-bottom: 20px;
}

.footer__contact-label {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer__contact-email {
  font-size: 14px;
  color: #ffffff;
  list-style: none;
  margin-bottom: 8px;
}

.footer__contact-note {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
}

/* =============================================
   FOOTER — LEGAL LINKS (NEW)
   ============================================= */

.footer__legal {
  margin-bottom: 20px;
}

.footer__legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__legal-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-links li a:hover {
  color: #ffffff;
}

.footer__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.footer__logo {
  height: 70px;
  width: 130px;
  width: auto;
}

.footer__copy {
  font-size: 10px;
  color: #ffffff;
}

.footer__sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.footer__sitemap-links li a:hover {
  color: #ffffff;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */

@media (max-width: 1024px) {
  .navbar__links {
    gap: 12px;
    padding: 10px 8px;
  }

  .hero {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 60px;
  }

  .hero__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero__title {
    width: 100%;
    font-size: 44px;
  }

  .hero__info {
    width: 100%;
  }

  .hero__sub {
    font-size: 18px;
  }

  .what-intro {
    padding-top: 60px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 32px;
  }

  .what__title {
    font-size: 44px;
  }

  .what__icons {
    flex-direction: column;
    gap: 16px;
  }

  .subtitle {
    width: 100%;
    font-size: 18px;
  }

  .services {
    flex-direction: column;
    padding: 60px 24px;
    gap: 16px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card__img-1,
  .service-card__img-2,
  .service-card__img-3 {
    width: 100%;
    height: 220px;
  }

  .landscape {
    height: auto;
    padding: 60px 24px;
  }

  .landscapte__subtitle1,
  .landscapte__title2 {
    width: 100%;
  }

  .approach {
    height: auto;
    flex-direction: column;
    padding: 60px 24px;
    gap: 40px;
  }

  .approach__image {
    width: 100%;
    height: auto;
  }

  .approach__subtitle {
    width: 100%;
    font-size: 18px;
    margin-bottom: 48px;
  }

  .card__individual {
    width: 100%;
    height: auto;
  }

  .why-us {
    height: auto;
    padding: 60px 24px;
  }

  .why-us__subtitle {
    width: 100%;
    font-size: 18px;
  }

  .chip__row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .vision-mission {
    padding: 60px 24px;
    gap: 60px;
  }

  .vision-mission__title {
    font-size: 36px;
  }

  .vision-mission__Card {
    flex-direction: column;
    gap: 24px;
  }

  .vision__img {
    width: 100%;
    height: auto;
  }

  .vision__subtitle {
    width: 100%;
  }

  .image-rest,
  .image-rest-2 {
    height: 400px;
  }

  .partners {
    height: auto;
    flex-direction: column;
    padding: 60px 24px;
    gap: 32px;
  }

  .partners__image {
    width: 100%;
    height: auto;
    display: block;
  }

  .partners__subtitle {
    width: 100%;
    font-size: 18px;
  }

  .partners__chip-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cta-banner {
    height: auto;
    padding: 60px 24px;
  }

  .cta__title {
    width: 80%;
    font-size: 36px;
  }

  .cta__subtitle {
    width: 80%;
    font-size: 18px;
  }

  .footer-split {
    height: auto;
    flex-direction: column;
  }

  .footer-split__left {
    width: 100%;
    padding: 40px 24px;
  }

  .footer-split__right {
    width: 100%;
    height: 300px;
  }

  .footer-split__cta-title {
    font-size: 32px;
  }

  .footer__title {
    font-size: 32px;
  }

  .footer__desc {
    font-size: 16px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */

@media (max-width: 768px) {
  /* NAVBAR */
  .navbar {
    height: 70px;
    padding: 12px 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .navbar__logo {
    width: 70px;
    height: 50px;
  }

  /* Menú completo: oculto por defecto, visible solo con --open */
  .navbar__links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #1a1a1a;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 0;
    overflow-y: auto;
    z-index: 9998;
  }

  .navbar__links--open {
    display: flex;
  }

  .footer__bottom {
    margin-top: 48px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .navbar__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar__link {
    display: block;
    width: 100%;
    height: auto;
    color: #ffffff;
    font-size: 16px;
    padding: 16px 0;
    text-decoration: none;
  }

  .navbar__link--active {
    color: #a8c0a0;
  }

  /* ── FIX CLAVE: dropdown oculto por defecto en mobile ── */
  .navbar__dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 0 0 8px 16px;
    width: 100%;
    min-width: unset;
    display: none !important;
  }

  /* Solo se muestra cuando JS agrega --active */
  .navbar__dropdown--active {
    display: flex !important;
    pointer-events: all;
    transform: none !important;
  }

  .navbar__dropdown-label {
    color: #cccccc;
    font-size: 14px;
  }

  .navbar__dropdown-arrow {
    color: #cccccc;
  }

  .navbar__dropdown-row {
    padding: 10px 8px;
  }

  .navbar__cta {
    display: none;
  }

  /* Hamburger: visible en mobile */
  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .navbar__hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar__hamburger--open span:nth-child(2) {
    opacity: 0;
  }

  .navbar__hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */
  .hero {
    padding: 0 20px 48px;
    align-items: flex-end;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__sub {
    font-size: 15px;
    line-height: 1.6;
  }

  /* WHAT WE DO */
  .what-intro {
    padding: 60px 20px 0;
    gap: 24px;
  }

  .what__title {
    font-size: 32px;
  }

  .title {
    font-size: 18px;
  }

  .subtitle {
    font-size: 15px;
    width: 100%;
  }

  /* SERVICES */
  .services {
    padding: 40px 20px;
  }

  .service-card__title {
    font-size: 18px;
  }

  .service-card__text {
    font-size: 14px;
  }

  /* LANDSCAPE */
  .landscape {
    padding: 48px 20px;
  }

  .landscapte__title1,
  .landscapte__title2 {
    font-size: 18px;
  }

  .landscapte__subtitle1 {
    font-size: 14px;
  }

  /* APPROACH */
  .approach {
    padding: 48px 20px;
  }

  .approach__title {
    font-size: 32px;
  }

  .approach__subtitle {
    font-size: 15px;
  }

  .cards__top,
  .cards__bottom {
    flex-direction: column;
  }

  /* WHY US */
  .why-us {
    padding: 48px 20px;
    gap: 32px;
  }

  .why-us__title {
    font-size: 32px;
  }

  .why-us__subtitle {
    font-size: 15px;
  }

  .chip {
    font-size: 13px;
    height: auto;
    padding: 6px 12px;
  }

  /* VISION & MISSION */
  .vision-mission {
    padding: 48px 20px;
    gap: 48px;
  }

  .vision-mission__title {
    font-size: 28px;
  }

  /* IMAGE SECTIONS */
  .image-rest,
  .image-rest-2 {
    height: 250px;
  }

  /* PARTNERS */
  .partners {
    padding: 48px 20px;
  }

  .partners__title {
    font-size: 32px;
  }

  .partners__subtitle {
    font-size: 15px;
  }

  .partners__chip {
    font-size: 13px;
    height: auto;
    padding: 6px 12px;
  }

  /* CTA BANNER */
  .cta-banner {
    padding: 48px 20px;
    gap: 16px;
  }

  .cta__title {
    width: 100%;
    font-size: 28px;
  }

  .cta__subtitle {
    width: 100%;
    font-size: 15px;
  }

  .ctas {
    flex-direction: column;
    width: 100%;
  }

  .cta__1,
  .cta__2 {
    width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 12px;
  }

  /* FOOTER */
  .footer-split__right {
    height: 220px;
  }

  .footer-split__cta-title {
    font-size: 24px;
  }

  .footer__title {
    font-size: 24px;
  }

  .footer__desc {
    font-size: 14px;
  }

  .footer__nav {
    gap: 24px;
  }

  .footer__legal-links {
    gap: 8px;
  }
}
