:root {
  --green-dark:  #1a5c2e;   /* Verde oscuro: botones activos, encabezados */
  --green-main:  #2d8a4e;   /* Verde principal: color dominante de la marca */
  --green-light: #3aaa60;   /* Verde claro: hovers, acentos decorativos */
  --green-pale:  #e8f5ee;   /* Verde muy suave: fondos de sección */

  --black:       #0d0d0d;   /* Negro profundo: fondo del footer */
  --gray-dark:   #1c1c1c;   /* Gris oscuro: fondo de la sección MVV */
  --gray-mid:    #3a3a3a;   /* Gris medio: tarjetas de MVV */
  --gray-light:  #f4f4f2;   /* Gris muy claro: fondos alternos */
  --white:       #ffffff;   /* Blanco puro */

  --text-body:   #2a2a2a; /*color principal del cuerpo (texto)*/
  --nav-h:       80px;
} 

.contact-banner {
  width: 100%;
  min-height: 320px;
  margin-top: var(--nav-h);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 60%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.contact-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,0.15);
}

.contact-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 3%;
}

.contact-banner-content .hero-eyebrow {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  animation: none;
}

.contact-banner-title {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(1.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-banner-title span {
  color: rgba(255,255,255,0.55);
}

.contact-banner-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

#contacto-info {
  background: var(--white);
  padding: 80px 3%;
}

.contacto-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contacto-imagen-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  height: 520px;
}

.contacto-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}

.contacto-imagen-wrap:hover .contacto-imagen {
  transform: scale(1.03);
}

.contacto-imagen-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.contacto-imagen-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 100%);
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 32px 18px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.contacto-imagen-caption svg {
  flex-shrink: 0;
  color: var(--green-light);
}

@media (max-width: 900px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contacto-imagen-wrap {
    height: 340px;
  }
}

@media (max-width: 600px) {
  .contact-banner-title { font-size: 2.4rem; }
  .contacto-imagen-wrap { height: 260px; }
}

.banner-img-container { width: 100%; height: 100%; }
.banner-img-real { width: 100%; height: 100%; object-fit: cover; display: block; }

.contacto-imagen-wrap {
  cursor: zoom-in;
}

.lightbox-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  z-index: 3;
  background: rgba(26, 92, 46, 0.88);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

.contacto-imagen-wrap:hover .lightbox-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: lightboxIn 0.3s ease both;
}

@keyframes lightboxIn {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-img {
  max-width: 95vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox-caption {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.lightbox-caption svg {
  color: var(--green-light);
  flex-shrink: 0;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 10000;
}

.lightbox-close:hover {
  background: var(--green-dark);
  transform: rotate(90deg);
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img, video {
  max-width: 100%;
  height: auto;
}

.conocenos-grid > *,
.beneficios-inner > *,
.encuentranos-inner > *,
.mvv-grid > *,
.declaracion-inner > *,
.metricas-inner > *,
.pilares-grid > *,
.practicas-list > *,
.footer-grid > *,
.contacto-grid > *,
.video-section-inner > * {
  min-width: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

@font-face {
    font-family: 'FuenteLogo';
    src: url('FONT/VENUS-RISING-REGULAR.otf') format('opentype');
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}


nav {
  position: fixed;         
  top: 0; left: 0; right: 0;
  height: var(--nav-h);    
  display: flex;           
  align-items: center;     
  justify-content: space-between; 
  padding: 0 3%;           
  z-index: 1000;           
  transition: background 0.4s, box-shadow 0.4s; 
}


nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none; 
}


.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1); 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none; 
}

.nav-links a {
  display: inline-block;
  padding: 8px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: color 0.2s, background 0.2s; 
}

.nav-links a:hover {
  color: var(--green-light);
}

.nav-links .btn-contact {
  background: var(--green-main);    
  color: var(--white) !important;   
  border-radius: 3px;
  padding: 9px 22px;
  transition: background 0.2s, transform 0.15s;
}

.nav-links .btn-contact:hover {
  background: var(--green-light);
  transform: translateY(-1px); 
}

.hamburger {
  display: none;           
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}


#hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.hero-video-wrap {
  position: absolute; 
  inset: 0;           
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.72) 0%,
    rgba(20,60,35,0.55) 60%,
    rgba(10,10,10,0.70) 100%
  );
}


.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 5%;
  max-width: 960px;
  width: 100%;
  animation: fadeUp 1.1s ease both;
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); } 
  to   { opacity: 1; transform: translateY(0); }    
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--green-light);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeUp 1.1s 0.2s ease both;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}


.hero-title {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 24px;
  transform: scaleY(0.95);
}

.hero-title span {
  color: var(--green-light);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  width: 100%;
  margin: 0 auto 36px;
  line-height: 1.6;
  animation: fadeUp 1.1s 0.5s ease both;
}


.hero-cta {
  display: inline-block;
  background: var(--green-main);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
  animation: fadeUp 1.1s 0.65s ease both;
}

.hero-cta:hover {
  background: var(--green-light);
  transform: translateY(-2px); 
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite; 
}


.scroll-indicator::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}


@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

section {
  padding: 100px 3%;
}

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--green-main);
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--green-main);
  margin-bottom: 32px;
}


#conocenos {
  background: var(--white);
}

.conocenos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}

.conocenos-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
}


.stats-row {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1 1 120px;
  min-width: 100px;
}


.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-main);
  line-height: 1;
}


.stat-label {
  font-size: 1.05rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}


.conocenos-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.visual-main {
  width: 100%;
  aspect-ratio: 16/10; 
  border-radius: 4px;
  overflow: hidden;
  background: var(--gray-dark); 
  position: relative;
}

.visual-main img,
.visual-main video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.visual-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


.visual-pair .img-block {
  aspect-ratio: 4/3; 
  border-radius: 4px;
  overflow: hidden;
  background: #ccc;
}

.visual-pair .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Recuadro .section-label {
display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--green-main);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.mvv-section {
  background: var(--gray-dark); 
  padding: 80px 3%;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2px;                              
  max-width: 1440px;
  margin: 48px auto 0;
}

.mvv-card {
  background: var(--gray-mid);
  padding: 48px 36px;
  position: relative;    
  overflow: hidden;
  transition: background 0.3s;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;              
  background: var(--green-light);
  transition: height 0.4s; 
}

.mvv-card:hover {
  background: #2c2c2c;
}

.mvv-card:hover::before {
  height: 100%;
}

.mvv-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--green-light);
}

.mvv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.mvv-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65); 
  line-height: 1.7;
}

.mvv-section .section-title {
  color: var(--white);
}
.mvv-section .section-label {
  color: var(--green-light);
}

#beneficios {
  background: var(--green-pale); 
}


.beneficios-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.benefits-list {
  list-style: none; 
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.5;
}

.benefits-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;     
  background: var(--green-main);
  margin-top: 7px;
}


.chem-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.05rem;
  margin-top: 24px;
}


.chem-table th {
  background: var(--green-main); 
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}


.chem-table td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  color: #444;
}


.chem-table tr:nth-child(even) td {
  background: rgba(45,138,78,0.06);
}

#encuentranos {
  background: var(--white);
}


.encuentranos-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  width: 100%;
}

.location-info {
  min-width: 0;
}

.location-info p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--green-main);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; 
}

.info-icon svg {
  color: var(--white);
  width: 20px;
  height: 20px;
}

.info-text strong {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-main);
  margin-bottom: 2px;
}

.info-text span {
  font-size: 1.05rem;
  color: #444;
}

.map-embed {
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
  width: 100%;
  cursor: zoom-in;
  position: relative;
}

.map-embed img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.map-embed:hover img {
  transform: scale(1.03);
}


footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 60px 3% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto 48px;
}

.footer-brand img {
  height: 56px;
  filter: brightness(0) invert(1); 
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--green-light);
}

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-col .contact-item svg {
  flex-shrink: 0;
  color: var(--green-light);
  margin-top: 2px;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.3);
}

.contact-page {
  min-height: 100vh;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 3%;
}

.contact-header {
  width: 100%;
  max-width: 640px;
  background: var(--green-dark);
  padding: 36px 40px 30px;
  border-radius: 6px 6px 0 0; 
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--white);
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.contact-header h1 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

.contact-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-top: 8px;
}

.contact-body {
  width: 100%;
  max-width: 640px;
  background: var(--white);
  padding: 40px;
  border-radius: 0 0 6px 6px; 
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  color: var(--text-body);
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  outline: none; 
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-main);
  background: var(--white);
}

.form-group textarea {
  resize: vertical; 
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-main);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;         
  border-radius: 3px;
  cursor: pointer;     
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  background: #aaa;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;        
  text-align: center;
  padding: 40px 20px;
}

.form-success .check {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: #666;
  font-size: 1.05rem;
}

.form-note {
  font-size: 1.05rem;
  color: #999;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.form-note a {
  color: var(--green-main);
  text-decoration: none;
}

@media (max-width: 900px) {

  .conocenos-grid,
  .beneficios-inner,
  .encuentranos-inner,
  .mvv-grid,
  .footer-grid,
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .map-embed {
    height: 300px;
  }

  .mvv-grid {
    gap: 2px;
  }
  .mvv-card {
    padding: 36px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    padding: 20px 5%;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .nav-links .btn-contact {
    text-align: center;
    margin-top: 8px;
    border-bottom: none;
  }

  nav {
    background: rgba(10,10,10,0.96);
  }

  .conocenos-visual {
    width: 100%;
  }
  .visual-main {
    aspect-ratio: 16/9;
  }

  .beneficios-inner > div:last-child {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .chem-table {
    min-width: 420px;
  }

  section {
    padding: 72px 5%;
  }

  .historia-hero,
  .ambiente-hero {
    height: 55vh;
    height: 55dvh;
    min-height: 340px;
    padding: 0 5% 44px;
  }

  .contact-banner {
    min-height: 260px;
  }
  .contact-banner-content {
    padding: 48px 5%;
  }

  .contacto-imagen-wrap {
    height: 300px;
  }

  .video-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
  }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content {
    grid-column: 2;
    text-align: left;
  }
  .timeline-item:nth-child(odd) .tl-dot,
  .timeline-item:nth-child(even) .tl-dot {
    grid-column: 1;
  }
  .timeline-item:nth-child(odd) .tl-empty,
  .timeline-item:nth-child(even) .tl-empty {
    display: none;
  }
  .tl-dot {
    justify-content: flex-start;
  }
  .tl-content {
    padding: 0 0 0 16px;
  }
}

@media (max-width: 600px) {

  html { font-size: 15px; }

  section {
    padding: 60px 5%;
  }

  #hero {
    min-height: 500px;
  }
  .hero-title {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    white-space: normal;
    text-align: center;
  }
  .hero-cta {
    padding: 13px 28px;
    font-size: 0.95rem;
  }
  .scroll-indicator {
    display: none;
  }

  .conocenos-grid { gap: 32px; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.8rem; }
  .stats-row { gap: 16px; }

  .mvv-section { padding: 60px 5%; }
  .mvv-card { padding: 32px 22px; }

  .beneficios-inner { gap: 32px; }

  .map-embed { height: 240px; }
  .encuentranos-inner { gap: 32px; }

  .footer-grid { gap: 32px; }
  .footer-brand p { max-width: 100%; }

  .contact-body { padding: 24px 18px; }
  .contact-header { padding: 24px 18px 20px; }

  .historia-hero,
  .ambiente-hero {
    height: 50vh;
    height: 50dvh;
    min-height: 300px;
    padding: 0 5% 36px;
    align-items: flex-end;
  }
  .historia-hero-content h1,
  .ambiente-hero-content h1 {
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 1;
  }
  .historia-hero-content p,
  .ambiente-hero-content p {
    font-size: 0.95rem;
    margin-top: 12px;
  }

  .contact-banner { min-height: 220px; }
  .contact-banner-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .contact-banner-content { padding: 40px 5%; }
  .contacto-imagen-wrap { height: 220px; }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-title,
  .ambiente-hero-content h1,
  .historia-hero-content h1,
  .contact-banner-title,
  .declaracion-text h2,
  .pilares-header h2,
  .metricas-text h2,
  .practicas-header h2,
  .founders-header h1,
  .video-text h1 {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .beneficios-inner > div:last-child {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .chem-table th,
  .chem-table td {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .video-section { padding: 60px 5%; }
  .founders-section { padding: 60px 5%; }
  .timeline-section { padding: 60px 5%; }

  .declaracion-section, .pilares-section,
  .metricas-section, .practicas-section { padding: 60px 5%; }
  .metricas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .practicas-list { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: 1fr; }
  .pilar-card { padding: 32px 20px; }
  .declaracion-visual img { height: 220px; }
  .declaracion-inner { gap: 32px; }
}

@media (max-width: 390px) {
  html { font-size: 14px; }
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .stats-row {
    justify-content: space-between;
  }
  .stat-item {
    flex: 1 1 80px;
  }
  .map-embed { height: 200px; }
}



.historia-hero {
  position: relative;
  height: 60vh;
  height: 60dvh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 5% 56px;
}

.historia-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,10,10,0.85) 0%, rgba(20,60,35,0.6) 60%, rgba(10,10,10,0.8) 100%),
    url('MULTIMEDIA/4.png') center/cover no-repeat;
  z-index: 0;
}

.historia-hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease both;
  max-width: 100%;
  width: 100%;
}

.historia-hero-content .hero-eyebrow {
  margin-bottom: 16px;
}

.historia-hero-content h1 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.01em;
  max-width: 100%;
}

.historia-hero-content h1 span {
  color: var(--green-light);
}

.historia-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-top: 18px;
  line-height: 1.65;
}

.video-section {
  background: var(--gray-dark);
  padding: 90px 4%;
}

.video-section-inner {
  max-width: 1440px; 
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr; 
  gap: 60px;
  align-items: center;
}

.video-text .section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--green-main);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.video-text h1 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.video-text h2 span {
  color: var(--green-light);
}

.video-text .divider {
  width: 48px;
  height: 3px;
  background: var(--green-main);
  margin-bottom: 20px;
}

.video-text p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-size: 1rem; 
  margin-bottom: 20px; 
}

.video-player-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(58,170,96,0.2);
}

.video-player-wrap video {
  width: 100%;
  display: block;
  background: #000;
}

.video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-main);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.founders-section {
  background: var(--green-pale);
  padding: 90px 4%;
}

.founders-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.founders-header {
  text-align: center;
  margin-bottom: 50px;
}

.founders-header .section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-main);
  border: 1px solid var(--green-main);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.founders-header h1 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.founders-header h1 span { color: var(--green-main); }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.founder-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid var(--green-main);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 3px solid var(--green-main);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto; 
  overflow: hidden;
  flex-shrink: 0;
}

.founder-avatar svg {
  width: 52px;
  height: 52px;
  color: var(--green-main);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid var(--green-main);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-dark);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-main);
  margin-bottom: 14px;
}

.founder-bio {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.65;
  text-align: justify;
}

@media (max-width: 900px) {
  .video-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
  }

  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content {
    grid-column: 2;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .tl-dot,
  .timeline-item:nth-child(even) .tl-dot {
    grid-column: 1;
  }

  .timeline-item:nth-child(odd) .tl-empty,
  .timeline-item:nth-child(even) .tl-empty {
    display: none;
  }

  .tl-dot {
    justify-content: flex-start;
  }

  .tl-content {
    padding: 0 0 0 16px;
  }
}

@media (max-width: 600px) {
  .historia-hero { padding: 0 5% 50px; }
  .video-section,
  .timeline-section,
  .founders-section { padding: 70px 5%; }
}


.ambiente-hero {
  position: relative;
  height: 65vh;
  height: 65dvh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 5% 56px;
  box-sizing: border-box;
  width: 100%;
}

.ambiente-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,40,20,0.9) 0%, rgba(20,80,40,0.7) 50%, rgba(10,10,10,0.85) 100%),
    url('MULTIMEDIA/5.png') center/cover no-repeat;
  z-index: 0;
}

.ambiente-hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease both;
  max-width: 100%;
  width: 100%;
}

.ambiente-hero-content .hero-eyebrow { margin-bottom: 16px; }

.ambiente-hero-content h1 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.01em;
  max-width: 100%;
}

.ambiente-hero-content h1 span { color: var(--green-light); }

.ambiente-hero-content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 540px;
  margin-top: 18px;
  line-height: 1.65;
}

.hero-accent-bar {
  width: 80px;
  height: 4px;
  background: var(--green-light);
  margin: 20px 0 0;
  border-radius: 2px;
}

.declaracion-section {
  background: var(--white);
  padding: 90px 4%;
}

.declaracion-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.declaracion-text .section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-main);
  border: 1px solid var(--green-main);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.declaracion-text h2 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-dark);
  line-height: 1.05;
  margin-bottom: 16px;
}

.declaracion-text h2 span { color: var(--green-main); }

.declaracion-text .divider {
  width: 48px; height: 3px;
  background: var(--green-main);
  margin-bottom: 20px;
}

.declaracion-text p {
  color: #555;
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.quote-block {
  border-left: 4px solid var(--green-main);
  padding: 16px 22px;
  background: var(--green-pale);
  border-radius: 0 6px 6px 0;
  margin-top: 24px;
}

.quote-block p {
  color: var(--green-dark) !important;
  font-style: italic;
  font-size: 1rem !important;
  font-weight: 500;
  margin: 0 !important;
}

.declaracion-visual {
  position: relative;
  width: 100%;
}

.declaracion-visual img {
  width: 100%;
  margin-left: 0;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 6px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.eco-badge .badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.eco-badge .badge-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.pilares-section {
  background: var(--gray-dark);
  padding: 90px 4%;
}

.pilares-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.pilares-header {
  text-align: center;
  margin-bottom: 56px;
}

.pilares-header .section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid var(--green-main);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.pilares-header h2 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

.pilares-header h2 span { color: var(--green-light); }

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pilar-card {
  background: var(--gray-mid);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.pilar-card:hover {
  background: #2a2a2a;
}

.pilar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.pilar-card:hover::before {
  transform: scaleX(1);
}

.pilar-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(58,170,96,0.07);
  line-height: 1;
  user-select: none;
}

.pilar-icon {
  width: 52px;
  height: 52px;
  color: var(--green-light);
  margin-bottom: 20px;
}

.pilar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.pilar-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.metricas-section {
  background: var(--green-pale);
  padding: 80px 4%;
}

.metricas-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.metricas-text .section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-main);
  border: 1px solid var(--green-main);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.metricas-text h2 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.metricas-text p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

.metricas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.metrica-item {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--green-main);
}

.metrica-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-main);
  line-height: 1;
  margin-bottom: 6px;
}

.metrica-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
}

.metrica-desc {
  font-size: 1.05rem;
  color: #999;
  margin-top: 6px;
  line-height: 1.5;
}

.practicas-section {
  background: var(--white);
  padding: 90px 4%;
}

.practicas-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.practicas-header {
  margin-bottom: 50px;
}

.practicas-header .section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-main);
  border: 1px solid var(--green-main);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.practicas-header h2 {
  font-family: 'FuenteLogo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.practicas-header h2 span { color: var(--green-main); }

.practicas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.practica-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.practica-item:hover {
  border-color: var(--green-light);
  box-shadow: 0 4px 20px rgba(45,138,78,0.08);
}

.practica-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.practica-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--green-main);
}

.practica-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.practica-content p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .declaracion-inner,
  .metricas-inner { grid-template-columns: 1fr; gap: 40px; }

  .pilares-grid { grid-template-columns: 1fr; gap: 2px; }

  .practicas-list { grid-template-columns: 1fr; }

  .metricas-grid { grid-template-columns: repeat(2, 1fr); }

  .eco-badge { bottom: -16px; }

  .declaracion-visual img { height: 320px; }
}

@media (max-width: 600px) {
  .ambiente-hero { padding: 0 5% 44px; }
  .declaracion-section, .pilares-section,
  .metricas-section, .practicas-section { padding: 60px 5%; }
  .metricas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .declaracion-visual img { height: 240px; }
  .ambiente-hero-content h1 { font-size: clamp(2.2rem, 9vw, 4rem); }
  .pilares-grid { grid-template-columns: 1fr; }
  .pilar-card { padding: 32px 22px; }
}

