* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #000000;
  overflow-x: hidden;
  font-family: "Nunito", sans-serif;
}

h1, h2, h3, .sub-title {
  font-family: "Bebas Neue", sans-serif;
}

/* Page loader: dissolving pattern (pure CSS) */
@property --dissolve {
  syntax: "<length-percentage>";
  initial-value: 0%;
  inherits: false;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.45s ease 0.75s, visibility 0.45s ease 0.75s;
}
.page-loader-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #00102a 0%, #000810 50%, #011c47 100%);
  transition: opacity 0.6s ease;
}
.page-loader-pattern {
  position: absolute;
  inset: 0;
  --dissolve: 0%;
  background-image:
    linear-gradient(rgba(14, 222, 248, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 222, 248, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(
    circle at 50% 50%,
    transparent var(--dissolve),
    black var(--dissolve)
  );
  mask-size: 200vmax 200vmax;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    transparent var(--dissolve),
    black var(--dissolve)
  );
  -webkit-mask-size: 200vmax 200vmax;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  transition: --dissolve 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: loader-pattern-in 0.6s ease-out;
}
@keyframes loader-pattern-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* When body has .loaded: pattern dissolves from center, then overlay fades */
body.loaded .page-loader-pattern {
  --dissolve: 150%;
}
body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Navbar */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.navbar {
  position: fixed;
  top: 2rem;
  right: 2rem;
  left: 2rem;
  border-radius: 10rem;
  z-index: 1000;
}
.navbar .glass_effect {
  border-radius: 10rem;
}
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* Navbar: liquid glass effect */
.glass_effect {
  position: relative;
  padding: 1rem 2rem;
  cursor: pointer;
  outline: none;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  border-radius: 12px;
}
.glass_effect::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 1) 50%,
    transparent 60%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  animation: border-spin 8s linear infinite;
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}

.logo-container {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
section h1 strong, section p strong{
  color: #02f9db;
  font-weight: 700;
  background: linear-gradient(135deg, #02f9db, #02f9db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}
@media (min-width: 1500px) {
    .container {
        max-width: 1400px;
    }
}
@media (min-width: 1700px) {
    .container {
        max-width: 1400px;
    }
}
/* Full-screen nav modal */
.nav-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.35s ease, opacity 0.35s ease;
}
.nav-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-modal.is-open .nav-modal-backdrop {
  opacity: 1;
}
.nav-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 50vh;
  width: 50vh;
  background: rgba(10, 15, 30, 0.9);
  border: 1px solid rgba(65, 105, 225, 0.3);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
.nav-modal.is-open .nav-modal-content {
  transform: scale(1);
  opacity: 1;
}
.nav-modal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-modal-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.35rem;
  transition: color 0.3s, transform 0.3s;
}
.nav-modal-links a:hover {
  color: #4169E1;
  transform: translateX(4px);
}
.nav-modal-links .lang-toggle {
  margin-top: 0.5rem;
}

#globe-container {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
/* Mobile: use small viewport height (svh) to avoid scroll jump when browser UI shows/hides */
@media (max-width: 768px) {
  #globe-container {
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    min-height: 100svh;
  }
  #globe-container canvas {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
}

#globe-container canvas {
pointer-events: auto !important;
}

.maringa-label {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  color: #39ff14;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.8), 0 0 16px rgba(57, 255, 20, 0.5);
  z-index: 2;
  font-family: inherit;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
@media(orientation: portrait) {
  .hero .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.hero-content {
  left: 0;
  z-index: 10;
  text-align: left;
  color: #333;
  max-width: 700px;
  width: 100%;
  min-width: 0;
  padding: 2rem 1.5rem;
  padding-top: 3rem;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  pointer-events: auto;
  flex-shrink: 0;
  position: relative;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.85rem;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(14, 222, 248, 0.35);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.hero-close-btn:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(14, 222, 248, 0.6);
}

.hero-close-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
}

.hero-close-icon::before,
.hero-close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.hero-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-restore-btn {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 15;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 20, 40, 0.75);
  border: 1px solid rgba(14, 222, 248, 0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  pointer-events: auto;
}

.hero-restore-btn:hover {
  background: rgba(0, 30, 60, 0.9);
  border-color: rgba(14, 222, 248, 0.7);
}

.hero--minimized .hero-content,
.hero--minimized .container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero--minimized .hero-restore-btn {
  display: flex;
}
.hero-content .sub-title {
  font-size: 1rem;
  letter-spacing: 0.12rem;
}
.hero-content h1 {
  font-size: 2.5rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e4f4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}
.section{
  text-align: left;
}

/* Section with hero-style content (same structure as hero) */
@media(orientation: portrait) {
  .section-intro-block .container,
  .section .container {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.intro-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.intro-image-wrap {
  flex-shrink: 0;
}

.intro-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.section-intro {
  flex: 1;
  min-width: 0;
  max-width: 800px;
  padding: 1rem 1rem 0 0;
}
@media(orientation: portrait) {
  .section-intro {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .intro-layout {
    flex-direction: column;
    align-items: center;
  }

}

.section-intro .sub-title {
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-intro h1 {
  font-size: 2.2rem;
  line-height: 2.4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1a1a2e, #4169E1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-align: left;
}

/* Frontier / plant location video section */
.frontier-section {
  margin-top: 10vh;
}

.frontier-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.frontier-video-wrap {
  flex: 1 1 380px;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 10, 30, 0.5);
  border: 1px solid rgba(14, 222, 248, 0.15);
}

.frontier-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
}

.frontier-content {
  flex: 1 1 400px;
  min-width: 0;
  max-width: 560px;
  padding: 0.5rem 0 0;
}

.frontier-title {
  font-size: 2rem;
  color: #c9ff00;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.frontier-content p {
  font-size: 1.05rem;
  color: #ebebeb;
  margin-bottom: 1rem;
  text-align: left;
}

.frontier-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .frontier-layout {
    flex-direction: column;
    padding: 1.5rem;
  }

  .frontier-video-wrap {
    flex: 1 1 auto;
  }

  .frontier-content {
    max-width: 100%;
  }
}

.spec-value {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: #e8e6e6 !important;
  margin-bottom: 0.75rem !important;
}

.specs-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.campus-area {
  margin-top: 2.5rem !important;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.08), rgba(14, 222, 248, 0.06));
  border-radius: 12px;
  border-left: 4px solid #4169E1;
  text-align: left !important;
}

.energy-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cta-button_white{
  color: #ffffff;
  text-decoration: none;
}
/* CTA links: no default look, liquid glass wrapper provides the style */
.cta-button_white,
.cta-button {
  text-decoration: none;
  margin-right: 1rem;
  display: inline-block;
}
.cta-button_white:last-child,
.cta-button:last-child {
  margin-right: 0;
}

/* ========== LIQUID GLASS STYLES (website colours) ========== */
.liquidGlass-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.liquidGlass-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.2);
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow:
    inset 2px 2px 1px 0 rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.35);
  border-radius: inherit;
  pointer-events: none;
}

.liquidGlass-text {
  position: relative;
  z-index: 3;
  color: inherit;
}

/* Hero CTAs */
.liquidGlass-cta {
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
}
.liquidGlass-cta-white .liquidGlass-tint {
  background: rgba(255, 255, 255, 0.28);
}
.liquidGlass-cta:hover,
.liquidGlass-cta-white:hover {
  padding: 0.7rem 1.8rem;
  border-radius: 2.2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 0 0 30px rgba(65, 105, 225, 0.15);
}
.liquidGlass-cta .liquidGlass-tint {
  background: rgba(14, 222, 248, 0.15);
}

/* Nav: lang toggle */
.lang-toggle {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.liquidGlass-nav {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.liquidGlass-nav:hover {
  padding: 0.45rem 0.9rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 0 24px rgba(65, 105, 225, 0.12);
}

/* Nav: hamburger */
.nav-hamburger {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}
.liquidGlass-hamburger {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 1.2rem;
}
.liquidGlass-hamburger .liquidGlass-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.liquidGlass-hamburger:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 0 24px rgba(65, 105, 225, 0.12);
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Modal close */
.nav-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.nav-modal-close:hover {
  transform: rotate(90deg);
}
.liquidGlass-close {
  width: 44px;
  height: 44px;
  border-radius: 1rem;
}
.liquidGlass-close .liquidGlass-text {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.nav-modal-close .close-icon {
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -1px;
}
.nav-modal-close .close-icon:nth-child(1) {
  transform: rotate(45deg);
}
.nav-modal-close .close-icon:nth-child(2) {
  transform: rotate(-45deg);
}

/* Sections */
.section {
  position: relative;
  padding: 5rem 2rem;
  margin: 0 auto;
  z-index: 10;
  margin-top: 10vh;
  pointer-events: none;
}

.section h2,
.section p,
.section h3,
.section h4,
.section ul,
.section .features,
.section .feature-card,
.section a,
.section .frontier-video-wrap,
.section .frontier-video-wrap video,
.section .frontier-content,
.section .projeto-key-figures,
.section .projeto-table-wrap,
.section .projeto-table,
.section .zpe-highlights-grid,
.section .zpe-tag-list,
.section .zpe-tag,
.section .projeto-target-grid,
.section .projeto-phases,
.section .projeto-image-placeholder {
  pointer-events: auto;
}

.section:first-of-type {
  margin-top: 100vh;
}

/* Allow canvas interaction in gaps between sections */
body {
  position: relative;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #c9ff00;
}

.section p {
  font-size: 1.1rem;
  color: #ebebeb;
  max-width: 800px;
  margin: 0 0 2rem 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 100%;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  pointer-events: auto;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p {
  text-align: left;
  margin: 0;
}

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
  padding-left: 0;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4169E1, rgba(14, 222, 248, 0.6));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: 8px;
  top: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #51f7ea;
  border: 4px solid rgb(196 238 255);
  box-shadow: 0 0 0 2px #ffffff;
  z-index: 1;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.75rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(65, 105, 225, 0.2);
}

.timeline-content:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(65, 105, 225, 0.15);
}

.timeline-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: #c4fb03;
}

.timeline-meta {
  font-size: 0.95rem !important;
  font-weight: 600;
  color: rgba(14, 222, 248, 0.95) !important;
  margin-bottom: 0.75rem !important;
}

.timeline-content p:last-child {
  margin-bottom: 0;
}

.timeline-footer {
  margin-top: 2.5rem !important;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.12), rgba(14, 222, 248, 0.06));
  border-radius: 12px;
  border-left: 4px solid #4169E1;
  text-align: left !important;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 14px;
    width: 3px;
  }

  .timeline-item {
    padding-left: 48px;
    padding-bottom: 2rem;
  }

  .timeline-node {
    left: 4px;
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .timeline-content {
    padding: 1.25rem 1.5rem;
  }
}

/* Investment Section */
.investment-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.investment-stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  border-radius: 15px;
  border: 1px solid rgba(65, 105, 225, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.investment-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(65, 105, 225, 0.15);
}

.investment-value {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: rgba(14, 222, 248, 0.95) !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.2 !important;
}

.investment-stat-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.investment-stat-card p:last-child {
  font-size: 0.95rem;
  margin: 0;
}
.hero-cta-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
/* Hero decorative chart (below CTAs, no text) */
.hero-chart-wrap {
  max-width: 140px;
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(14, 222, 248, 0.12);
}

.hero-chart-wrap.data-transfer-chart-wrap {
  position: relative;
}

.hero-chart-wrap .data-transfer-chart {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.investment-graph-wrap {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(65, 105, 225, 0.2);
}

.graph-title {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 1rem !important;
  text-align: center;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  min-height: 220px;
}

.bar-chart-y-axis {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 2rem;
  height: 200px;
}

.bar-chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  justify-content: center;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bar {
  width: 56px;
  height: calc(var(--h, 50) * 2px);
  max-height: 200px;
  border-radius: 8px 8px 0 0;
  transition: transform 0.3s;
}

.bar-infra {
  background: linear-gradient(180deg, #4169E1, rgba(65, 105, 225, 0.7));
}

.bar-ti {
  background: linear-gradient(180deg, rgba(14, 222, 248, 0.9), rgba(14, 222, 248, 0.5));
}

.bar-group:hover .bar {
  transform: scaleY(1.02);
}

.bar-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.3;
}

.return-band-wrap {
  margin-top: 0.5rem;
}

.return-band {
  margin-bottom: 0.5rem;
}

.return-band-track {
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.return-band-fill {
  position: absolute;
  left: calc(var(--start, 0) * 1%);
  width: calc((var(--end, 32) - var(--start, 25)) * 1%);
  height: 100%;
  background: linear-gradient(90deg, #4169E1, rgba(14, 222, 248, 0.9));
  border-radius: 6px;
  top: 4px;
  bottom: 4px;
  min-width: 4px;
}

.return-band-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.35rem;
}

.return-card {
  max-width: 560px;
  margin: 0 auto 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(65, 105, 225, 0.25);
}

.return-card .spec-value {
  margin-bottom: 0.25rem !important;
}

.return-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #4169E1;
}

.return-card p:last-child {
  margin: 0;
  font-size: 1rem;
}

.financing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.investment-ticket {
  margin-top: 2rem !important;
}

@media (max-width: 768px) {
  .investment-stats {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .bar-chart-y-axis {
    display: none;
  }

  .bar-chart-bars {
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }

  .bar {
    height: calc(var(--h, 50) * 1.5px);
    max-height: 160px;
  }
}

/* Governance Section */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.governance-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(65, 105, 225, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.governance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(65, 105, 225, 0.12);
}

.governance-card-image {
  aspect-ratio: 16 / 10;
  min-height: 180px;
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(14, 222, 248, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.governance-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center no-repeat;
  pointer-events: none;
}

.governance-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.governance-card-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.governance-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: #ffffff;
}

.governance-card-subtitle {
  font-size: 0.95rem !important;
  font-weight: 600;
  color: rgba(14, 222, 248, 0.95) !important;
  margin-bottom: 0.5rem !important;
}

.governance-card-body p:last-child {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .governance-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .governance-card-image {
    min-height: 160px;
  }
}

/* CTA Section (read more) */
.cta-section {
  margin-top: 10vh;
}

.cta-more-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
}

.cta-more-heading {
  font-size: 2rem;
  color: #c9ff00;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-more-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-more-buttons .cta-button_white,
.cta-more-buttons .cta-button {
  margin-right: 0;
}

/* Footer */
.footer {
  position: relative;
  background: #1a1a1a;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  z-index: 10;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00FFFF;
}

.footer p {
  color: #999;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .navbar {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }
  .navbar .glass_effect {
    padding: 0.75rem 1rem;
  }
  .logo-image {
    max-width: 100px;
    height: auto;
  }
  .hero .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-content {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section {
    padding: 3rem 1rem;
    margin-top: 8vh;
  }
  .section h2 {
    font-size: 1.75rem;
  }
  .section p {
    font-size: 1rem;
  }
  .nav-modal-content {
    margin: 1rem;
    padding: 2.5rem 1.5rem;
    max-width: calc(100vw - 2rem);
  }
  .nav-modal-links a {
    font-size: 1.2rem;
  }
}

/* ========== Projeto page (no globe, black background) ========== */
.page-projeto {
  background: #000;
}

.page-projeto .hero {
  background: #000;
  min-height: 50vh;
  align-items: flex-start;
  padding-top: 8rem;
}

.page-projeto .hero-content-projeto {
  padding-top: 2rem;
}

.page-projeto .section:first-of-type {
  margin-top: 6vh;
}

.projeto-subtitle {
  font-size: 1.25rem;
  color: #c9ff00;
  margin: 1.5rem 0 0.5rem;
}

.projeto-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

.projeto-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
}

.projeto-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  color: #ebebeb;
}

.projeto-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: rgba(14, 222, 248, 0.8);
}

.projeto-modulacao {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(65, 105, 225, 0.25);
}

.projeto-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.projeto-text {
  flex: 1 1 400px;
  min-width: 0;
}

.projeto-text h2 {
  margin-bottom: 1rem;
}

.projeto-text p {
  margin-bottom: 1rem;
}

.projeto-image-wrap {
  flex: 1 1 320px;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(14, 222, 248, 0.15);
}

.projeto-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.projeto-dados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.projeto-dados-block {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(65, 105, 225, 0.2);
}

.projeto-dados-block h3 {
  font-size: 1.1rem;
  color: #c9ff00;
  margin-bottom: 0.75rem;
}

.projeto-image-placeholder {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 20, 40, 0.5);
  border: 1px dashed rgba(14, 222, 248, 0.3);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Key figures grid (Brazil Energy Context) */
.projeto-key-figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.key-figure-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(65, 105, 225, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.key-figure-item strong {
  font-size: 0.9rem;
  color: #c9ff00;
}
.key-figure-item span {
  font-size: 1.1rem;
  color: #ebebeb;
}

/* Image row (2 placeholders) */
.projeto-image-row {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.projeto-image-row-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .projeto-image-row-2 {
    grid-template-columns: 1fr;
  }
}

/* Projeto data table (regions / energy costs) */
.projeto-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid rgba(65, 105, 225, 0.25);
}
.projeto-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.projeto-table th,
.projeto-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ebebeb;
}
.projeto-table th {
  background: rgba(65, 105, 225, 0.2);
  color: #c9ff00;
  font-weight: 600;
}
.projeto-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.projeto-table td strong {
  color: #ffffff;
}
.projeto-table td br + strong,
.projeto-table td strong + br ~ * {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ZPE highlights grid */
.zpe-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.zpe-highlight-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(65, 105, 225, 0.2);
}
.zpe-highlight-card h3 {
  font-size: 1.1rem;
  color: #c9ff00;
  margin-bottom: 0.5rem;
}
.zpe-highlight-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* ZPE tag list (highlight points) */
.zpe-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}
.zpe-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(14, 222, 248, 0.12);
  border: 1px solid rgba(14, 222, 248, 0.35);
  border-radius: 999px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Projeto links list */
.projeto-links a {
  color: rgba(14, 222, 248, 0.95);
  text-decoration: none;
}
.projeto-links a:hover {
  text-decoration: underline;
  color: #02f9db;
}

/* Target customers grid */
.projeto-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1rem 0 2rem;
}
.projeto-target-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(65, 105, 225, 0.2);
}
.projeto-target-card h3 {
  font-size: 1.05rem;
  color: #c9ff00;
  margin-bottom: 0.75rem;
}
.projeto-target-card .projeto-list {
  margin-bottom: 0;
}

/* Phased growth */
.projeto-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.projeto-phase-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid rgba(14, 222, 248, 0.6);
}
.projeto-phase-card h4 {
  font-size: 1.1rem;
  color: #c9ff00;
  margin-bottom: 0.75rem;
  font-family: "Nunito", sans-serif;
}
.projeto-phase-card .projeto-list {
  margin-bottom: 0;
}

/* Quote / Portuguese sentence */
.projeto-quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  border-left: 4px solid rgba(14, 222, 248, 0.5);
  padding-left: 1.25rem;
  margin: 1.5rem 0 !important;
}

/* ========== Contato page ========== */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 16px;
}

.contact-heading {
  font-size: 1.5rem;
  color: #c9ff00;
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(65, 105, 225, 0.2);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.35rem;
}

.contact-link {
  font-size: 1.1rem;
  color: rgba(14, 222, 248, 0.95);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #02f9db;
  text-decoration: underline;
}
.hero-projeto{
  display: flex;
  align-items: center;
  margin-top: 20vh;
}