:root {
  --black-deep: #0B0B0B;
  --black-soft: #121212;
  --gold-main: #C9A227;
  --gold-rich: #D4AF37;
  --olive-premium: #6B8E23;
  --olive-deep: #4E6E2D;
  --gold-warm: #F2C94C;
  --gold-sun: #E0B84C;
  --white-soft: #F5F5F5;
  --white-muted: rgba(245, 245, 245, 0.78);
  --line-soft: rgba(255, 255, 255, 0.10);
  --shadow-luxury: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black-deep);
  color: var(--white-soft);
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(11, 11, 11, 0.58);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-rich);
  letter-spacing: 0.8px;
}
.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 0.96rem;
  color: var(--white-soft);
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold-main);
}

.nav-button {
  padding: 12px 22px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--gold-rich);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: rgba(201, 162, 39, 0.08);
  border-color: var(--gold-rich);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(11,11,11,0.88), rgba(11,11,11,0.58)),
    linear-gradient(to top, rgba(11,11,11,0.92), rgba(11,11,11,0.25)),
    url("../images/backgrounds/hero-energy.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(107, 142, 35, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.10), transparent 28%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 120px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--olive-premium);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--white-soft);
}

.hero-description {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--white-muted);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-rich));
  color: var(--black-deep);
  box-shadow: var(--shadow-luxury);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-secondary {
  border: 1px solid rgba(245, 245, 245, 0.18);
  color: var(--white-soft);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: rgba(201, 162, 39, 0.50);
  color: var(--gold-rich);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-highlights span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }

  .nav-wrapper {
    min-height: 78px;
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero h1 {
    line-height: 1;
  }
}

@media (max-width: 640px) {
  .brand a {
    font-size: 1.7rem;
  }

  .nav-button {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .btn {
    width: 100%;
  }
}


.positioning {
  padding: 140px 0;
  text-align: center;
  position: relative;
  background:
    linear-gradient(to right, rgba(11,11,11,0.85), rgba(11,11,11,0.6)),
    linear-gradient(to top, rgba(11,11,11,0.9), rgba(11,11,11,0.3)),
    url("../images/backgrounds/positioning.jpg") center/cover no-repeat;
}



.positioning-content {
  max-width: 900px;
}

.positioning h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--white-soft);
}

.positioning-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white-muted);
  margin-bottom: 60px;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.position-card {
  padding: 36px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.position-card:hover {
  transform: translateY(-6px);
  border-color: var(--olive-premium);
}

.position-card h3 {
  font-size: 1.1rem;
  color: var(--gold-rich);
  margin-bottom: 12px;
}

.position-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-muted);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .positioning-grid {
    grid-template-columns: 1fr;
  }

  .positioning {
    padding: 100px 0;
  }
}

.about {
  padding: 140px 0;
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(107, 142, 35, 0.08), transparent 50%),
    linear-gradient(135deg, #0B0B0B, #121212);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.03),
    transparent
  );
  opacity: 0.6;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.section-kicker {
  color: var(--olive-premium);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white-muted);
  margin-bottom: 40px;
}

.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 1.8rem;
  color: var(--gold-rich);
  margin-bottom: 6px;
}

.stat p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(107, 142, 35, 0.25); /* verde sutil */
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 100px 0;
  }
}
.section-divider {
  width: 80px;
  height: 2px;
  margin: 0 auto;
  background: var(--olive-premium);
  box-shadow: 0 0 10px rgba(107, 142, 35, 0.5);
  opacity: 0.8;
}
.solutions {
  padding: 140px 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(107, 142, 35, 0.08), transparent 50%),
    linear-gradient(135deg, #0B0B0B, #121212);
}

.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.03),
    transparent
  );
  opacity: 0.6;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--white-muted);
  line-height: 1.8;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.solution-card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107, 142, 35, 0.2);
  transition: all 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--olive-premium);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.solution-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.solution-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-image > img {
  transform: scale(1.05);
}

.solution-content {
  padding: 28px;
  text-align: left;
}

.solution-content h3 {
  color: var(--gold-rich);
  margin-bottom: 10px;
}

.solution-content p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}
.value {
  padding: 140px 0;
  text-align: center;
  position: relative;
  background:
    linear-gradient(to right, rgba(11,11,11,0.85), rgba(11,11,11,0.6)),
    linear-gradient(to top, rgba(11,11,11,0.9), rgba(11,11,11,0.3)),
    url("../images/backgrounds/value-bg.png") center/cover no-repeat;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  padding: 40px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107, 142, 35, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--olive-premium);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.value-card h3 {
  font-size: 2.4rem;
  color: var(--gold-rich);
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--white-muted);
}

.value-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.15),
    rgba(107, 142, 35, 0.15)
  );
  border: 1px solid var(--olive-premium);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}
.projects {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(107, 142, 35, 0.08), transparent 50%),
    linear-gradient(135deg, #0B0B0B, #121212);
}


.project-card {
  min-width: 320px;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(107, 142, 35, 0.2);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  border-color: var(--olive-premium);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,11,11,0.95),
    rgba(11,11,11,0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  
}

.project-overlay h3 {
  color: var(--gold-rich);
  margin-bottom: 8px;
}

.project-overlay p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 3; /* 🔥 esto es clave */
}

.compliance-slider {
  position: relative;
}

.compliance-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.compliance-slider img.active {
  opacity: 1;
}
.projects-hero {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
}

.projects-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;

  background: linear-gradient(
    to right,
    rgba(11,11,11,0.85),
    rgba(11,11,11,0.3)
  );
}

.projects-overlay h3 {
  font-size: 2rem;
  color: var(--gold-rich);
  margin-bottom: 10px;
}

.projects-overlay p {
  max-width: 500px;
  color: var(--white-muted);
}

.projects-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.projects-overlay {
  text-align: center;
  align-items: center; /* 🔥 clave */
}
.project-card.dual {
  height: 300px;
}

.project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.project-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(107, 142, 35, 0.08), transparent 50%),
    linear-gradient(135deg, #0B0B0B, #121212);
}

/* LEADERSHIP */

.leadership {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.leader-card {
  width: 280px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,142,35,0.2);
  transition: all 0.3s ease;
}
.leader-card:hover {
  transform: translateY(-8px);
  border-color: var(--olive-premium);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.leader-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  filter: brightness(0.9);
  transition: all 0.4s ease;
}

.leader-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.leader-card h3 {
  color: var(--gold-rich);
  margin-bottom: 6px;
}

.leader-card p {
  color: var(--white-muted);
  font-size: 0.9rem;
}

/* CORE TEAM */

.core-team {
  margin-top: 80px;
}

.core-title {
  color: var(--olive-premium);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.core-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.core-grid span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,142,35,0.2);
}
/* PHILOSOPHY */

.team-philosophy {
  margin-top: 80px;
}

.team-philosophy h3 {
  color: var(--gold-rich);
  margin-bottom: 20px;
}

.philosophy-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.philosophy-grid span {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(107,142,35,0.3);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}
.philosophy-grid span:hover {
  border-color: var(--gold-rich);
  color: var(--gold-rich);
}
.contact {
  padding: 140px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(107, 142, 35, 0.08), transparent 50%),
    linear-gradient(135deg, #0B0B0B, #121212);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* INFO */

.contact-description {
  margin: 20px 0;
  color: var(--white-muted);
  line-height: 1.8;
}

.contact-details p {
  margin-bottom: 8px;
  color: var(--white-muted);
}

/* FORM */

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--white-soft);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--olive-premium);
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-rich));
  color: var(--black-deep);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.team::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(107, 142, 35, 0.15),
    transparent 60%
  );
}