/* ============================================
   LANDSUR CAPITAL — Estilos Globales
   ============================================ */

:root {
  --verde-oscuro: #1a2e1f;
  --verde-medio: #008d39;
  --verde-claro: #00a650;
  --verde-dark-bg: #0c0d0e;
  --blanco: #ffffff;
  --gris-claro: #f5f5f0;
  --gris-medio: #e0e0d8;
  --gris-texto: #555550;
  --negro: #363541;
  --font-main: 'Rubik', 'Inter', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
  --sombra: 0 4px 24px rgba(0,0,0,0.10);
  --sombra-hover: 0 8px 40px rgba(0,0,0,0.18);
  --radio: 4px;
}

/* ============================================
   SELECTOR DE IDIOMA
   ============================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 1.4rem;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.lang-switcher a {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  padding: 0.25rem 0.45rem;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
}
.lang-switcher a:hover { color: var(--blanco); }
.lang-switcher a.lang-active {
  color: var(--verde-claro);
  background: rgba(0,166,80,0.12);
}
.lang-switcher .lang-sep {
  color: rgba(255,255,255,0.18);
  font-size: 0.65rem;
  user-select: none;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TIPOGRAFÍA
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; font-size: 0.97rem; }

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-verde { color: var(--verde-medio); }
.bg-oscuro { background: var(--verde-oscuro); color: var(--blanco); }
.bg-verde { background: var(--verde-medio); color: var(--blanco); }
.bg-gris { background: var(--gris-claro); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: 0.8rem;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--verde-medio);
  margin: 1rem 0 1.8rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radio);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-verde {
  background: var(--verde-medio);
  color: var(--blanco);
  border-color: var(--verde-medio);
}
.btn-verde:hover {
  background: var(--verde-oscuro);
  border-color: var(--verde-oscuro);
}
.btn-blanco {
  background: var(--blanco);
  color: var(--verde-medio);
  border-color: var(--blanco);
}
.btn-blanco:hover {
  background: transparent;
  color: var(--blanco);
  border-color: var(--blanco);
}
.btn-outline-verde {
  background: transparent;
  color: var(--verde-medio);
  border-color: var(--verde-medio);
}
.btn-outline-verde:hover {
  background: var(--verde-medio);
  color: var(--blanco);
}
.btn-outline-blanco {
  background: transparent;
  color: var(--blanco);
  border-color: var(--blanco);
}
.btn-outline-blanco:hover {
  background: var(--blanco);
  color: var(--verde-medio);
}

/* ============================================
   HEADER / NAV
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1rem 0;
}
#header.scrolled {
  background: rgba(10, 30, 15, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.6rem 0;
}
#header:not(.scrolled) {
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: var(--blanco);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.nav-logo-text span { color: var(--verde-claro); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde-claro);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--verde-claro);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blanco);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO CON VIDEO
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--verde-oscuro);
}

/* Contenedor del iframe de YouTube como fondo */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  pointer-events: none;
  border: none;
}

/* Imagen de fondo fallback (cuando no carga el video) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,15,0.82) 40%, rgba(0,100,40,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.hero-content h1 {
  color: var(--blanco);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.hero-content h1 span { color: var(--verde-claro); }
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.78);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   PILARES
   ============================================ */
#pilares { background: var(--gris-claro); padding: 70px 0; }
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.pilar-card {
  background: var(--blanco);
  padding: 2.2rem 1.8rem;
  border-radius: 6px;
  box-shadow: var(--sombra);
  border-top: 4px solid var(--verde-medio);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pilar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}
.pilar-icon {
  width: 48px;
  height: 48px;
  background: var(--verde-medio);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.pilar-icon svg { width: 24px; height: 24px; fill: var(--blanco); }
.pilar-card h3 { color: var(--verde-oscuro); margin-bottom: 0.7rem; font-size: 1.05rem; }
.pilar-card p { color: var(--gris-texto); font-size: 0.92rem; margin: 0; }

/* ============================================
   NOSOTROS (sección breve en home)
   ============================================ */
#sobre-nosotros { padding: 90px 0; }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.nosotros-img-wrap { position: relative; }
.nosotros-img-wrap img {
  border-radius: 6px;
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.nosotros-img-badge {
  position: absolute;
  bottom: -1.8rem;
  right: -1.8rem;
  background: var(--verde-medio);
  color: var(--blanco);
  padding: 1.6rem 2rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--sombra);
}
.nosotros-img-badge .num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.nosotros-img-badge .label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  opacity: 0.9;
}
.valores-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.valor-item .check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--verde-medio);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.valor-item .check svg { width: 11px; height: 11px; fill: var(--blanco); }
.valor-item span { font-size: 0.9rem; color: var(--gris-texto); font-weight: 500; }

/* ============================================
   VIDEO EMBED (sección)
   ============================================ */
.video-section { padding: 70px 0; }
.video-section.bg-verde { background: var(--verde-medio); }
.video-section.bg-oscuro { background: var(--verde-oscuro); }
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,0.3);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.video-section-header h2 { color: var(--blanco); }
.video-section-header p { color: rgba(255,255,255,0.7); max-width: 580px; margin: 0.8rem auto 0; }
.video-section-header.dark h2 { color: var(--verde-oscuro); }
.video-section-header.dark p { color: var(--gris-texto); }

/* ============================================
   ÁREAS (home preview)
   ============================================ */
#areas-preview {
  background: var(--verde-oscuro);
  padding: 90px 0;
  color: var(--blanco);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.area-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2rem 1.6rem;
  transition: background var(--transition), border-color var(--transition);
}
.area-card:hover {
  background: rgba(0,141,57,0.18);
  border-color: var(--verde-claro);
}
.area-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--verde-medio);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.9rem;
}
.area-card h3 { font-size: 1rem; margin-bottom: 0.7rem; color: var(--blanco); font-weight: 600; }
.area-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.7; }

/* ============================================
   PROYECTO PREVIEW
   ============================================ */
#proyecto-preview { padding: 90px 0; background: var(--gris-claro); }
.proyecto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.proyecto-img img {
  border-radius: 6px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.feature-list { margin-top: 1.5rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--gris-medio);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--verde-medio);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 17px; height: 17px; fill: var(--blanco); }
.feature-text h4 { color: var(--verde-oscuro); margin-bottom: 0.15rem; font-size: 0.95rem; }
.feature-text p { font-size: 0.85rem; color: var(--gris-texto); margin: 0; }

/* ============================================
   CTA BANDA
   ============================================ */
#cta-banda {
  background: var(--verde-medio);
  padding: 70px 0;
  text-align: center;
}
#cta-banda h2 { color: var(--blanco); margin-bottom: 0.9rem; }
#cta-banda p { color: rgba(255,255,255,0.82); font-size: 1rem; max-width: 520px; margin: 0 auto 2rem; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #0c0d0e;
  color: rgba(255,255,255,0.6);
  padding: 55px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo img { height: 40px; width: auto; }
.footer-brand .footer-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 0.04em;
}
.footer-brand .footer-logo-text span { color: var(--verde-claro); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 290px;
}
.footer-brand .contact-info { margin-top: 1rem; font-size: 0.86rem; }
.footer-brand .contact-info a { color: var(--verde-claro); transition: opacity var(--transition); }
.footer-brand .contact-info a:hover { opacity: 0.75; }
.footer-brand .contact-info p { color: rgba(255,255,255,0.45); margin-bottom: 0.3rem; }
.footer-col h4 {
  color: var(--blanco);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--verde-claro); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--verde-claro); }

/* ============================================
   PAGE HERO (páginas internas)
   ============================================ */
.page-hero {
  padding: 150px 0 70px;
  background: linear-gradient(135deg, var(--verde-oscuro) 0%, #0f3b1f 100%);
  text-align: center;
  color: var(--blanco);
}
.page-hero .section-label { color: var(--verde-claro); margin-bottom: 0.8rem; }
.page-hero h1 { color: var(--blanco); margin-bottom: 0.9rem; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--verde-claro); }
.breadcrumb span { color: var(--verde-claro); }

/* ============================================
   PÁGINA NOSOTROS
   ============================================ */
.mision-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.mv-card {
  padding: 2.2rem;
  border-radius: 6px;
}
.mv-card.mision { background: var(--verde-oscuro); color: var(--blanco); }
.mv-card.vision { background: var(--verde-medio); color: var(--blanco); }
.mv-card h3 { font-size: 1.4rem; margin-bottom: 0.9rem; }
.mv-card p { font-size: 0.94rem; line-height: 1.8; margin: 0; opacity: 0.88; }
.mv-card .section-label { color: rgba(255,255,255,0.6); }

.valores-page { padding: 90px 0; background: var(--verde-oscuro); color: var(--blanco); }
.valores-page-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.3rem;
  margin-top: 2.8rem;
}
.valor-page-card {
  text-align: center;
  padding: 1.8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  transition: background var(--transition), border-color var(--transition);
}
.valor-page-card:hover { background: rgba(0,141,57,0.2); border-color: var(--verde-claro); }
.valor-page-card .vicon {
  width: 52px;
  height: 52px;
  background: rgba(0,141,57,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.valor-page-card .vicon svg { width: 24px; height: 24px; fill: var(--verde-claro); }
.valor-page-card h4 { color: var(--blanco); font-size: 0.92rem; margin-bottom: 0.5rem; }
.valor-page-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.6; }

.equipo-section { padding: 90px 0; }
.equipo-intro { max-width: 680px; color: var(--gris-texto); font-size: 1rem; line-height: 1.85; }

/* ============================================
   PÁGINA PROYECTO
   ============================================ */
.proyecto-detalle { padding: 90px 0; }
.proyecto-header-card {
  background: var(--verde-oscuro);
  color: var(--blanco);
  border-radius: 10px;
  padding: 2.5rem 3rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.proyecto-header-card .p-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: var(--verde-medio);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proyecto-header-card .p-icon svg { width: 36px; height: 36px; fill: var(--blanco); }
.proyecto-header-card h2 { color: var(--blanco); margin-bottom: 0.5rem; font-size: 1.5rem; }
.proyecto-header-card p { color: rgba(255,255,255,0.7); margin: 0; line-height: 1.8; }

.diferenciadores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2.8rem;
}
.dif-card {
  padding: 1.8rem;
  background: var(--gris-claro);
  border-radius: 6px;
  border-left: 4px solid var(--verde-medio);
  transition: transform var(--transition);
}
.dif-card:hover { transform: translateX(5px); }
.dif-card h3 { color: var(--verde-oscuro); margin-bottom: 0.5rem; font-size: 1rem; }
.dif-card p { color: var(--gris-texto); font-size: 0.9rem; margin: 0; line-height: 1.7; }

/* ============================================
   PÁGINA ÁREAS DE NEGOCIOS
   ============================================ */
.areas-page { padding: 90px 0; }
.area-full-card {
  background: var(--blanco);
  border-radius: 8px;
  box-shadow: var(--sombra);
  overflow: hidden;
  display: grid;
  grid-template-columns: 70px 1fr;
  margin-bottom: 1.8rem;
  transition: box-shadow var(--transition);
}
.area-full-card:hover { box-shadow: var(--sombra-hover); }
.area-sidebar {
  background: var(--verde-medio);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.area-sidebar svg { width: 30px; height: 30px; fill: var(--blanco); }
.area-body { padding: 1.8rem 2.2rem; }
.area-body h3 { color: var(--verde-oscuro); margin-bottom: 0.5rem; font-size: 1.1rem; }
.area-body p { color: var(--gris-texto); font-size: 0.93rem; margin: 0; line-height: 1.75; }

/* ============================================
   IMAGEN + VIDEO lado a lado
   ============================================ */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}
.media-grid img {
  border-radius: 6px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ============================================
   PÁGINA CONTACTO
   ============================================ */
.contacto-section { padding: 90px 0; }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem;
  align-items: flex-start;
}
.contacto-info h3 { color: var(--verde-oscuro); margin-bottom: 0.9rem; }
.contacto-info > p { color: var(--gris-texto); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.8rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.info-item .i-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--verde-medio);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item .i-icon svg { width: 18px; height: 18px; fill: var(--blanco); }
.info-item h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--verde-medio); margin-bottom: 0.2rem; }
.info-item p, .info-item a { font-size: 0.92rem; color: var(--gris-texto); margin: 0; }
.info-item a:hover { color: var(--verde-medio); }

.form-card {
  background: var(--blanco);
  border-radius: 10px;
  box-shadow: var(--sombra);
  padding: 2.5rem;
}
.form-card h3 { color: var(--verde-oscuro); margin-bottom: 0.3rem; }
.form-card > p { color: var(--gris-texto); font-size: 0.9rem; margin-bottom: 1.8rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--verde-oscuro);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gris-medio);
  border-radius: var(--radio);
  font-family: var(--font-main);
  font-size: 0.93rem;
  color: var(--negro);
  background: var(--gris-claro);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde-medio);
  background: var(--blanco);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23008d39' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--gris-claro);
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit { margin-top: 0.4rem; }
.form-submit .btn { width: 100%; text-align: center; }
.form-success {
  display: none;
  background: #ebfbee;
  border: 1px solid #a5d6a7;
  color: #2b8a3e;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radio);
  font-size: 0.9rem;
  margin-top: 0.9rem;
}

/* ============================================
   ANIMACIONES DE ENTRADA
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   POLÍTICA DE PRIVACIDAD
   ============================================ */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 { font-size: 1.3rem; color: var(--verde-oscuro); margin: 2.2rem 0 0.7rem; }
.policy-content p, .policy-content li { color: var(--gris-texto); font-size: 0.95rem; line-height: 1.85; }
.policy-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.policy-content ul li { margin-bottom: 0.4rem; }

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .pilares-grid,
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .valores-page-grid { grid-template-columns: repeat(3, 1fr); }
  .nosotros-grid,
  .proyecto-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nosotros-img-badge { right: 1rem; bottom: -1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--verde-oscuro);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .pilares-grid,
  .areas-grid,
  .mision-vision-grid,
  .diferenciadores-grid,
  .form-row,
  .media-grid { grid-template-columns: 1fr; }
  .valores-page-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-img-wrap img { height: 280px; }
  .proyecto-header-card { flex-direction: column; text-align: center; padding: 1.8rem; }
  .area-full-card { grid-template-columns: 1fr; }
  .area-sidebar { padding: 1rem; justify-content: flex-start; gap: 0.8rem; }
  .contacto-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .lang-switcher { display: none; }
  .hero-btns { flex-direction: column; }
  .section-pad { padding: 55px 0; }
}

@media (max-width: 480px) {
  .valores-page-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.6rem; }
  .proyecto-header-card { padding: 1.4rem; }
}
