/* =============================================
   OM ENERGY — PROJECTS & EXECUTION — WIREFRAME
   ============================================= */

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

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

.body-txt {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
}
.body-txt-dark {
  font-size: 11px;
  color: #888;
  line-height: 1.6;
}
.label {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

/* =============================================
   WRAPPER
   ============================================= */
.page-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  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;
}

.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;
}

/* =============================================
   HERO — TRACK RECORD & DELIVERY
   Imagen refinería/infraestructura fondo
   Título abajo izquierda / subtítulo + CTA derecha
   ============================================= */

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

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

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

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

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

.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;
}

/* =============================================
  STATS BAR — 4 métricas
   ============================================= */

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

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

.stat-item__value {
  font-size: 64px;
  color: #000000;
}

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

/* =============================================
   PROJECT CASE STUDIES
   Título centrado + 2 filas de 2 cards
   ============================================= */

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

.case-studies__title {
  font-size: 48px;
  font-weight: 400;
  color: #000000;
}

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

/* project card oscura */
.proj-card {
  background: #404742;
  border-radius: 5px;
  padding: 18px;
  position: relative;
  gap: 24px;
}
.proj-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.proj-card__tag {
  display: inline-block;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  color: #ffffff;
}
.proj-card__year {
  font-size: 10px;
  color: #ffffff;
}
.proj-card__title {
  font-size: 24px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 48px;
  line-height: 1.4;
}

.proj-card__row {
  margin-bottom: 24px;
  border-bottom: 1px solid #ffffff33;
  padding-bottom: 24px;
}
.proj-card__row-label {
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.proj-card__row-text {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

/* =============================================
   MARKET INTELLIGENCE & OPPORTUNITIES
   Título izquierda / texto derecha
   3 stat cards en fila
   imagen wide de fondo
   ============================================= */

.market {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
  padding-top: 100px;
  gap: 100px;
}

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

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

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

.market__row {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.market__card {
  height: 350px;
  width: 100%;
  background-color: #404742;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding: 16px;
}

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

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

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

.market-card__subtitle {
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 16px;
  border-bottom: 1px solid #666c68;
}

.market-card__date {
  font-size: 16px;
  color: #ffffff;
}

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

/* =============================================
   OPERATIONAL DELIVERY — HOW WE EXECUTE
   Título + subtítulo / 4 numbered cards oscuras
   ============================================= */

.operational {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
  padding-top: 100px;
  gap: 100px;
}

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

.operational-info__title {
  font-weight: 400;
  font-size: 48px;
  color: #000000;
}

.operational-info__subtitle {
  font-size: 24px;
  color: #000000;
}

.operational__row {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.operational__card {
  height: 400px;
  width: 100%;
  background-color: #404742;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding: 16px;
}

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

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

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

.operational__number {
  font-size: 60px;
  color: #ffffff;
}

/* =============================================
   CTA MID — Let's discuss similar projects
   ============================================= */
.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;
}

/* =============================================
   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__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;
}

/* =============================================
   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;
}

/* =============================================
   OM ENERGY — PROJECTS & EXECUTION — RESPONSIVE
   Agregá esto al final de projects.css
   ============================================= */

/* =============================================
   TABLET — max-width: 1024px
   ============================================= */
@media (max-width: 1024px) {
  /* NAVBAR */
  .navbar {
    height: 70px;
    padding: 12px 24px;
  }

  .navbar__logo {
    width: 80px;
    height: 60px;
  }

  .navbar__links {
    gap: 12px;
  }

  .navbar__link {
    font-size: 13px;
  }

  /* HERO */
  .hero {
    padding: 40px 32px 80px;
  }

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

  .hero__right {
    width: 380px;
  }

  .hero__sub {
    font-size: 18px;
  }

  /* STATS BAR */
  .stats-bar {
    padding: 80px 32px;
    gap: 8%;
    flex-wrap: wrap;
  }

  .stat-item__value {
    font-size: 48px;
  }

  .stat-item__label {
    font-size: 14px;
  }

  /* CASE STUDIES */
  .case-studies {
    padding: 80px 32px;
    gap: 60px;
  }

  .case-studies__title {
    font-size: 38px;
  }

  .case-studies__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .proj-card__title {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .proj-card__row-text {
    font-size: 13px;
  }

  /* MARKET */
  .market {
    padding: 80px 32px;
    gap: 60px;
  }

  .market__title {
    font-size: 38px;
    width: 35%;
  }

  .market__subtitle {
    width: 55%;
    font-size: 18px;
  }

  .market__row {
    gap: 16px;
  }

  .market__card {
    height: auto;
    min-height: 280px;
  }

  .market__label {
    font-size: 38px;
  }

  .market-card__title {
    font-size: 20px;
  }

  .market-card__subtitle {
    font-size: 14px;
  }

  /* OPERATIONAL */
  .operational {
    padding: 80px 32px;
    gap: 60px;
  }

  .operational-info__title {
    font-weight: lighter;
    font-size: 38px;
  }

  .operational-info__subtitle {
    font-size: 18px;
  }

  .operational__row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .operational__card {
    width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
    height: auto;
    min-height: 300px;
  }

  .operational__title {
    font-size: 20px;
  }

  .operational__subtitle {
    font-size: 14px;
  }

  .operational__number {
    font-size: 48px;
  }

  /* CTA */
  .cta-banner {
    height: auto;
    padding: 80px 32px;
  }

  .cta__title {
    width: 60%;
    font-size: 38px;
  }

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

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

  .footer-split__left {
    width: 100%;
    padding: 48px 32px 32px;
  }

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

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

  .footer__title {
    font-size: 36px;
  }

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

/* =============================================
   MOBILE — max-width: 768px
   ============================================= */
@media (max-width: 768px) {
  /* NAVBAR — hamburger */
  .navbar {
    height: 64px;
    padding: 0 20px;
  }

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

  .navbar__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 0;
    overflow-y: auto;
    z-index: 9998;
  }

  .navbar__links--open {
    display: flex;
  }

  .navbar__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .navbar__link {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    color: #111;
    text-decoration: none;
    height: auto;
  }

  .navbar__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: none;
    background: rgba(0, 0, 0, 0.03);
    min-width: 0;
    width: 100%;
  }

  .navbar__dropdown--active {
    display: flex;
    transform: none;
  }

  .navbar__dropdown-row {
    padding: 12px 32px;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s 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 {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
  }

  .hero__bottom {
    flex-direction: column;
    gap: 32px;
  }

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

  .hero__right {
    width: 100%;
  }

  .hero__sub {
    font-size: 16px;
  }

  /* STATS BAR */
  .stats-bar {
    padding: 60px 20px;
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    column-gap: 16px;
  }

  .stat-item__value {
    font-size: 40px;
  }

  .stat-item__label {
    font-size: 13px;
  }

  /* CASE STUDIES */
  .case-studies {
    padding: 60px 20px;
    gap: 40px;
  }

  .case-studies__title {
    font-size: 28px;
    text-align: center;
  }

  .case-studies__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proj-card__title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .proj-card__row-label {
    font-size: 12px;
  }

  .proj-card__row-text {
    font-size: 13px;
  }

  /* MARKET */
  .market {
    padding: 60px 20px;
    gap: 40px;
  }

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

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

  .market__subtitle {
    width: 100%;
    font-size: 16px;
  }

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

  .market__card {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .market__label {
    font-size: 36px;
  }

  .market-card__title {
    font-size: 20px;
  }

  .market-card__subtitle {
    font-size: 14px;
  }

  .market-card__date {
    font-size: 13px;
  }

  /* OPERATIONAL */
  .operational {
    padding: 60px 20px;
    gap: 40px;
  }

  .operational-info__title {
    font-weight: lighter;
    font-size: 28px;
  }

  .operational-info__subtitle {
    font-size: 16px;
  }

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

  .operational__card {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .operational__title {
    font-size: 20px;
  }

  .operational__subtitle {
    font-size: 14px;
  }

  .operational__number {
    font-size: 48px;
    margin-top: 16px;
  }

  /* CTA */
  .cta-banner {
    height: auto;
    padding: 60px 20px;
  }

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

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

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

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

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

  .footer-split__left {
    width: 100%;
    padding: 48px 20px 32px;
  }

  .footer-split__right {
    width: 100%;
    height: 250px;
    padding: 24px 20px;
  }

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

  .footer__title {
    font-size: 28px;
  }

  .footer__desc {
    font-size: 16px;
  }

  .footer__nav {
    gap: 24px;
  }

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