:root {
  --color-primary: #1c1c1e;
  --color-secondary: #3a3a3c;
  --color-accent-energy: #f5c518;
  --color-accent-cta: #e8720c;
  --color-white: #ffffff;
  --color-bg-light: #f2f1ee;
  --color-border: #d6d3cd;
  --color-text-main: #1c1c1e;
  --color-success-green: #2d7a3a;
  --navy: #1c1c1e;
  --navy-mid: #2c2c2e;
  --navy-light: #3a3a3c;
  --orange: #e8720c;
  --orange-dark: #c45e08;
  --orange-glow: rgba(232, 114, 12, 0.15);
  --white: #ffffff;
  --grey: #7a7a7e;
  --grey-light: #f2f1ee;
  --text: #4a4a4e;
  --yellow: #f5c518;
  --yellow-dark: #d4a912;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--color-bg-light);
  color: var(--color-text-main);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent-energy);
  border-radius: 3px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(28, 28, 30, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  transition: all 0.3s;
}
nav.scrolled {
  height: 60px;
  background: rgba(28, 28, 30, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-energy);
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--color-primary);
}
.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--color-white);
  letter-spacing: 2px;
}
.logo-text span {
  color: var(--color-accent-energy);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent-energy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 9px 22px;
  background: var(--color-accent-energy);
  color: var(--color-primary) !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  clip-path: polygon(0 0, 92% 0, 100% 25%, 100% 100%, 8% 100%, 0 75%);
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--yellow-dark) !important;
}
.nav-cta::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(28, 28, 30, 0.99);
  backdrop-filter: blur(20px);
  padding: 30px 5%;
  z-index: 999;
  border-bottom: 2px solid var(--color-accent-energy);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-menu a:hover {
  color: var(--color-accent-energy);
  padding-left: 10px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent-energy);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 48px;
  height: 48px;
  background: var(--color-accent-energy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  text-decoration: none;
  color: var(--color-primary);
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover {
  transform: translateY(-4px);
}
.fab-whatsapp {
  position: fixed;
  bottom: 40px;
  right: 28px;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: wabounce 2s 3s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  animation: none;
}
@keyframes wabounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  padding: 90px 5%;
}
.section-label {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent-cta);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--color-primary);
}
.section-title span {
  color: var(--color-accent-cta);
}
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-accent-energy);
  margin: 20px 0 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--color-text-main);
  max-width: 560px;
  line-height: 1.7;
  opacity: 0.72;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--color-accent-energy);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}
.breadcrumb .current {
  color: var(--color-accent-energy);
  font-weight: 700;
  letter-spacing: 2px;
}
.btn-primary {
  padding: 16px 36px;
  background: var(--color-accent-energy);
  color: var(--color-primary);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
  transition:
    background 0.2s,
    transform 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  padding: 14px 34px;
  background: transparent;
  color: var(--color-white);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--color-accent-energy);
  color: var(--color-accent-energy);
}
.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
  background: var(--color-primary);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 40%,
      rgba(245, 197, 24, 0.08) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 70% at 5% 80%,
      rgba(44, 44, 46, 0.9) 0%,
      transparent 60%
    );
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-left h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -1px;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-left h1 .line-orange {
  color: var(--color-accent-energy);
  display: block;
}
.hero-left h1 .line-stroke {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
  color: transparent;
  display: block;
}
.hero-left h1 .line-white {
  color: var(--white);
  display: block;
}
.hero-sub {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s both;
}
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  animation: fadeUp 0.8s 0.5s both;
}
.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 3px solid var(--color-accent-energy);
  padding: 24px 20px;
  transition: all 0.3s;
}
.stat-card:hover {
  background: rgba(245, 197, 24, 0.06);
  transform: translateY(-4px);
}
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--color-accent-energy);
  line-height: 1;
}
.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 6px 0 8px;
}
.stat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
#mision {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
#mision .section-label {
  color: var(--color-accent-energy);
}
#mision .section-title {
  color: var(--color-white);
}
#mision .section-title span {
  color: var(--color-accent-energy);
}
#mision .section-sub {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}
#mision::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(245, 197, 24, 0.04) 0%,
    transparent 60%
  );
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 60px;
}
.mv-card {
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.mv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent-energy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.mv-card:hover::after {
  transform: scaleX(1);
}
.mv-card:hover {
  background: rgba(255, 255, 255, 0.07);
}
.mv-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.mv-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1;
}
.mv-title span {
  color: var(--color-accent-energy);
}
.mv-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}
.mv-text strong {
  color: var(--color-white) !important;
}
#objeto {
  background: var(--color-bg-light);
}
#objeto .section-label {
  color: var(--color-accent-cta);
}
#objeto .section-title {
  color: var(--color-primary);
}
#objeto .section-title span {
  color: var(--color-accent-cta);
}
#objeto .section-sub {
  color: var(--color-text-main);
  opacity: 0.72;
}
.objeto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 50px;
}
.objeto-card {
  padding: 40px 36px;
  background: var(--color-white);
  border-left: 4px solid var(--color-accent-energy);
  transition:
    background 0.3s,
    transform 0.3s;
}
.objeto-card:hover {
  background: var(--color-bg-light);
  transform: translateX(4px);
}
.objeto-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: rgba(245, 197, 24, 0.18);
  line-height: 1;
  margin-bottom: 8px;
}
.objeto-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.objeto-text {
  font-size: 14px;
  color: var(--color-text-main);
  line-height: 1.75;
  opacity: 0.75;
}
#historia {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
#historia::before {
  content: "1994";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 240px;
  color: rgba(28, 28, 30, 0.03);
  line-height: 1;
  pointer-events: none;
}
#historia .section-label {
  color: var(--color-accent-cta);
}
#historia .section-title {
  color: var(--color-primary);
}
#historia .section-title span {
  color: var(--color-accent-cta);
}
#historia .section-sub {
  color: var(--color-text-main);
  opacity: 0.72;
}
.timeline {
  position: relative;
  margin-top: 60px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-accent-energy),
    rgba(245, 197, 24, 0.15)
  );
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 60px;
  align-items: center;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  background: var(--color-accent-energy);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  outline: 2px solid var(--color-accent-energy);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.timeline-left {
  text-align: right;
  padding-right: 40px;
}
.timeline-right {
  padding-left: 40px;
}
.timeline-year {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(245, 197, 24, 0.3);
  line-height: 1;
  margin-bottom: 4px;
}
.timeline-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--color-text-main);
  line-height: 1.7;
  margin-bottom: 12px;
  opacity: 0.72;
}
.timeline-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.35);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
}
#valores {
  background: var(--color-bg-light);
}
#valores .section-label {
  color: var(--color-accent-cta);
}
#valores .section-title {
  color: var(--color-primary);
}
#valores .section-title span {
  color: var(--color-accent-cta);
}
#valores .section-sub {
  color: var(--color-text-main);
  opacity: 0.72;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 50px;
}
.value-card {
  padding: 32px 24px;
  background: var(--color-white);
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  border-top: 3px solid transparent;
}
.value-card:hover {
  background: var(--color-white);
  transform: translateY(-4px);
  border-top-color: var(--color-accent-energy);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.value-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.value-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.value-desc {
  font-size: 13px;
  color: var(--color-text-main);
  line-height: 1.65;
  opacity: 0.72;
}
#certificaciones {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}
#certificaciones .section-label {
  color: var(--color-accent-energy);
}
#certificaciones .section-title {
  color: var(--color-white);
}
#certificaciones .section-title span {
  color: var(--color-accent-energy);
}
#certificaciones .section-sub {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}
.cert-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.cert-cta-box {
  margin-top: 36px;
  padding: 28px;
  background: rgba(245, 197, 24, 0.07);
  border: 1px solid rgba(245, 197, 24, 0.2);
}
.cert-cta-box-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 10px;
}
.cert-cta-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  line-height: 1.7;
}
.cert-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.cert-card {
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 3px solid var(--color-accent-energy);
  transition: all 0.3s;
}
.cert-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.cert-logo {
  font-size: 36px;
  margin-bottom: 14px;
}
.cert-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 10px;
}
.cert-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cert-since {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.3);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-energy);
}
#politicas-links {
  background: var(--color-primary);
  padding: 80px 5%;
}
#politicas-links .section-label {
  color: var(--color-accent-energy);
}
#politicas-links .section-title {
  color: var(--color-white);
}
#politicas-links .section-title span {
  color: var(--color-accent-energy);
}
#politicas-links .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
}
#politicas-links .btn-secondary:hover {
  border-color: var(--color-accent-energy);
  color: var(--color-accent-energy);
}
#cta-nosotros {
  background: var(--color-primary);
  text-align: center;
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}
#cta-nosotros::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 100% at 50% 50%,
    rgba(245, 197, 24, 0.06) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 80px);
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 0.9;
  margin-bottom: 24px;
}
.cta-inner h2 span {
  color: var(--color-accent-energy);
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
footer {
  background: var(--color-primary);
  padding: 60px 5% 30px;
  border-top: 3px solid var(--color-accent-energy);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-certif {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.certif-badge {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links:not(.no-dash) a::before {
  content: "—";
  color: var(--color-accent-energy);
  font-size: 10px;
}
.footer-links a:hover {
  color: var(--color-accent-energy);
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-copy span {
  color: var(--color-accent-energy);
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cert-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .objeto-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    grid-template-columns: 60px 1fr;
  }
  .timeline-left {
    display: none;
  }
  .timeline-right {
    display: block;
  }
  .timeline-item:nth-child(even) .timeline-right {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 4%;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 70px 4%;
  }
  .page-hero {
    padding: 110px 4% 60px;
  }
  .hero-right {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .cert-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-right {
    grid-template-columns: 1fr;
  }
  .objeto-grid {
    grid-template-columns: 1fr;
  }
}

.footer-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Elimina el guion */
.footer-social a::before {
    display: none !important;
    content: none !important;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Móvil */
@media (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-social a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-social i {
    color: inherit;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(28, 28, 30, 0.06);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}