/* ═══════════════════════════════════════════════════
          ETIKETTEN S.A. — Sitio Web v2
          Fuente de títulos: Syne (geométrica, sorpresiva)
          Cuerpo: Barlow
          Paleta: Pantone 376 + oscuros institucionales
        ═══════════════════════════════════════════════════ */
:root {
  --verde: #76b82a;
  --verde-dark: #5a8f1e;
  --verde-light: #a0d44f;
  --verde-glow: rgba(118, 184, 42, 0.18);
  --negro: #0c0c0c;
  --gris-oscuro: #161616;
  --gris-medio: #222222;
  --gris-panel: #1e1e1e;
  --blanco: #f8f8f6;
  --texto-suave: #888;
  --borde: rgba(118, 184, 42, 0.2);
  --borde-sutil: rgba(255, 255, 255, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--negro);
  color: var(--blanco);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  background-color: var(--gris-oscuro);
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--verde);
  border-radius: 999px;
}

/* ─── TIPOGRAFÍA BASE ─────────────────────────── */
h1,
h2,
h3,
.section-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.stat-num,
.rubro-name,
.cert-name,
.politica-name,
.trabaja-form h3,
.contacto-form h3,
.modal-header h3,
.footer-col h5,
.section-label,
.nav-links a,
.nav-cta,
.btn-primary,
.btn-outline,
.btn-form,
.hero-tag,
.video-note,
.cert-tag,
.rubro-tag-overlay,
.pilar h4,
.oferta-quote-author,
.form-group label,
.footer-tag,
.footer-bottom p,
.footer-bottom span {
  font-family: "Inter", system-ui, sans-serif;
}

/* ═══════════════════════════════════════════════
   NAVBAR 
═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--borde-sutil);
  transition:
    height 0.4s ease,
    background 0.4s ease;
  overflow: visible;
}

nav.scrolled {
  height: 58px;
  background: rgba(6, 6, 6, 0.97);
  border-bottom-color: var(--borde);
  overflow: visible;
}

/* Logo — placeholder hasta recibir archivo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 140px;
  height: 36px;
  background: var(--gris-medio);
  border: 1px dashed rgba(118, 184, 42, 0.35);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav-logo-img::before {
  content: "LOGO";
  font-family: "Inter", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(118, 184, 42, 0.5);
}

/* Cuando se suba el logo, reemplazar .nav-logo-img por <img src="logo.svg"> */

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--texto-suave);
  text-decoration: none;
  padding: 8px 8px;
  border-radius: 2px;
  position: relative;
  transition: color 0.25s;
}

/* Underline slide effect */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--blanco);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/*Dropdown*/

.dropdown {
  position: relative;
}


.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform:
    translateX(-50%) translateY(10px);
  background: rgba(18, 18, 18, .98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--borde);
  border-radius: 0px 0px 10px 10px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  overflow: hidden;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform:
    translateX(-25%) translateY(-3%);
}

.dropdown-menu a {
  display: block;
  padding: 14px 18px;
  font-size: 13px;
  text-decoration: none;
  color: var(--texto-suave);
  border-bottom:
    1px solid rgba(255, 255, 255, .05);
  transition: .25s;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {

  background:
    rgba(118, 184, 42, .08);
  color:
    var(--verde);
}

.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 25px;
}

.hero-title {
  display: block;
}

.hero-title-movil {
  display: none;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.8rem, 9vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -1px;
}

.hero-title-movil em {
  color: var(--verde);
  font-style: italic;
}

/*boton Acceso Clientes*/
.nav-clientes {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: var(--verde) !important;
  background: var(--negro);
  border-radius: 2px;
  border: 1px solid var(--verde);
  position: relative;
  overflow: hidden;
}

.nav-clientes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--verde);
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.nav-clientes::after {
  display: none !important;
}

.nav-clientes:hover {
  color: var(--negro) !important;
}

.nav-clientes:hover::before {
  transform: translateX(0);
}

.nav-clientes span {
  position: relative;
  z-index: 1;
}


/* Botón CTA navbar */
.nav-cta {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: var(--negro) !important;
  background: var(--verde);
  border-radius: 2px;
  border: 1px solid var(--verde);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--negro);
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: var(--verde) !important;
}

.nav-cta:hover::before {
  transform: translateX(0);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--blanco);
  transition: all 0.3s;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--borde);
  z-index: 999;
  flex-direction: column;
  padding: 20px 28px 28px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texto-suave);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--borde-sutil);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--verde);
}

.mobile-menu .nav-cta {
  margin-top: 16px;
  text-align: center;
  color: var(--negro) !important;
  padding: 14px 20px !important;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#home {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  background: var(--negro);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #1a2e08 0%, #0c0c0c 65%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
}

/* Grid pattern */
.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(118, 184, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 184, 42, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      transparent 20%,
      rgba(0, 0, 0, 0.7) 100%);
}

.play-btn {
  width: 88px;
  height: 88px;
  border: 1.5px solid var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(118, 184, 42, 0.05);
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(118, 184, 42, 0.2);
  border-radius: 50%;
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--verde);
  margin-left: 5px;
}

.play-btn:hover {
  background: rgba(118, 184, 42, 0.15);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(118, 184, 42, 0.25);
}

.video-note {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 8, 8, 0.95) 0%,
      rgba(8, 8, 8, 0.45) 45%,
      rgba(8, 8, 8, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 88px;
  max-width: 960px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease both;
}

.hero-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--verde);
}

h1.hero-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(52px, 8.5vw, 108px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: none;
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.15s ease both;
}

h1.hero-title em {
  color: var(--verde);
  font-style: italic;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 44px;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.45s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 52px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.scroll-hint span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--verde), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════
   BOTONES GLOBALES
═══════════════════════════════════════════════ */
.btn-primary {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--verde);
  color: var(--negro);
  padding: 15px 36px;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid var(--verde);
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--negro);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  color: var(--verde);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--blanco);
  padding: 15px 36px;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    border-color 0.25s,
    color 0.25s;
}

.btn-outline:hover {
  border-color: var(--verde);
  color: var(--verde);
}

/* ═══════════════════════════════════════════════
   SECCIONES BASE
═══════════════════════════════════════════════ */
section {
  padding: 104px 72px;
}

.section-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--verde);
}

.section-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400;
  text-transform: none;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.section-title em {
  color: var(--verde);
  font-style: italic;
}

.verde-divider {
  height: 1px;
  background: linear-gradient(90deg,
      var(--verde) 0%,
      rgba(118, 184, 42, 0.1) 60%,
      transparent 100%);
}

/* Fade-in scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   EMPRESA
═══════════════════════════════════════════════ */
#empresa {
  background: var(--gris-oscuro);
  position: relative;
  overflow: hidden;
}

.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.empresa-text p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.empresa-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  background: var(--gris-medio);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.3s,
    border-color 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
}

.stat-box:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  border-color: var(--borde);
}

.stat-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde);
  transition: width 0.4s;
}

.stat-box:hover::after {
  width: 100%;
}

.stat-num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2vw + 1rem, 3rem);
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 12px;
  line-height: 1.4;
  text-wrap: balance;
  font-weight: 400;
  color: var(--texto-suave);
  letter-spacing: 1px;
  text-align: left;
  line-height: 1.15;
  max-width: 90%;
}

/* ═════════ MODAL EMPRESA ═════════ */

.modal-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 9999;

  padding: 30px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  width: min(850px, 90vw);
  max-height: 85vh;

  overflow-y: auto;

  background: var(--gris-medio);

  border: 1px solid var(--borde-sutil);
  border-radius: 4px;

  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 32px;

  border-bottom: 1px solid var(--borde-sutil);
}

.modal-header h3 {
  margin: 0;

  font-size: 26px;
  font-weight: 700;

  color: var(--verde-light);

  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 2px;

  border: 1px solid var(--borde-sutil);
  background: transparent;

  color: var(--texto-suave);

  font-size: 18px;
  cursor: pointer;

  transition: .3s;
}

.modal-close:hover {
  border-color: var(--verde-light);
  color: var(--verde-light);
}

.modal-body {
  padding: 32px;
}

.modal-body p {
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;

  color: rgba(255, 255, 255, .75);

  margin-bottom: 20px;
}

.modal-body strong {
  color: var(--verde-light);
}

.modal::-webkit-scrollbar {
  width: 8px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(118, 184, 42, .4);
}

.modal::-webkit-scrollbar-thumb:hover {
  background: rgba(118, 184, 42, .7);
}

/* ═══════════════════════════════════════════════
   OFERTA 
═══════════════════════════════════════════════ */
#oferta {
  background: var(--negro);
  position: relative;
  overflow: hidden;
}

/* Círculo decorativo de fondo */
#oferta::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(118, 184, 42, 0.06);
  pointer-events: none;
}

#oferta::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(118, 184, 42, 0.09);
  pointer-events: none;
}

.oferta-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.oferta-header p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  text-align: justify;
  margin-bottom: 3%;
}

/* Cuatro pilares en grid 2x2 */
.oferta-pilares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 50px;
  transform: translateX(-50%);
  margin-top: 10px;
}

.pilar {
  background: var(--gris-medio);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  border: 2px solid var(--borde);
  border-radius: 10px;
  min-height: 340px;
}

.pilar:hover .pilar-bg {
  filter: blur(3px) brightness(.6);
  transform: scale(1.05);
}

.pilar:hover {
  background: #262626;
}

.pilar-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform .5s ease,
    filter .5s ease;
}

.pilar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .85),
      rgba(0, 0, 0, .45));
  z-index: 1;
  transition: .4s;
}

.pilar:hover::before {
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .92),
      rgba(0, 0, 0, .60));
}

.pilar:hover .pilar-content {
  transform: translateY(-4px);
}

.pilar-content {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  z-index: 2;
  transition: transform .4s ease;
}

.pilar h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blanco);
  margin-bottom: 10px;
  transition:
    color .3s,
    text-shadow .3s;
}

.pilar:hover h4 {
  color: var(--verde);
  text-shadow: 0 0 15px rgba(118, 184, 42, .35);
}

.pilar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: justify;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   CERTIFICACIONES
═══════════════════════════════════════════════ */
#certificaciones {
  background: var(--gris-oscuro);
}

.certs-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 50px;

  margin-top: 80px;

  justify-items: center;
}

.cert-card {

  width: 380px;
  height: 380px;

  border-radius: 999px;

  position: relative;

  background:
    radial-gradient(circle at top,
      rgba(118, 184, 42, .08),
      transparent 60%),
    linear-gradient(135deg,
      var(--gris-medio),
      #2b2b2b);
}

.cert-card::after {

  content: "";

  position: absolute;

  inset: 12px;

  border-radius: 50%;

  border: 1px solid rgba(118, 184, 42, .15);

  pointer-events: none;
}

.cert-card::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(118, 184, 42, .18) 0%,
      rgba(118, 184, 42, .05) 40%,
      transparent 75%);

  opacity: 0;

  transition: .4s;
}

.cert-card::before,
.cert-card::after {
  z-index: 1;
}

.cert-card:hover::before {
  opacity: 1;
}

.cert-card:hover .cert-logo-wrap img {

  transform: scale(1.1);

  filter:
    drop-shadow(0 0 10px rgba(118, 184, 42, .4)) drop-shadow(0 0 20px rgba(118, 184, 42, .25));
}

.cert-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, .35);
}

.cert-inner {

  height: 100%;

  padding: 60px 40px;

  display: flex;
  flex-direction: column;

  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cert-logo-wrap {
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cert-logo-wrap img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition:
    transform .4s,
    filter .4s;
}

.cert-name {

  font-family: "Inter", sans-serif;

  font-size: 22px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 16px;

  color: var(--blanco);
}

.cert-desc {

  font-size: 13px;

  line-height: 1.7;

  color: rgba(255, 255, 255, .6);

  flex: 1;
}

.cert-tag {

  margin-top: 10px;

  display: inline-flex;

  align-items: center;

  padding: 8px 16px;

  border-radius: 999px;

  background:
    rgba(118, 184, 42, .12);

  border:
    1px solid rgba(118, 184, 42, .3);

  color: var(--verde);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.cert-tag a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

/* ═══════════════════════════════════════════════
   NOVEDADES
═══════════════════════════════════════════════ */

#novedades {
  background: var(--negro);
}

.novedades-intro {
  max-width: 650px;
  color: rgba(255, 255, 255, .55);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 10px;
}

.novedades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.novedad-card {
  background: var(--gris-medio);
  border: 1px solid var(--borde-sutil);
  overflow: hidden;
  transition: .35s;
}

.novedad-card:hover {
  transform: translateY(-6px);
  border-color: var(--verde);
}

.novedad-image {
  height: 260px;
  overflow: hidden;
}

.novedad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.novedad-card:hover img {
  transform: scale(1.05);
}

.novedad-content {
  padding: 28px;
}

.novedad-date {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--verde);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.novedad-content h3 {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.novedad-content p {
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-bottom: 22px;
}

.novedad-link {
  color: var(--verde);
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.novedad-link:hover {
  opacity: .8;
}

/* ═══════════════════════════════════════════════
   POLÍTICAS
═══════════════════════════════════════════════ */
#politicas {
  background: var(--negro);
}

.politicas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.politica-item {
  background: var(--gris-medio);
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: background 0.25s;
  border: 1px solid transparent;
  border-radius: 2px;
}

.politica-item:hover {
  background: #2a2a2a;
  border-color: var(--borde);
}

.politica-info {
  display: flex;
  align-items: center;
  gap: 22px;
}

.politica-num {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: rgba(118, 184, 42, 0.2);
  line-height: 1;
  min-width: 44px;
}

.politica-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blanco);
  margin-bottom: 4px;
}

.politica-sub {
  font-size: 12px;
  color: var(--texto-suave);
}

.politica-btn {
  display: inline-block;
  padding: 12px 24px;

  background: var(--verde-light);
  color: var(--negro);

  border: 1px solid var(--verde-light);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  transition: .3s;
  cursor: pointer;
}

.politica-btn:hover {
  background: var(--verde-dark);
  border-color: var(--verde-dark);
  color: var(--blanco);
}

/* ═══════════════════════════════════════════════
   RUBROS 
═══════════════════════════════════════════════ */
#rubros {
  background: var(--gris-oscuro);
}

.rubros-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.rubros-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 40px;
}

.rubros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.rubro-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}

/* Imagen del rubro — reemplazar src por las tuyas */
.rubro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}


/* Overlay info */
.rubro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}

.rubro-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: var(--blanco);
  transform: translateY(8px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rubro-desc-overlay {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s 0.05s,
    transform 0.4s 0.05s;
  max-height: 0;
  overflow: hidden;
}

.rubro-tag-overlay {
  display: inline-block;
  margin-top: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde);
  background: rgba(118, 184, 42, 0.15);
  padding: 4px 10px;
  border-radius: 1px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s 0.1s,
    transform 0.3s 0.1s;
}

.rubro-card:hover .rubro-img,
.rubro-card:hover .rubro-img-placeholder {
  transform: scale(1.06);
}

.rubro-card:hover .rubro-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.97) 0%,
      rgba(0, 0, 0, 0.55) 55%,
      rgba(0, 0, 0, 0.1) 100%);
}

.rubro-card:hover .rubro-name {
  transform: translateY(0);
}

.rubro-card:hover .rubro-desc-overlay {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
}

.rubro-card:hover .rubro-tag-overlay {
  opacity: 1;
  transform: translateY(0);
}

.rubro-card:hover .rubro-pua {
  opacity: 1;
}

/* Verde accent line on hover */
.rubro-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--verde);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rubro-card:hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════════ */
#contacto {
  background: var(--gris-oscuro);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacto-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--gris-medio);
  border: 1px solid var(--borde-sutil);
  border-radius: 2px;
  transition: .3s;
}

.contacto-item:hover {
  border-color: var(--verde);
  transform: translateY(-2px);
}

.contacto-item h4 {
  font-family: "Inter", system-ui, sans-serif;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde-light);
}

.contacto-item p,
.contacto-item li {
  font-size: 14px;
  color: var(--blanco);
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.2s;
}

.contacto-item ul {
  margin: 0;
  padding-left: 18px;
}

.contacto-item li {
  margin-bottom: 12px;
}

.contacto-item a:hover {
  color: var(--verde);
}

.contacto-item a {
  color: var(--blanco);
  text-decoration: none;
  transition: .3s;
}

.contacto-item a:hover {
  color: var(--verde-light);
}


.contacto-map h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde-light);
  margin: 0;
}


.contacto-map {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: var(--gris-medio);
  border: 1px solid var(--borde-sutil);
  border-radius: 2px;
  transition: .3s;
}

.contacto-map:hover {
  border-color: var(--verde);
  transform: translateY(-2px);
}


.contacto-map-card {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--borde);
  background: var(--gris-medio);
  transition: .3s;
}

.contacto-map-card:hover {
  border-color: var(--verde);
  box-shadow:
    0 0 20px rgba(118, 184, 42, .12);
}

.contacto-map-card iframe {

  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════
   TRABAJA CON NOSOTROS
═══════════════════════════════════════════════ */
#trabaja {
  background: var(--negro);
  position: relative;
  overflow: hidden;
}

#trabaja::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(118, 184, 42, 0.05) 0%,
      transparent 70%);
  pointer-events: none;
}

.trabaja-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.trabaja-info p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.beneficios {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.beneficio::before {
  content: "→";
  color: var(--verde);
  font-weight: 700;
  flex-shrink: 0;
}

.trabaja-form {
  background: var(--gris-medio);
  padding: 44px;
  border: 1px solid var(--borde-sutil);
  border-radius: 2px;
  scroll-margin-top: 120px;
}

.trabaja-form h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--borde-sutil);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texto-suave);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--blanco);
  padding: 12px 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  border-radius: 2px;
  outline: none;
  resize: vertical;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.form-group select option {
  background: var(--gris-medio);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde);
  background: rgba(118, 184, 42, 0.04);
}

.form-group textarea {
  min-height: 96px;
}

.form-coming {
  background: rgba(118, 184, 42, 0.06);
  border: 1px dashed rgba(118, 184, 42, 0.35);
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 10px;
  color: var(--verde);
  text-align: center;
  margin-top: 12px;
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.upload-btn {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  padding: 12px 24px;
  background: var(--verde-light);
  color: var(--negro) !important;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.upload-btn:hover {
  background: var(--verde-dark);
  color: white !important;
}

.file-name {
  display: block;
  margin-top: 10px;
  color: var(--verde-light);
  font-size: 10px;
}

.btn-form {
  width: 100%;
  cursor: pointer;
  border: none;
  font-size: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--verde-light);
  color: var(--negro);
  padding: 15px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: .3s;
}

.btn-form:hover {
  background: var(--verde-dark);
  color: white;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  min-height: 24px;
}

.status-success {
  color: var(--verde);
}

.status-error {
  color: #ff6b6b;
}

.vacantes-section {
  margin-top: 50px;
}

.vacantes-title {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--verde-light);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.vacantes-grid {
  display: grid;
  gap: 16px;
}

.vacantes-empty {
  margin-top: 24px;
  padding: 32px;
  background: var(--gris-medio);
  border: 1px solid var(--borde-sutil);
  border-radius: 8px;
  text-align: center;
}

.vacantes-empty-text {
  color: var(--texto-suave);
  font-size: 15px;
}

.btn-vacante-general {
  background: var(--verde);
  color: var(--negro);
  border: none;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: .3s;
}

.btn-vacante-general:hover {
  transform: translateY(-2px);
}

.hidden-form {
  display: none;
}

.vacante-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--borde-sutil);
  padding: 22px;
  transition: .3s;
}

.vacante-card:hover {
  border-color: var(--verde);
}

.vacante-card h4 {
  margin-bottom: 10px;
}

.vacante-card p {
  margin-bottom: 20px;
}

.btn-vacante {
  width: 100%;
  padding: 12px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--verde-light);
  border: 1px solid var(--verde-light);
  transition: .3s;
}

.btn-vacante:hover {
  background: var(--verde-light);
  color: var(--white);
}

#vacante-indicator {
  margin-bottom: 20px;
  padding: 12px;
  border-left: 4px solid var(--verde-light);
  background: rgba(118, 184, 42, .08);
  color: var(--verde-light);
  font-size: 13px;
}

.vacante-descripcion {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

/* Neutralizar las etiquetas <font> legacy del editor */
.vacante-descripcion font {
  font-family: inherit !important;
  font-size: inherit !important;
}

.vacante-descripcion ol,
.vacante-descripcion ul {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.vacante-descripcion li {
  margin-bottom: 0.4rem;
}

.vacante-descripcion p {
  margin: 0.5rem 0;
}

.vacante-descripcion b,
.vacante-descripcion strong {
  color: #111827;
}

.vacante-datos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.vacante-datos span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: #F3F4F6;
  color: #374151;
  border: 1px solid #E5E7EB;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: #070707;
  padding: 64px 72px 32px;
  border-top: 1px solid var(--borde-sutil);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo-area {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  color: var(--texto-suave);
  line-height: 1.7;

}

.footer-tag {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  text-decoration: none;
  border-radius: 2px;
  transition:
    transform .3s,
    border-color .3s,
}

.footer-social a:hover {
  transform: translateY(-3px);
  border-color: var(--verde);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col h5 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 22px;
}

.footer-col ul {
  align-items: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--texto-suave);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--blanco);
}

.footer-bottom {
  border-top: 1px solid var(--borde-sutil);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom span {
  font-size: 12px;
  color: var(--verde);
}

.footer-qr h5 {
  margin-bottom: 20px;
}

.footer-qr-card {

  width: 150px;
  height: 150px;

  background: white;

  border-radius: 12px;

  padding: 10px;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid var(--borde);
}

.footer-qr-card img {

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.footer-qr span {

  display: block;

  margin-top: 12px;

  font-size: 12px;

  color: var(--texto-suave);
}

/*Sustentabilidad*/

#sustentabilidad {
  background: var(--gris-oscuro);
  color: var(--blanco);
  padding: 120px 8%;
  overflow: hidden;
}

.sust-hero {
  max-width: 900px;
  margin-bottom: 70px;
}

.sust-kicker {
  color: var(--verde);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.sust-hero p,
.sust-bcorp p {
  max-width: 760px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-top: 20px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 80px;
}

.impact-card {
  border: 1px solid rgba(140, 198, 63, .24);
  border-radius: 26px;
  padding: 32px;
  min-height: 260px;
  transition: transform .3s ease, border-color .3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  border-color: var(--verde);
}

.impact-card span {
  color: var(--verde);
  font-weight: 900;
}

.impact-card h3 {
  margin: 22px 0 14px;
  font-size: 1.6rem;
}

.impact-card p,
.eje-content p,
.roadmap-step p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}

.sust-ejes-intro {
  max-width: 820px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-top: 16px;
}

.eje-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.eje-list li {
  position: relative;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
  padding-left: 28px;
}

.eje-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 9px;
  height: 9px;
  background: var(--verde);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(140, 198, 63, .5);
}

.sust-roadmap {
  border-radius: 30px;
  padding: clamp(28px, 5vw, 56px);
  margin-bottom: 40px;
}

.ejes-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.eje-tab {
  border: 1px solid rgba(255, 255, 255, .15);
  background: transparent;
  color: var(--blanco);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.eje-tab.active {
  background: var(--verde);
  color: var(--negro);
  border-color: var(--verde);
}

.eje-content {
  display: none;
}

.eje-content.active {
  display: block;
}

.eje-content h4 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.roadmap-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.roadmap-step {
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(140, 198, 63, .22);
  transition: transform .3s ease, border-color .3s ease;
}

.roadmap-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--verde);
  color: var(--negro);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 16px;
}

.roadmap-step:hover {
  transform: translateY(-6px);
  border-color: var(--verde);
}

.sust-bcorp {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 32px;
  align-items: center;
}

/* Sugerencias */
.sugerencias-page {
  min-height: 100vh;
  background: #0b0b0b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
}

.sugerencias-card {
  width: min(100%, 720px);
  background: #141414;
  border: 1px solid rgba(140, 198, 63, 0.28);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.sugerencias-card h1 {
  margin: 18px 0;
  font-size: clamp(34px, 6vw, 64px);
}

.sugerencias-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 28px;
}

.sugerencias-card textarea {
  min-height: 180px;
  resize: vertical;
}

.footer-qr-title h5 {
  text-align: center;
}

.footer-qr-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--blanco);
  margin-top: 12px;
  transition: transform .3s ease;
}

.footer-qr-link:hover {
  transform: translateY(-3px);
}

.footer-qr-link img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 14px;
  border: 2px solid rgba(140, 198, 63, .35);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, .25);
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.footer-qr-link:hover img {
  transform: scale(1.04);

  box-shadow:
    0 15px 35px rgba(140, 198, 63, .25);
}

.footer-qr-link span {
  font-size: .85rem;
  text-align: center;
  color: rgba(255, 255, 255, .75);
}

/* ═══ CHATBOT ETIKETTEN ═════════════════════════════ */

.etk-chat__open {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
}

.etk-chat__btn {
  border: none;
  background: none;
  padding: 0;
}

.etk-chat__btn--circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid rgba(140, 198, 63, .9);
  background:
    radial-gradient(circle at 30% 20%, rgba(140, 198, 63, .22), transparent 35%),
    #0b0b0b;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, .55),
    0 0 0 8px rgba(140, 198, 63, .08),
    0 0 32px rgba(140, 198, 63, .32);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.etk-chat__btn--circle:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .65),
    0 0 0 10px rgba(140, 198, 63, .11),
    0 0 42px rgba(140, 198, 63, .45);
}

.etk-chat__btn--circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.etk-chat {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 9999;
}

.etk-chat__panel {
  width: min(400px, calc(100vw - 32px));
  height: 560px;
  max-height: calc(100vh - 135px);
  background: #141414;
  color: #fff;
  border: 1px solid rgba(140, 198, 63, .34);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 34px 95px rgba(0, 0, 0, .68),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  display: none;
  flex-direction: column;
}

.etk-chat__panel.is-open {
  display: flex;
}

.etk-chat__header {
  flex: 0 0 auto;
  min-height: 68px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, #0b0b0b 0%, #141414 55%, #1d1d1d 100%);
  border-bottom: 1px solid rgba(140, 198, 63, .24);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.etk-chat__title {
  position: relative;
  font-size: .94rem;
  font-weight: 850;
  color: #fff;
  letter-spacing: .02em;
  padding-left: 18px;
}

.etk-chat__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #8cc63f;
  box-shadow: 0 0 16px rgba(140, 198, 63, .85);
}

.etk-chat__title::after {
  content: "En línea";
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(140, 198, 63, .9);
  letter-spacing: 0;
}

.etk-chat__close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .75);
  font-size: 24px;
  line-height: 30px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.etk-chat__close:hover {
  background: rgba(140, 198, 63, .14);
  color: #8cc63f;
  transform: rotate(90deg);
}

/* Cuerpo: solo esta zona hace scroll */
.etk-chat__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(140, 198, 63, .10), transparent 34%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 100%);
}

.etk-chat__body::-webkit-scrollbar {
  width: 7px;
}

.etk-chat__body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .03);
}

.etk-chat__body::-webkit-scrollbar-thumb {
  background: rgba(140, 198, 63, .48);
  border-radius: 20px;
}

/* Mensajes tipo WhatsApp */
.etk-msg-row {
  width: 100%;
  display: flex;
}

.etk-msg-row--bot {
  justify-content: flex-start;
}

.etk-msg-row--user {
  justify-content: flex-end;
}

.etk-msg {
  max-width: 80%;
  padding: 12px 14px;
  font-size: .92rem;
  line-height: 1.45;
  border-radius: 18px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  animation: etkMsgIn .18s ease both;
}

@keyframes etkMsgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.etk-msg--bot {
  background: #1d1d1d;
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .08);
  border-bottom-left-radius: 5px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

.etk-msg--user {
  background: #8cc63f;
  color: #0b0b0b;
  font-weight: 750;
  border-bottom-right-radius: 5px;
  box-shadow: 0 8px 22px rgba(140, 198, 63, .18);
}

/* Barra fija abajo */
.etk-chat__input {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  background:
    linear-gradient(180deg, rgba(29, 29, 29, .98), #141414);
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.etk-chat__input input {
  flex: 1;
  min-width: 0;
  height: 48px;
  background: #0b0b0b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 0 17px;
  font-size: .92rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.etk-chat__input input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.etk-chat__input input:focus {
  background: #101010;
  border-color: #8cc63f;
  box-shadow: 0 0 0 3px rgba(140, 198, 63, .14);
}

.etk-chat__send {
  height: 48px;
  min-width: 94px;
  border: none;
  border-radius: 999px;
  background: #8cc63f;
  color: #0b0b0b;
  font-size: .9rem;
  font-weight: 900;
  cursor: pointer;
  padding: 0 18px;
  box-shadow: 0 10px 26px rgba(140, 198, 63, .2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.etk-chat__send:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 12px 32px rgba(140, 198, 63, .32);
}

.etk-chat__send:active {
  transform: scale(.97);
}

.etk-chat__send:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.typing {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 64px;
}

.typing::before,
.typing::after,
.typing span {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  animation: etkTyping 1.2s infinite;
}

.typing span {
  animation-delay: .2s;
}

.typing::after {
  animation-delay: .4s;
}

@keyframes etkTyping {

  0%,
  80%,
  100% {
    transform: scale(.7);
    opacity: .35;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .etk-chat {
    right: 12px;
    left: 12px;
    bottom: 88px;
  }

  .etk-chat__panel {
    width: 100%;
    height: 72vh;
    max-height: 72vh;
    border-radius: 22px;
  }

  .etk-chat__open {
    right: 18px;
    bottom: 18px;
  }

  .etk-chat__btn--circle {
    width: 60px;
    height: 60px;
  }

  .etk-chat__btn--circle img {
    width: 37px;
    height: 37px;
  }

  .etk-chat__header {
    min-height: 64px;
    padding: 14px 16px;
  }

  .etk-chat__input {
    padding: 11px;
    gap: 8px;
  }

  .etk-chat__input input {
    height: 46px;
    padding: 0 14px;
  }

  .etk-chat__send {
    height: 46px;
    min-width: 76px;
    padding: 0 14px;
    font-size: .84rem;
  }

  .etk-msg {
    max-width: 86%;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  section {
    padding: 80px 44px;
  }

  nav {
    padding: 0 24px;
  }

  .hero-content {
    padding: 0 44px 72px;
  }

  .empresa-grid,
  .rubros-intro,
  .trabaja-wrap,
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .oferta-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rubros-grid {
    grid-template-columns: 1fr 1fr;
  }

  .certs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .politicas-grid {
    grid-template-columns: 1fr;
  }

  .oferta-pilares {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 64px 24px;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 0 24px 56px;
  }

  .scroll-hint {
    display: none;
  }

  .rubros-grid {
    grid-template-columns: 1fr;
  }

  .certs-grid {
    grid-template-columns: 1fr;
  }

  .empresa-stats {
    grid-template-columns: 1fr 1fr;
  }

  .oferta-pilares {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .modal-header,
  .modal-body {
    padding: 24px;
  }

  .trabaja-form,
  .contacto-form {
    padding: 28px;
  }
}

@media (max-width: 900px) {

  .impact-grid,
  .roadmap-line,
  .sust-bcorp {
    grid-template-columns: 1fr;
  }

  .sust-section {
    padding: 90px 6%;
  }
}

@media (max-height: 800px) {

  .hero-tag {
    margin-bottom: 16px;
  }

  .hero-sub {
    margin-bottom: 28px;
  }

}

@media (max-width: 768px) {

  #politicas,
  #novedades,
  #trabaja,
  #rubros,
  #contacto {
    padding-top: 90px;
  }

  .rubros-intro {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 0px;
  }

  .section-label::before {
    width: 18px;
  }

  .rubros-intro p {
    padding-bottom: 10px;
  }

  .rubros-grid {
    margin-top: 20px;
  }

  .rubros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certs-grid {
    grid-template-columns: 1fr;
  }

  .empresa-stats {
    grid-template-columns: 1fr 1fr;
  }

  .oferta-pilares {
    grid-template-columns: 1fr 1fr;
  }

  .oferta-p p {
    font-size: 14px;
  }

  .rubro-overlay {
    padding: 10px;
  }

  .rubro-name {
    font-size: 14px;
    letter-spacing: 1.px;
    margin-bottom: 2px;
  }

  .novedad-content {
    padding: 5px;
  }

  .novedad-content h3 {
    font-size: 16px;
    letter-spacing: 1.2px;
  }

  .novedades-grid p {
    display: none;
  }

  .modal-body {
    padding: 12px !important;
  }

  .modal-body p {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .footer-logo-area {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }


  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom p {
    line-height: 1.6;
  }

  .footer-brand,
  .footer-col {
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .05);
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-qr-link img {
    width: 120px;
    height: 120px;
  }

  .modal-header,
  .modal-body {
    padding: 24px;
  }

  .trabaja-form,
  .contacto-form {
    padding: 28px;
  }

  .cert-card {

    width: 100%;
    max-width: 320px;

    height: auto;
    min-height: 380px;
  }

  .pilar {
    display: flex;
    flex-direction: column;
    grid-template-rows:
      60px 1fr;
  }

  .pilar-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 10px;
  }

  .pilar h4 {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 20px;
    line-height: 1.1;
    margin: 0;
  }

  .pilar-texto {
    height: 140px;
    padding-bottom: 5px;
    display: flex;
    align-items: flex-start;
  }

  .pilar-texto p {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cert-card {
    width: min(85vw, 320px);
    aspect-ratio: 1 / 1;

    height: auto;
    min-height: unset;
  }

  .cert-inner {
    padding: 28px 20px;
  }

  .cert-logo-wrap {
    width: 75px;
    height: 75px;
  }

  .cert-desc {
    font-size: 13px;
    line-height: 1.45;
    max-height: 100px;

  }

  .cert-name {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .cert-tag {

    padding: 5px;
  }

  .cert-tag p {
    font-size: 9px;
  }

  .contacto-map-card {
    height: 280px;
  }

}


@media (max-width: 480px) {

  .hero-title,
  .hero-title-movil,
  .hero-sub,
  .hero-actions,
  .hero-tag,
  .hero-image,
  .hero-cta {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-overlay {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    display: none;
  }

  .hero-title-movil {
    display: block;
  }

  .hero-tag {
    margin-bottom: 5px;
  }

  .hero-title-movil {
    margin-bottom: 16px;
  }

  .hero-content {
    justify-content: center;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 120px;
  }

  .stat-box {
    padding: 15px;
  }

  .section-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .pilar {
    padding: 5px;
  }

  .pilar h4 {
    font-size: 12px;
    min-height: 36px;
    text-align: center;
  }

  .pilar p {
    text-align: center;
    font-size: 10px;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .cert-card {
    width: min(85vw, 280px);
    aspect-ratio: 1/1;
  }

  .cert-inner {
    padding: 28px 20px;
  }

  .cert-logo-wrap {
    width: 75px;
    height: 75px;
  }

  .cert-desc {
    font-size: 11px;
    line-height: 1.45;
    max-height: 100px;

  }

  .cert-name {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .cert-tag {
    margin-top: -15px !important;
    padding: 5px;
  }

  .cert-tag p {
    font-size: 9px;
  }

  .rubros-grid {
    grid-template-columns: 1fr;
  }
}