/* =====================================================
   PAMPA LOG UY — Stylesheet v2
   ===================================================== */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --color-dark:        #1c1e22;
  --color-dark2:       #22242a;
  --color-dark3:       #12141a;
  --color-gold:        #FFAA17;
  --color-gold-dark:   #D38F1B;
  --color-white:       #ffffff;
  --color-off-white:   #f4f5f8;
  --color-light-gray:  #e0e2e8;
  --color-border-dark: rgba(255,255,255,0.10);
  --color-border-light:rgba(0,0,0,0.08);

  --font-oswald:    'Oswald', sans-serif;
  --font-palanquin: 'Palanquin', sans-serif;
  --font-teko:      'Teko', sans-serif;

  --nav-height: 72px;
  --tr: 0.32s ease;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 14px 48px rgba(0,0,0,0.22);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-palanquin);
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
  line-height: 1.65;
}
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar       { width: 7px; }
::-webkit-scrollbar-track { background: var(--color-dark2); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 4px; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============================================
   UTILITY
   ============================================ */
.label-tag {
  font-family: var(--font-teko);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 12px;
}
.label-tag--light { color: rgba(255,255,255,0.5); }
.label-tag--gold  { color: var(--color-gold); }

.section-title {
  font-family: var(--font-oswald);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-title--dark  { color: var(--color-dark);  font-size: clamp(30px,4vw,52px); }
.section-title--light { color: var(--color-white); font-size: clamp(28px,3.8vw,50px); }

.highlight { color: var(--color-gold); }

.section-text { font-family: var(--font-palanquin); font-size: 17px; font-weight: 300; line-height: 1.8; color: rgba(34,36,41,0.78); margin-bottom: 14px; }
.section-text--light { color: rgba(255,255,255,0.78); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-teko);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 6px;
  transition: all var(--tr);
}
.btn--primary { background: var(--color-gold); color: var(--color-dark); }
.btn--primary:hover { background: var(--color-gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,170,23,0.35); }
.btn--outline { background: transparent; color: var(--color-white); border: 2px solid rgba(255,255,255,0.55); }
.btn--outline:hover { border-color: var(--color-gold); color: var(--color-gold); transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--tr), box-shadow var(--tr);
}
.navbar.scrolled {
  background: rgba(18,20,26,0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.navbar__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  height: 70px;
  width: 70px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  transition: transform var(--tr);
  border-radius: 0;
}
.navbar__logo:hover { transform: scale(1.04); }

.navbar__list { display: flex; gap: 4px; }
.navbar__link {
  font-family: var(--font-teko);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 7px 13px;
  border-radius: 5px;
  transition: color var(--tr), background var(--tr);
  position: relative;
  white-space: nowrap;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 13px; right: 13px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.navbar__link:hover,
.navbar__link.active { color: var(--color-white); }
.navbar__link:hover::after,
.navbar__link.active::after { transform: scaleX(1); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  transition: all var(--tr);
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  position: relative;
  margin-left: 12px;
  flex-shrink: 0;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-teko);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
}
.lang-switcher__btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(255,170,23,0.08);
}
.lang-switcher__flag {
  font-size: 18px;
  line-height: 1;
}
.lang-switcher__arrow {
  font-size: 10px;
  transition: transform var(--tr);
  opacity: 0.7;
}
.lang-switcher__arrow.rotated {
  transform: rotate(180deg);
}
.lang-switcher__dropdown {
  position: fixed !important;
  min-width: 170px !important;
  display: block !important;
  background: rgba(18,20,26,0.98) !important;
  border: 1.5px solid rgba(255,170,23,0.28) !important;
  border-radius: 10px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7) !important;
  overflow: hidden !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 99999 !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4px 0 !important;
}
.lang-switcher__dropdown.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
.lang-switcher__option {
  display: block !important;
  width: 100% !important;
  padding: 11px 18px !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.82) !important;
  font-family: var(--font-teko) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 1.2px !important;
  cursor: pointer !important;
  text-align: left !important;
  white-space: nowrap !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  box-sizing: border-box !important;
}
.lang-switcher__option-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.lang-switcher__option:hover {
  background: rgba(255,170,23,0.14) !important;
  color: var(--color-gold) !important;
}
.lang-switcher__option.active {
  color: var(--color-gold) !important;
  background: rgba(255,170,23,0.08) !important;
}
.lang-switcher__option .lang-switcher__flag {
  font-size: 20px;
}
.lang-switcher__option + .lang-switcher__option {
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ============================================
   SECCIÓN 1 — HERO / INICIO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 88% center;
  filter: brightness(1.02) saturate(0.88) contrast(0.94);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(18,20,26,0.92) 0%,
    rgba(18,20,26,0.72) 50%,
    rgba(18,20,26,0.40) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 32px) 28px 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 52px;
  align-items: start;
}

/* ---- HERO CENTERED (new clean layout) ---- */
.hero__content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: calc(var(--nav-height) + 60px) 28px 70px;
}
.hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 720px;
}
.hero__headline {
  font-family: var(--font-oswald);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 6px;
  line-height: 1;
  margin: 0;
}
.hero__tagline-text {
  font-family: var(--font-teko);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
}
.hero__subtitle {
  font-family: var(--font-palanquin);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}
/* Stats bar */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 52px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px 36px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 900px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}
.hero__stat-num {
  font-family: var(--font-oswald);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.hero__stat-num small { font-size: 0.55em; opacity: 0.85; }
.hero__stat-label {
  font-family: var(--font-teko);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero__stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ---- LEFT column (legacy) ---- */
.hero__left { display: flex; flex-direction: column; gap: 20px; }
.hero__main-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
  transition: transform var(--tr);
  object-fit: cover;
}
.hero__main-logo:hover { transform: scale(1.03); }
.hero__eyebrow {
  font-family: var(--font-teko);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
}
.hero__intro {
  font-family: var(--font-palanquin);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
}
.hero__cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ---- RIGHT column (legacy) ---- */
.hero__right { display: flex; flex-direction: column; gap: 24px; }

.hero__desc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  backdrop-filter: blur(8px);
}
.hero__desc-text {
  font-family: var(--font-palanquin);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.80);
  margin-bottom: 14px;
}
.hero__desc-text:last-child { margin-bottom: 0; }
.hero__desc-text strong { color: var(--color-white); font-weight: 500; }

.hero__corp-card {
  background: rgba(255,170,23,0.06);
  border: 1px solid rgba(255,170,23,0.20);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.hero__corp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}
.hero__corp-card__header { margin-bottom: 16px; }
.hero__corp-tag {
  font-family: var(--font-teko);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.85;
  display: block;
  margin-bottom: 6px;
}
.hero__corp-title {
  font-family: var(--font-oswald);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
}
.hero__corp-text {
  font-family: var(--font-palanquin);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.hero__corp-text:last-of-type { margin-bottom: 18px; }
.hero__corp-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cpill {
  font-family: var(--font-teko);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(255,170,23,0.10);
  border: 1px solid rgba(255,170,23,0.22);
  padding: 5px 14px;
  border-radius: 20px;
  transition: background var(--tr);
}
.cpill:hover { background: rgba(255,170,23,0.20); }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 7px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scrollDown 1.9s infinite ease-in-out;
}
@keyframes scrollDown {
  0%   { opacity:1; transform: translateX(-50%) translateY(0); }
  100% { opacity:0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================
   SECCIÓN 2 — PROYECTOS DE INVERSIÓN
   ============================================ */
.inv-section {
  background: var(--color-dark);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.inv-section__bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-oswald);
  font-size: clamp(70px,15vw,200px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 8px;
}

.inv-header { text-align: center; margin-bottom: 60px; }
.inv-header__lead {
  font-family: var(--font-palanquin);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 780px;
  margin: 16px auto 0;
  line-height: 1.75;
}

/* Cards */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.inv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.inv-card--highlight {
  border-color: rgba(255,170,23,0.25);
  background: rgba(255,170,23,0.05);
}
.inv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform: scaleX(0);
  transition: transform var(--tr);
  transform-origin: left;
}
.inv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: rgba(255,255,255,0.08); }
.inv-card:hover::after { transform: scaleX(1); }

.inv-card__icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(255,170,23,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--color-gold);
  margin-bottom: 18px;
  transition: background var(--tr);
}
.inv-card:hover .inv-card__icon { background: rgba(255,170,23,0.22); }

.inv-card__title {
  font-family: var(--font-oswald);
  font-size: 21px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
}
.inv-card__text {
  font-family: var(--font-palanquin);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 14px;
}
.inv-card__text strong { color: rgba(255,255,255,0.9); font-weight: 500; }

.inv-card__list { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.inv-card__list li {
  font-family: var(--font-palanquin);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 10px;
}
.inv-card__list li i { color: var(--color-gold); font-size: 13px; flex-shrink: 0; }

/* Timeline */
.inv-timeline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.inv-timeline__title {
  font-family: var(--font-oswald);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 36px;
  text-align: center;
  letter-spacing: 0.5px;
}
.inv-timeline__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.inv-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  max-width: 220px;
}
.inv-step__num {
  font-family: var(--font-oswald);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 10px;
}
.inv-step__label {
  font-family: var(--font-oswald);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 8px;
}
.inv-step__desc {
  font-family: var(--font-palanquin);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
}
.inv-step__connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), rgba(255,170,23,0.2));
  margin-top: 20px;
  position: relative;
}
.inv-step__connector::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ============================================
   SECCIÓN 3 — LOGÍSTICA INTEGRAL
   ============================================ */
.log-section {
  background: var(--color-white);
  padding: 110px 0;
}

.log-header { text-align: center; margin-bottom: 60px; }
.log-header__lead {
  font-family: var(--font-palanquin);
  font-size: 18px;
  font-weight: 300;
  color: rgba(34,36,41,0.70);
  max-width: 800px;
  margin: 14px auto 0;
  line-height: 1.75;
}

/* Puerto Libre bloque */
.log-puerto {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}
.log-puerto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}
.log-puerto__icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.log-puerto__icon {
  width: 70px; height: 70px;
  border-radius: 16px;
  background: rgba(255,170,23,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--color-gold);
}
.log-puerto__badge {
  font-family: var(--font-teko);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(255,170,23,0.12);
  border: 1px solid rgba(255,170,23,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
  white-space: nowrap;
}
.log-puerto__text-col {}
.log-puerto__title {
  font-family: var(--font-oswald);
  font-size: 26px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 14px;
}
.log-puerto__desc {
  font-family: var(--font-palanquin);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.73);
  line-height: 1.78;
  margin-bottom: 12px;
}
.log-puerto__desc strong { color: var(--color-white); font-weight: 500; }

/* Grid: Depósito + Zonas Francas */
.log-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  margin-bottom: 48px;
}

.log-deposito {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.log-deposito__title {
  font-family: var(--font-oswald);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.log-deposito__title i { color: var(--color-gold-dark); }
.log-deposito__intro {
  font-family: var(--font-palanquin);
  font-size: 16px;
  font-weight: 300;
  color: rgba(34,36,41,0.65);
  margin-bottom: 20px;
}
.log-list { display: flex; flex-direction: column; gap: 10px; }
.log-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-palanquin);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-dark2);
  padding: 8px 12px;
  background: var(--color-white);
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
  transition: transform var(--tr);
}
.log-list li:hover { transform: translateX(4px); }
.log-list li i { color: var(--color-gold-dark); font-size: 13px; flex-shrink: 0; }

.log-zonas {
  background: var(--color-dark2);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.log-zonas__title {
  font-family: var(--font-oswald);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.log-zonas__title i { color: var(--color-gold); }
.log-zonas__text {
  font-family: var(--font-palanquin);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  margin-bottom: 20px;
}
.log-zonas__text strong { color: var(--color-white); font-weight: 500; }
.log-zonas__benefits { display: flex; flex-direction: column; gap: 12px; }
.log-benefit {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-palanquin);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 12px 14px;
  border-left: 3px solid rgba(255,170,23,0.40);
}
.log-benefit i { color: var(--color-gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* Conclusión */
.log-conclusion {
  display: flex;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,170,23,0.08) 0%, rgba(255,170,23,0.03) 100%);
  border: 1px solid rgba(255,170,23,0.20);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.log-conclusion__icon {
  font-size: 36px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.log-conclusion__text {
  font-family: var(--font-palanquin);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--color-dark2);
}
.log-conclusion__text strong { color: var(--color-dark); font-weight: 600; }

/* ============================================
   SECCIÓN 4 — CORREDOR FERROVIARIO
   ============================================ */
.rail-section {
  background: var(--color-dark2);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.rail-section__bg-word {
  position: absolute;
  bottom: -20px; right: -40px;
  font-family: var(--font-oswald);
  font-size: clamp(60px,13vw,180px);
  font-weight: 700;
  color: rgba(255,255,255,0.020);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 6px;
}

.rail-header { text-align: center; margin-bottom: 56px; }
.rail-header__lead {
  font-family: var(--font-palanquin);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 800px;
  margin: 14px auto 0;
  line-height: 1.78;
}
.rail-header__lead strong { color: var(--color-white); font-weight: 500; }

/* Route visual */
.rail-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  padding: 36px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}
.rail-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 140px;
}
.rail-node--br .rail-node__dot  { background: #44b883; }
.rail-node--dest .rail-node__dot { background: var(--color-gold); }
.rail-node__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 3px solid rgba(255,255,255,0.25);
  position: relative;
}
.rail-node__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.3;
}
.rail-node__label {
  font-family: var(--font-palanquin);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  text-align: center;
  line-height: 1.4;
}
.rail-node__label small {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.40);
}
.rail-route__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,170,23,0.40), rgba(255,255,255,0.15));
  position: relative;
  min-width: 60px;
  margin-bottom: 30px;
  display: flex; align-items: center; justify-content: center;
}
.rail-route__train {
  font-size: 14px;
  color: var(--color-gold);
  background: var(--color-dark2);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Grid: desc + capacidades */
.rail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
}

.rail-desc {}
.rail-desc__title {
  font-family: var(--font-oswald);
  font-size: 26px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 18px;
}
.rail-desc__text {
  font-family: var(--font-palanquin);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.78;
  margin-bottom: 14px;
}
.rail-desc__text strong { color: var(--color-white); font-weight: 500; }

.rail-capacities {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.rail-capacities__title {
  font-family: var(--font-oswald);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.rail-capacities__title i { color: var(--color-gold); }

.rail-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.rail-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-palanquin);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.rail-list li i { color: var(--color-gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }

.rail-advantages { display: flex; flex-direction: column; gap: 10px; }
.rail-adv {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,170,23,0.07);
  border-left: 3px solid rgba(255,170,23,0.45);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: var(--font-palanquin);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
}
.rail-adv i { color: var(--color-gold); font-size: 16px; flex-shrink: 0; }

/* ============================================
   CORREDOR — PILARES OPERACIONAIS
   ============================================ */
.rail-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 0 56px;
}
.rail-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 22px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.rail-pillar:hover {
  background: rgba(255,170,23,0.06);
  border-color: rgba(255,170,23,0.25);
  transform: translateY(-4px);
}
.rail-pillar__icon {
  font-size: 26px;
  color: var(--color-gold);
  margin-bottom: 14px;
  display: block;
}
.rail-pillar__title {
  font-family: var(--font-oswald);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.rail-pillar__text {
  font-family: var(--font-palanquin);
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* ============================================
   AGRONEGOCIOS — bloco de foco
   ============================================ */
.agro-focus {
  margin: 60px 0 0;
  padding: 48px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
}
.agro-focus__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.agro-focus__icon {
  font-size: 32px;
  color: #44b883;
}
.agro-focus__title {
  font-family: var(--font-oswald);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.5px;
}
.agro-focus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.agro-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 28px 22px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.agro-item:hover {
  background: rgba(68,184,131,0.08);
  border-color: rgba(68,184,131,0.25);
  transform: translateY(-4px);
}
.agro-item__icon {
  font-size: 28px;
  color: #44b883;
  margin-bottom: 14px;
  display: block;
}
.agro-item__title {
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 10px;
}
.agro-item__text {
  font-family: var(--font-palanquin);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================
   CONTACTO
   ============================================ */
.contact-section {
  background: var(--color-dark);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.contact-section__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 90% 50%, rgba(255,170,23,0.06), transparent);
  pointer-events: none;
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info-list { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-item i { font-size: 20px; color: var(--color-gold); margin-top: 2px; flex-shrink: 0; width: 20px; text-align: center; }
.contact-info-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-info-item strong { font-family: var(--font-teko); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.contact-info-item span,
.contact-info-item a { font-family: var(--font-palanquin); font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.82); transition: color var(--tr); }
.contact-info-item a:hover { color: var(--color-gold); }

.social-links { display: flex; gap: 10px; margin-top: 28px; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: all var(--tr);
}
.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(255,170,23,0.10);
  transform: translateY(-3px);
}

/* ---- FORM ---- */
.form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  backdrop-filter: blur(12px);
}
.form__group { margin-bottom: 18px; }
.form__label {
  display: block;
  font-family: var(--font-teko);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 7px;
}
.form__input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 15px;
  font-family: var(--font-palanquin);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-white);
  transition: all var(--tr);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form__input::placeholder { color: rgba(255,255,255,0.28); }
.form__input:focus {
  border-color: var(--color-gold);
  background: rgba(255,170,23,0.05);
  box-shadow: 0 0 0 3px rgba(255,170,23,0.12);
}
.form__select option { background: var(--color-dark2); color: var(--color-white); }
.form__textarea { resize: vertical; min-height: 118px; }

.form__success {
  margin-top: 14px;
  padding: 13px 16px;
  background: rgba(72,200,100,0.10);
  border: 1px solid rgba(72,200,100,0.28);
  border-radius: 8px;
  color: #6bdb8a;
  font-family: var(--font-palanquin);
  font-size: 16px;
  display: flex; align-items: center; gap: 10px;
}
.field-error { border-color: #f56565 !important; box-shadow: 0 0 0 3px rgba(245,101,101,0.14) !important; }

@keyframes shake {
  0%,100%{ transform:translateX(0); }
  20%    { transform:translateX(-8px); }
  40%    { transform:translateX(8px); }
  60%    { transform:translateX(-5px); }
  80%    { transform:translateX(5px); }
}
.shake { animation: shake 0.44s ease; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--color-dark3); padding: 68px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo { height: 320px; width: 320px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.30)); margin-bottom: 14px; border-radius: 0; }
.footer__tagline { font-family: var(--font-palanquin); font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.6; }
.footer__heading { font-family: var(--font-teko); font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 18px; }
.footer__list li { margin-bottom: 9px; }
.footer__list a { font-family: var(--font-palanquin); font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.50); transition: color var(--tr); }
.footer__list a:hover { color: var(--color-gold); }
.footer__contact p { font-family: var(--font-palanquin); font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); margin-bottom: 9px; display: flex; align-items: center; gap: 9px; }
.footer__contact p i { color: var(--color-gold); font-size: 13px; }
.footer__contact a { color: rgba(255,255,255,0.45); transition: color var(--tr); }
.footer__contact a:hover { color: var(--color-gold); }
.footer__social { display: flex; gap: 9px; margin-top: 16px; }
.footer__social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.13); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.45); transition: all var(--tr); }
.footer__social a:hover { border-color: var(--color-gold); color: var(--color-gold); background: rgba(255,170,23,0.08); }

.footer__bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__bottom p { font-family: var(--font-palanquin); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.25); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 50%;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(255,170,23,0.40);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--tr);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-gold-dark); transform: translateY(-3px); }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1100px) {
  .hero__content { grid-template-columns: 1fr; gap: 36px; padding-top: calc(var(--nav-height) + 24px); }
  .hero__main-logo { max-width: 220px; }
  .hero__cta-group { flex-wrap: wrap; }

  .inv-grid { grid-template-columns: 1fr 1fr; }
  .inv-timeline__steps { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .inv-step__connector { display: none; }

  .log-grid { grid-template-columns: 1fr; }
  .log-puerto { flex-direction: column; gap: 22px; }
  .log-puerto__icon-col { flex-direction: row; }

  .rail-grid { grid-template-columns: 1fr; }
  .rail-route { gap: 0; }
  .rail-pillars { grid-template-columns: 1fr 1fr; }
  .agro-focus__grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-section__grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* Navbar mobile: esconde o nav do header (o painel mobile #mobileMenuPanel é controlado via JS, fora do header) */
  .navbar__nav { display: none !important; }
  .navbar__toggle { display: flex; }

  /* Language switcher mobile */
  .lang-switcher { margin-left: 6px; }
  .lang-switcher__btn { padding: 5px 9px; font-size: 13px; }
  .lang-switcher__label { display: none; }
  .lang-switcher__dropdown { right: 0; min-width: 140px; }

  /* Hero */
  .hero__content { padding: calc(var(--nav-height) + 16px) 20px 48px; }
  .hero__main-logo { max-width: 160px; }
  .hero__cta-group { flex-direction: column; }
  .btn { justify-content: center; }

  /* Inversión */
  .inv-grid { grid-template-columns: 1fr; }
  .inv-timeline { padding: 28px 20px; }

  /* Logística */
  .log-puerto { padding: 28px 22px; }
  .log-deposito, .log-zonas { padding: 26px 20px; }

  /* Ferroviario */
  .rail-route { display: none; }
  .rail-pillars { grid-template-columns: 1fr; gap: 14px; }
  .agro-focus { padding: 30px 20px; }
  .agro-focus__grid { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .form { padding: 26px 18px; }
  .back-to-top { bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .hero__corp-card { padding: 22px 18px; }
  .hero__desc-card { padding: 22px 18px; }
}

/* ============================================
   SECTION IMAGE BANNERS
   ============================================ */
.section-img-banner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  margin: 48px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.section-img-banner--map {
  margin: 0 0 48px;
}
.section-img-banner__img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.section-img-banner__img--map {
  height: 460px;
  object-position: center top;
}
.section-img-banner__overlay {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12,14,20,0.85) 0%, rgba(12,14,20,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px 32px 22px;
  box-sizing: border-box;
  z-index: 2;
}
.section-img-banner__caption {
  font-family: var(--font-teko);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
}

/* ============================================
   GLOBAL STRATEGY BANNER (GSB) — CSS Grid overlay
   ============================================ */
.gsb {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  overflow: hidden;
}
.gsb__img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.gsb__overlay {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(12,14,20,0.85) 0%,
    rgba(12,14,20,0.55) 55%,
    rgba(12,14,20,0.20) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 80px;
  box-sizing: border-box;
  z-index: 2;
}
.gsb__text {
  max-width: 560px;
}
.gsb__title {
  font-family: var(--font-oswald);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.gsb__desc {
  font-family: var(--font-palanquin);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Responsive banners */
@media (max-width: 1100px) {
  .gsb__overlay { padding: 0 44px; }
}
@media (max-width: 768px) {
  .section-img-banner__img { height: 260px; }
  .section-img-banner__img--map { height: 280px; }
  .section-img-banner__overlay { padding: 18px 20px 16px; }
  .section-img-banner__caption { font-size: 13px; }
  .gsb__img { height: 420px; }
  .gsb__overlay { padding: 0 28px; }
  .gsb__text { max-width: 100%; }
}
@media (max-width: 480px) {
  .section-img-banner__img { height: 200px; }
  .section-img-banner__img--map { height: 220px; }
  .gsb__img { height: 340px; }
  .gsb__overlay { padding: 0 20px; }
  .gsb__desc { font-size: 15px; }
}
