/* ============================= */
/* PÁGINA VECTOR - ESTOICOAM    */
/* Estética: Oscuro, azul eléc- */
/* trico, morado, cian, futurista*/
/* ============================= */

:root {
  --dark: #050a14;
  --dark-mid: #0a1628;
  --dark-card: #0d1f3c;
  --blue: #00b4d8;
  --blue-electric: #0ff0fc;
  --purple: #7b2ff7;
  --purple-mid: #9d4edd;
  --purple-light: #c77dff;
  --cyan: #00f5d4;
  --white: #ffffff;
  --text-light: #c8d8f0;
  --text-mid: #8a9dc0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Exo 2", sans-serif;
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.8;
}

/* ============================= */
/* HEADER                        */
/* ============================= */

header {
  background-color: rgba(5, 10, 20, 0.95);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(0, 180, 216, 0.3);
  backdrop-filter: blur(10px);
}

header .logo {
  height: 50px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  filter: brightness(1.2);
}

header .logo:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 0 12px var(--blue)) brightness(1.4);
}

.hamburger {
  font-size: 30px;
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 901;
}

.hamburger:hover {
  color: var(--cyan);
}

.hamburger.active {
  opacity: 0;
  pointer-events: none;
}

/* ============================= */
/* MENÚ LATERAL - COLORES VECTOR */
/* (estructura viene de shared)  */
/* ============================= */

.menu-panel {
  background: #0a1628;
  border-left: 2px solid #7b2ff7;
}

.menu-close {
  color: #00b4d8;
}

.menu-close:hover {
  background-color: #050a14;
  color: #00f5d4;
}

.menu-links a {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #c8d8f0;
  letter-spacing: 2px;
}

.menu-links a::before {
  background-color: #00b4d8;
}

.menu-links a:hover {
  color: #00b4d8;
}

.menu-logo img {
  filter: brightness(1.5);
}

/* ============================= */
/* HERO                          */
/* ============================= */

.hero-vector {
  min-height: 65vh;
  background: linear-gradient(
    135deg,
    #050a14 0%,
    #0a1628 40%,
    #1a0a3a 70%,
    #0d1f3c 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero-vector::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      45deg,
      transparent 40%,
      rgba(0, 180, 216, 0.05) 50%,
      transparent 60%
    ),
    linear-gradient(
      135deg,
      transparent 30%,
      rgba(123, 47, 247, 0.08) 50%,
      transparent 70%
    );
  pointer-events: none;
}

.hero-vector::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--purple),
    var(--cyan),
    transparent
  );
}

/* Elementos geométricos */
.geo {
  position: absolute;
  border: 1px solid;
  opacity: 0.15;
  pointer-events: none;
}

.geo-1 {
  width: 80px;
  height: 80px;
  border-color: var(--blue);
  top: 15%;
  left: 8%;
  transform: rotate(15deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(0, 180, 216, 0.1);
}

.geo-2 {
  width: 50px;
  height: 50px;
  border-color: var(--purple-light);
  top: 60%;
  left: 15%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(199, 125, 255, 0.1);
}

.geo-3 {
  width: 100px;
  height: 100px;
  border-color: var(--cyan);
  top: 20%;
  right: 10%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(0, 245, 212, 0.08);
  transform: rotate(-10deg);
}

.geo-4 {
  width: 40px;
  height: 40px;
  border-color: var(--purple);
  bottom: 25%;
  right: 20%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(123, 47, 247, 0.15);
  transform: rotate(30deg);
}

.geo-5 {
  width: 60px;
  height: 60px;
  border-color: var(--blue-electric);
  top: 45%;
  right: 35%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(15, 240, 252, 0.06);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.programa-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 10px;
  margin-bottom: 20px;
  text-shadow:
    0 0 40px rgba(0, 180, 216, 0.4),
    0 0 80px rgba(123, 47, 247, 0.2);
}

.hero-tagline {
  font-family: "Exo 2", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 1px;
}

/* ============================= */
/* CONTENT SECTION               */
/* ============================= */

.content-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}

.column-left h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 2px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  margin: 20px 0;
}

.subtitle-italic {
  font-family: "Exo 2", sans-serif;
  font-size: 28px;
  color: var(--cyan);
  font-style: italic;
  font-weight: 300;
}

.desc-intro {
  font-size: 16px;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 30px;
  padding-left: 15px;
  border-left: 2px solid var(--purple);
  font-weight: 300;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 14px;
  padding-left: 25px;
  position: relative;
  font-weight: 400;
}

.benefits-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 9px;
  top: 7px;
}

/* ============================= */
/* DESCRIPTION                   */
/* ============================= */

.description {
  color: var(--text-light);
}

.description h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  margin: 50px 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.description p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--text-light);
}

/* BLOQUE VALIDACIÓN */
.vector-highlight {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
  background: var(--dark-card);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-top: 3px solid var(--blue);
  padding: 50px;
  margin: 50px 0;
  position: relative;
}

.vector-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.03) 0%,
    rgba(123, 47, 247, 0.05) 100%
  );
  pointer-events: none;
}

.highlight-col h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.highlight-divider {
  background: linear-gradient(180deg, transparent, var(--purple), transparent);
  width: 1px;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
  font-weight: 300;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 18px;
  top: -2px;
}

/* MÓDULOS */
.modules-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.modules-list li {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 12px;
  padding: 16px 20px;
  background: var(--dark-card);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-weight: 300;
  position: relative;
}

.modules-list li::before {
  display: none;
}

.modules-list li:hover {
  border-left-color: var(--blue);
  background: rgba(0, 180, 216, 0.08);
  color: var(--white);
}

.modules-list strong {
  color: var(--blue);
  font-weight: 700;
}

/* CITA */
.vector-quote {
  background: linear-gradient(135deg, var(--dark-mid) 0%, #1a0a3a 100%);
  padding: 50px 60px;
  margin: 50px 0;
  position: relative;
  border-left: 4px solid var(--purple);
  border-bottom: 1px solid rgba(123, 47, 247, 0.3);
}

.quote-mark {
  font-family: "Rajdhani", sans-serif;
  font-size: 140px;
  color: var(--purple);
  opacity: 0.2;
  position: absolute;
  top: -30px;
  left: 25px;
  line-height: 1;
}

.vector-quote p {
  font-family: "Exo 2", sans-serif;
  font-size: 28px;
  font-style: italic;
  color: var(--white);
  font-weight: 300;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  text-align: left;
  margin: 0;
  text-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(135deg, #0a1628 0%, #1a0a3a 100%);
  border: 1px solid rgba(0, 245, 212, 0.3);
  padding: 60px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.05),
    rgba(123, 47, 247, 0.08)
  );
}

.cta-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.cta-sub {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-btn {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  padding: 18px 50px;
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--cyan);
  transition: all 0.3s ease;
  position: relative;
}

.cta-btn:hover {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 30px rgba(0, 245, 212, 0.4);
  transform: translateY(-3px);
}

/* BOTÓN VOLVER */
.back-button-container {
  text-align: center;
  margin: 40px 0 80px 0;
}

.back-button {
  display: inline-block;
  background-color: transparent;
  color: var(--blue);
  padding: 16px 50px;
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px solid var(--blue);
  transition: all 0.3s ease;
}

.back-button:hover {
  background: var(--blue);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
  transform: translateY(-3px);
}

/* ============================= */
/* FOOTER                        */
/* ============================= */

footer {
  background-color: var(--dark-mid);
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid rgba(0, 180, 216, 0.3);
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
  opacity: 0.9;
  filter: brightness(1.2);
}

.footer-copyright,
.footer-social,
.footer-email {
  font-size: 13px;
  color: var(--text-mid);
  margin: 8px 0;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 30px;
  padding: 20px 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: 100%;
}

.footer-legal a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 13px;
  padding: 0 25px;
  border-right: 2px solid #c77dff;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.footer-legal a:last-child {
  border-right: none;
}

.footer-legal a:hover {
  color: #00f5d4 !important;
  letter-spacing: 1px;
}

.footer-social a,
.footer-email a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover,
.footer-email a:hover {
  color: #0ff0fc !important;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .hero-content h1 {
    font-size: 72px;
    letter-spacing: 5px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .content-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .column-left h2 {
    font-size: 38px;
  }

  .subtitle-italic {
    font-size: 22px;
  }

  .content-section {
    padding: 0 20px;
    margin: 50px auto;
  }

  .vector-highlight {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .highlight-divider {
    display: none;
  }

  .vector-quote {
    padding: 40px 30px;
  }

  .vector-quote p {
    font-size: 22px;
  }

  .cta-block {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 56px;
    letter-spacing: 4px;
  }
}

/* ============================= */
/* BLOQUE ECODIGO - PARTNER      */
/* ============================= */

.ecodigo-block {
  margin: 70px 0;
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-top: 3px solid var(--cyan);
  background: linear-gradient(135deg, #0a1628 0%, #1a0a3a 100%);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.ecodigo-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.04),
    rgba(123, 47, 247, 0.06)
  );
  pointer-events: none;
}

.ecodigo-header h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px 0 !important;
}

.ecodigo-sub {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cyan);
  font-weight: 300;
  margin: 0 0 40px 0 !important;
  letter-spacing: 0.5px;
}

.ecodigo-body p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px !important;
  font-weight: 300;
}

.ecodigo-body strong {
  color: var(--cyan);
  font-weight: 600;
}

.ecodigo-diferenciador {
  background: rgba(0, 180, 216, 0.06);
  border-left: 3px solid var(--blue);
  padding: 30px 40px;
  margin: 40px 0;
}

.ecodigo-diferenciador h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.ecodigo-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ecodigo-lista li {
  font-size: 15px;
  color: var(--text-light);
  padding: 8px 0 8px 25px;
  position: relative;
  font-weight: 300;
  border: none;
  background: none;
  margin-bottom: 0;
}

.ecodigo-lista li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 9px;
  top: 12px;
}

.ecodigo-declaracion {
  border-top: 1px solid rgba(0, 180, 216, 0.2);
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  padding: 30px 0;
  margin: 40px 0;
  text-align: center;
}

.ecodigo-declaracion p {
  font-family: "Exo 2", sans-serif;
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 !important;
}

.ecodigo-declaracion strong {
  color: var(--white);
  font-weight: 600;
}

.ecodigo-partner {
  margin-top: 40px;
  text-align: center;
}

.ecodigo-partner-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 600;
}

.ecodigo-partner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 180, 216, 0.15);
  padding: 35px 60px;
  margin-bottom: 20px;
}

.ecodigo-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ecodigo-logo {
  height: 300px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.ecodigo-tagline {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-mid);
  text-transform: uppercase;
}

.ecodigo-btn {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  padding: 14px 38px;
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--cyan);
  transition: all 0.3s ease;
}

.ecodigo-btn:hover {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.4);
  transform: translateY(-2px);
}

.ecodigo-legal {
  font-size: 12px !important;
  color: var(--text-mid) !important;
  font-style: italic;
  margin-top: 20px !important;
  max-width: 600px;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.6 !important;
}

@media (max-width: 768px) {
  .ecodigo-block {
    padding: 40px 25px;
  }

  .ecodigo-partner-inner {
    flex-direction: column;
    gap: 25px;
    padding: 25px 20px;
  }

  .ecodigo-diferenciador {
    padding: 25px 20px;
  }

  .ecodigo-header h3 {
    font-size: 26px !important;
  }
}

/* ============================= */
/* BLOQUE COLABORACIÓN           */
/* ============================= */

.ecodigo-collab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-top: 2px solid rgba(123, 47, 247, 0.4);
  border-bottom: 2px solid rgba(0, 245, 212, 0.4);
  padding: 40px 60px;
  margin: 40px 0;
}

.collab-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Logo Estoicoam */
.collab-logo-estoicoam {
  height: 60px;
  width: auto;
  filter: brightness(1.2);
  opacity: 0.9;
}

/* Logo ECodigo */
.collab-logo-ecodigo {
  height: 200px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.collab-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-mid);
  text-transform: uppercase;
}

.collab-center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 200px;
}

.collab-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.collab-x {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-light);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .ecodigo-collab {
    padding: 30px 20px;
    gap: 20px;
  }

  .collab-center {
    max-width: 80px;
  }
}
