/* =============================================
   OM ENERGY — MARKETS 
   ============================================= */

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

.chip {
  display: inline-block;
  border: 1px solid #bbb;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  color: #888;
  margin-right: 6px;
  margin-top: 6px;
}

.h1 {
  font-size: 26px;
  font-weight: 500;
  color: #eee;
  line-height: 1.25;
  margin-bottom: 8px;
}
.h2 {
  font-size: 18px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.3;
}
.h3 {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 4px;
}
.h3-light {
  font-size: 13px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 4px;
}
.body-txt {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
}
.body-txt-light {
  font-size: 12px;
  color: #bbb;
  line-height: 1.7;
}
.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
   ============================================= */

.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/hero-images/Markets.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 {
  font-size: 48px;
  color: #ffffff;
}

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

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

.data__title {
  font-size: 48px;
  color: rgb(255, 255, 255);
}

.data__subtitle {
  font-size: 16px;
  color: rgb(255, 255, 255);
}

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

/* =============================================
   OUR MARKETS
   ============================================= */

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

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

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

.our-markets__icon {
  height: 24px;
  width: 24px;
}

.our-markets__title {
  font-size: 24px;
  color: #000000;
}

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

.our-markets__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.region-card {
  background: #404742;
  border-radius: 6px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.region-card__tag {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 16px;
  color: #ffffff;
}

.africa__map {
  height: 300px;
  width: 300px;
  background-image: url("../assets/images/markets-images/Our\ Markets-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.latin__map {
  height: 300px;
  width: 300px;
  background-image: url("../assets/images/markets-images/Our\ Markets-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.region-card__title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  margin-top: 48px;
}

.region-card__body {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 16px;
}

.region-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

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

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

.image-rest {
  height: 800px;
  width: 100%;
  background-image: url("../assets/images/markets-images/view-tank-container-water-storage\ 1.png");
  background-size: cover;
}

/* =============================================
   WHY EMERGING MARKETS
   ============================================= */

.why-em {
  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: 100px;
}

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

.why-em__title {
  width: 30%;
  font-size: 48px;
  color: #000000;
}

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

.why-em__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.why-card {
  background: #404742;
  border-radius: 5px;
  padding: 16px 14px;
}

.why-card__num {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 28px;
}

.why-card__title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
}

.why-card__body {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}

/* =============================================
   MARKET INTELLIGENCE & OPPORTUNITIES
   ============================================= */

.intelligence {
  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: 100px;
}

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

.intelligence__title {
  width: 30%;
  font-size: 48px;
  color: #000000;
}

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

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

.intel-card {
  height: 190px;
  width: 100%;
  background-color: #404742;
  border-radius: 5px;
  padding: 16px;
}

.intel-card__icon {
  width: 24px;
  height: 24px;
  background-color: transparent;
  border-radius: 4px;
  margin-bottom: 14px;
}

.intel-card__title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}

.intel-card__body {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}

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

.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
   ============================================= */

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

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

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

  .navbar__links {
    gap: 12px;
  }

  .navbar__link {
    font-size: 13px;
  }

  .hero {
    padding: 40px 32px 80px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__data {
    gap: 32px;
  }

  .data__title {
    font-size: 36px;
  }

  .data__subtitle {
    font-size: 14px;
  }

  .our-markets {
    padding: 80px 32px;
    gap: 60px;
  }

  .our-markets__title {
    font-size: 20px;
  }

  .our-markets__subtitle {
    width: 58%;
    font-size: 18px;
  }

  .our-markets__cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .africa__map,
  .latin__map {
    height: 220px;
    width: 100%;
  }

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

  .region-card__body {
    font-size: 14px;
  }

  .region-chip {
    font-size: 13px;
    height: auto;
  }

  .why-em {
    padding: 80px 32px;
    gap: 60px;
  }

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

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

  .why-em__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-card__num {
    font-size: 20px;
  }

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

  .why-card__body {
    font-size: 14px;
  }

  .intelligence {
    padding: 80px 32px;
    gap: 60px;
  }

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

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

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

  .intel-card__body {
    font-size: 14px;
  }

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

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

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

  .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 {
    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 {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
  }

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

  .hero__title {
    font-size: 32px;
  }

  .hero__right {
    width: 100%;
  }

  .hero__data {
    gap: 24px;
    flex-wrap: wrap;
  }

  .data__title {
    font-size: 32px;
  }

  .data__subtitle {
    font-size: 13px;
  }

  .our-markets {
    padding: 60px 20px;
    gap: 40px;
  }

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

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

  .our-markets__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .africa__map,
  .latin__map {
    height: 300px;
    width: 100%;
  }

  .region-card__title {
    font-size: 20px;
    margin-top: 24px;
  }

  .region-card__body {
    font-size: 14px;
  }

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

  .why-em {
    padding: 60px 20px;
    gap: 40px;
  }

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

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

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

  .why-em__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card__num {
    font-size: 18px;
    margin-bottom: 16px;
  }

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

  .why-card__body {
    font-size: 14px;
  }

  .intelligence {
    padding: 60px 20px;
    gap: 40px;
  }

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

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

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

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

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

  .intel-card__body {
    font-size: 14px;
  }

  .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,
  .cta__2 {
    text-align: center;
    width: 100%;
    font-size: 14px;
  }

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

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