* {
  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;
}

/* 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;
}
/* 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);
}
.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: #0edef8;
  font-weight: 700;
  background: linear-gradient(135deg, #0edef8, #0edef8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    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;
    }
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #4169E1;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
}

#globe-container {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1;
}

#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;
}

.hero-content {
  left: 0;
  z-index: 10;
  text-align: left;
  color: #333;
  max-width: 700px;
  width: calc(100% - 4rem);
  padding: 3rem 1rem;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  pointer-events: auto;
}
.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) */
.section-intro-block .container {
  justify-content: flex-start;
}

.intro-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 0;
}

.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 (max-width: 768px) {
  .intro-layout {
    flex-direction: column;
    align-items: center;
  }
  .intro-image {
    max-width: 240px;
  }
}

.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;
}

.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: rgb(255, 255, 255);
  text-decoration: none;
  margin-right: 1rem;
}
.cta-button {
  display: inline-block;
  padding: .5rem 1rem;
  background: linear-gradient(135deg, #4169E1, #00FFFF);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  box-shadow: 0 10px 20px rgba(65, 105, 225, 0.3);
}

/* Sections */
.section {
  position: relative;
  padding: 5rem 2rem;
  margin: 0 auto;
  z-index: 10;
  margin-top: 10vh;
  pointer-events: none;
}

.section h2,
.section p,
.section .features,
.section .feature-card,
.section a {
  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 auto 2rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.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: #4169E1;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 2px #4169E1;
  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: #4169E1;
}

.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: #4169E1;
}

.investment-stat-card p:last-child {
  font-size: 0.95rem;
  margin: 0;
}

.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: #4169E1;
}

.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;
  }
}

/* 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;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  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) {
  .hero-content {
    max-width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
    top: 50%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 1rem;
  }
}