:root{
  --brand:#044936;
  --brand-600:#044936;
  --bg:#ffffff; --text:#111827; --muted:#6b7280; --line:#e5e7eb; --chip:#f0fdf4;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu; background:var(--bg); color:var(--text)}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:1120px; margin:0 auto; padding:0 16px}

/* Sections */
section{scroll-margin-top:80px}
.hero{padding:72px 0 32px}
.grid{display:grid; gap:24px}
@media(min-width:768px){ .grid-2{grid-template-columns:1fr 1fr} .grid-3{grid-template-columns:repeat(3,1fr)} }
h1{font-size:36px; line-height:1.15; margin:12px 0; font-weight:800}
@media(min-width:768px){ h1{font-size:48px} }
h2{font-size:28px; margin:0 0 6px; font-weight:800}
h3{font-size:18px; margin:0; font-weight:700}
p{color:#374151; line-height:1.6}
.small{font-size:12px}
.muted{color:var(--muted)}
.btn{display:inline-flex; align-items:center; padding:12px 18px; border-radius:16px; font-weight:600}
.btn-primary{background:var(--brand-600); color:#fff}
.btn-primary:hover{background:var(--brand)}
.btn-ghost{border:1px solid var(--line)}
.btn-light{background:#fff; color:var(--brand)}
.card{background:#fff; border:1px solid var(--line); border-radius:22px; padding:20px}
.card.soft{background:#f0e4bc}
.chip{display:inline-block; background:var(--chip); color:var(--brand); padding:6px 10px; border-radius:999px; font-weight:600; font-size:12px}
.stat{ text-align:center }
.stat .v{font-size:34px; font-weight:800}
.stat .l{font-size:12px; color:var(--muted); margin-top:4px}
.ph{background:#f3f4f6; border-radius:22px; width:100%; aspect-ratio:4/3}
.ph.square{aspect-ratio:1/1}
.ph.wide{aspect-ratio:16/9}
.section-pad{padding:64px 0}
.section-muted{background:#f9fafb; border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.hero-cta{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}
.stats{margin-top:28px}
.services-head{display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:18px}
.products{margin-top:16px}
.about-cards{margin-top:16px}
.grid-2 .card .label{font-weight:700}
/* Forms */
input, textarea{width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:14px; font:inherit}
textarea{min-height:120px; resize:vertical}
.form-grid{display:grid; gap:12px; margin-top:12px}
.details{margin-top:8px; display:grid; gap:6px}
.map{height:180px; border-radius:14px; margin-top:8px}
.inline-actions{display:flex; gap:8px; margin-top:8px}

/* Mobile menu */
.mobile-panel{display:none; border-top:1px solid var(--line); padding:12px 0}
.mobile-panel a{display:block; padding:10px 0; color:#374151}
/* CTA strip */
.cta-strip{background:var(--brand); color:#fff; padding:40px 0}
.cta-inner{display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap}
.cta-strip p{color:#efda95}
/* ===== CONTACTO EN DOS COLUMNAS ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas iguales */
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.contact-info {
  padding: 24px;
}

.contact-info p {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: #044936;
  font-size: 18px;
  min-width: 20px;
}

.inline-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr; /* una sola columna en celulares */
  }
}
.logo {
  height: 60px;
  width: auto;
}
.trigo-icon {
  width: 60px;
  height: auto;
  margin-bottom: 8px;
}
/* ===== BANNER DEL LOGO ===== */
.logo-banner {
  background: #f5f4f0; /* color suave, podés probar con #f7f5f2 o #f3f2ed */
  padding: 30px 0;
  text-align: center;
  border-bottom: 1px solid #e3e3e3;
}

.logo-header {
  max-width: 320px; /* tamaño del logo */
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
  .logo-header {
    max-width: 240px;
  }
}
/* --- Centrar el logo en la sección de banner --- */
.logo-banner {
  background: #f5f4f0; /* color suave */
  padding: 30px 0;
  border-bottom: 1px solid #e3e3e3;
  text-align: center;
}

.logo-banner .container {
  display: flex;
  justify-content: center; /* 💚 centra horizontalmente */
  align-items: center;
}

.logo-header {
  max-width: 320px; /* tamaño del logo */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* por si acaso */
}

/* ===== ENCABEZADO ===== */
header {
  background-color: #2e3b1f; /* verde oscuro corporativo */
  padding: 12px 0;
  color: #fff;
}

header .nav {
  display: flex;
  align-items: center;
  justify-content: center; /* centra todo el bloque */
  gap: 40px; /* separa logo, menú y botón */
  max-width: 1200px;
  margin: 0 auto;
}


header nav.menu {
  display: flex;
  gap: 28px; /* espacio entre enlaces */
}

header nav.menu a {
  color: #f7f5e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav.menu a:hover {
  color: #ffd56b;
}

header .actions {
  display: flex;
  align-items: center;
}

header .cta {
  background-color: #059669;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

header .cta:hover {
  background-color: #047857;
}

/* Ocultar botón hamburguesa en escritorio */
header .hamb {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  margin-left: 12px;
}

/* Responsivo */
@media (max-width: 768px) {
  header .nav {
    justify-content: space-between;
  }

  header nav.menu {
    display: none;
  }

  header .hamb {
    display: block;
  }
}
/* Opción simple: siempre uno abajo del otro */
.services-head{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.services-head h2{ margin:0 0 8px; }
.services-head p{ max-width: 70ch; } /* ancho cómodo de lectura */
.card-img{
  width:100%;
  height:180px;              /* ajustá 180–220px si querés más alto */
  object-fit:cover;          /* recorte elegante sin deformar */
  border-radius:16px;        /* combina con tus tarjetas */
    background:#f3f4f6;        /* por si tarda en cargar */
  margin-bottom:12px;
}
.hero-img {
  width: 100%;
  height: 100%;
  max-height: 420px;       /* ajustá si querés más o menos alto */
  object-fit: cover;       /* recorta sin deformar */
  border-radius: 20px;     /* esquinas suaves */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* ===== ENCABEZADO ===== */
header {
  background-color: #2e3b1f;
  color: #fff;
  padding: 10px 0;
}

header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* espacio entre menú y botón */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header .brand img.logo {
  height: 55px;
  width: auto;
}

/* Menú centrado */
header nav.menu {
  flex: 1; /* ocupa espacio flexible */
  display: flex;
  justify-content: center; /* centra los enlaces */
  gap: 32px;
}

header nav.menu a {
  color: #f7f5e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav.menu a:hover {
  color: #ffd56b;
}

/* Botón “Acceso Clientes” alineado a la derecha */
header .actions {
  display: flex;
  align-items: center;
  margin-left: auto; /* empuja hacia el extremo derecho */
}

header .cta {
  background-color: #d4af37;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

header .cta:hover {
  background-color: #eacd6f;
}

header .hamb {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  margin-left: 12px;
}

/* Responsivo */
@media (max-width: 768px) {
  header nav.menu {
    display: none;
  }

  header .hamb {
    display: block;
  }

  header .actions {
    margin-left: 0;
  }
}
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  background-color: #fff;
  color: #374151;
  appearance: none; /* quita el estilo por defecto */
  background-image: url('data:image/svg+xml;utf8,<svg fill="%236b7280" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(5,150,105,0.15);
}
/* ===== FOOTER ===== */
.footer {
  background-color: #26412B; /* verde institucional oscuro */
  color: #f7f5e8;
  padding: 40px 0 20px;
  font-size: 15px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.footer-brand {
  flex: 1 1 280px;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 12px;
}

.footer-contact {
  flex: 1 1 280px;
  line-height: 1.6;
}

.footer-contact p {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: #d4af37; /* verde claro para íconos */
  font-size: 17px;
  width: 20px;
  text-align: center;
}

.footer-social {
  flex: 1 1 120px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #f7f5e8;
  border-radius: 50%;
  color: #f7f5e8;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #d4af37;
  border-color: #d4af37;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a {
  color: #f7f5e8;
  text-decoration: none;
  margin-left: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.footer {
  background-color: #26412B; /* mantiene el verde actual */
  color: #f9f8f4; /* ← este cambia todo el texto a marfil claro */
  padding: 40px 0 20px;
  font-size: 15px;
}
/* --- FIX: forzar color claro dentro del footer --- */
.footer p,
.footer a,
.footer li,
.footer .footer-brand p,
.footer .footer-contact p {
  color: #f9f8f4; /* marfil claro */
}

.footer a:hover {
  color: #ffffff;
}

/* Opcional: que los enlaces de contacto también hereden el color claro */
.footer .footer-contact a {
  color: #f9f8f4;
  text-decoration: none;
}
.footer .footer-contact a:hover {
  text-decoration: underline;
}
/* ===== NOMBRE DE EMPRESA EN EL FOOTER ===== */
.footer-title {
  font-family: 'Poppins', 'Inter', sans-serif; /* profesional y moderna */
  font-weight: 700;
  font-size: 24px;
  color: #f9f8f4; /* marfil claro */
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-title span {
  color: #d4af37; /* dorado suave para resaltar “Vittori S.A.” */
}

/* si no tenés Poppins cargada aún */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700&display=swap');
/* Título del footer con dos líneas */
.footer-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #f9f8f4;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-title span {
  color: #d4af37; /* dorado trigo */
  font-weight: 700;
}

/* Más espacio en los márgenes inferiores del footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between; /* separa izquierda y derecha */
  align-items: center;            /* centra verticalmente */
  flex-wrap: wrap;                /* permite acomodarse en pantallas chicas */
  font-size: 14px;
  color: #f9f8f4;
  gap: 12px;                      /* espacio entre elementos si salta de línea */
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: #f9f8f4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Versión responsiva: centrado en móvil */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .footer-links {
    justify-content: center;
  }
}



/* Ajuste de los links inferiores */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #f9f8f4;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.footer-social {
  flex: 1 1 120px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #f9f8f4;
  border-radius: 50%;
  color: #f9f8f4;
  transition: all 0.3s ease;
  font-size: 18px;
}

.footer-social a:hover {
  background-color: #d4af37; /* verde brillante */
  border-color: #d4af37;
  color: #ffffff;
}
/* Sección de contacto unificada */
.contact-hero{
  background:#d4af37; /* dorado */
  color:#26412B;
  padding:36px 0 28px;
}
.contact-hero h2{ margin:0 0 6px; font-size:32px; font-weight:800; }
.contact-hero p{ color:#26412B; margin:0; }

.contact-grid{
  display:grid; gap:28px; padding:28px 0 8px;
}
@media(min-width:992px){
  .contact-grid{ grid-template-columns: 1.1fr 0.9fr; }
}

.contact-form.card, .contact-info.card{
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  background:#fff;
}

.contact-details{ margin-top:14px; display:grid; gap:8px; }
.contact-details p{
  margin:0; display:flex; align-items:center; gap:10px; color:#374151;
}
.contact-details i{ color:#d4af37; min-width:18px; text-align:center; }

/* Botones inline */
.inline-actions{ display:flex; gap:10px; margin-top:8px; }

/* Form inputs coherentes (por si falta) */
select{ width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:14px; font:inherit; background:#fff; }
select:focus{ outline:none; border-color:var(--brand); box-shadow:0 0 0 2px rgba(5,150,105,.15); }

header{
  position: sticky;
  top: 0;
  z-index: 1000;          /* por encima del contenido */
  backdrop-filter: saturate(180%) blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
/* Fondos por sección */
.bg-white { background:#ffffff; }
.bg-cream { background:#f7f5f0; }   /* marfil suave */
.bg-leaf  { background:#f1f7f3; }   /* verde muy claro */
.bg-muted { background:#f9fafb; }   /* gris claro (como section-muted) }

/* separadores finos opcionales */
.border-top { border-top:1px solid var(--line); }
.border-bot { border-bottom:1px solid var(--line); }

/* ===== LINKS DE INTERÉS ===== */
.links-grid {
  gap: 24px;
  margin-top: 24px;
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #059669;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.link-card i {
  font-size: 28px;
  color: #059669;
}

.link-card h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}

.link-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}
/* ===== LINKS DE INTERÉS ===== */
.links-grid {
  gap: 24px;
  margin-top: 24px;
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #059669;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.link-card i {
  font-size: 28px;
  color: #059669;
}

.link-card h3 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
}

.link-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .grid.grid-3.links-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PANEL DE COTIZACIONES ===== */
.dolar-panel{
  background:#fff; border:1px solid var(--line); border-radius:18px;
  padding:20px; box-shadow:0 2px 6px rgba(0,0,0,.05); max-width:480px; margin:0 auto;
}
.dolar-panel h3{ color:#0f4a35; font-size:20px; font-weight:800; margin:0 0 10px; }

.d-grid{
  display:grid; gap:10px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px){
  .d-grid{ grid-template-columns: 1fr 1fr; }
}

.d-item{
  border:1px solid var(--line); border-radius:12px; padding:10px 12px;
  display:flex; flex-direction:column; gap:6px; background:#fafafa;
}
.d-item h4{
  margin:0; font-size:14px; font-weight:800; letter-spacing:.3px; color:#111827;
  text-transform:uppercase;
}
.d-row{ display:flex; justify-content:space-between; font-size:14px; }
.d-row span{ color:#374151; }
.d-row strong{ color:#d4af37; font-weight:700; }

#dol-fecha{ display:block; margin-top:10px; color:#6b7280; font-size:12px; text-align:center; }

.sub-header {
  background: #0f4a35;
  color: #f9f8f4;
  padding: 30px 0;
  text-align: center;
}

.back-link {
  color: #f9f8f4;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 40px;
  top: 30px;
}

.catalogo-grid {
  gap: 24px;
  margin-top: 24px;
}

.catalogo-grid .card img {
  border-radius: 12px;
  margin-bottom: 10px;
}

.sep {
  margin: 40px 0;
  border: none;
  height: 1px;
  background: #ddd;
}
/* Sección links más compacta */
#links {
  padding-top: 32px;
  padding-bottom: 32px;
}

#links .container {
  max-width: 960px;        /* no ocupa taaaan ancho */
}

/* de 3 a 2 columnas para que no se disperse tanto */
.links-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.link-card {
  padding: 14px 16px;
  border-radius: 12px;
}

.link-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.link-card p {
  font-size: 13px;
}

/* en celular sigue 1 columna */
@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------
   PÁGINA LINKS DE INTERÉS
---------------------------- */

.page-hero {
  padding: 50px 0 40px;
  text-align: left;
}

.page-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-dark, #0f4a35);
}

.page-subtitle {
  margin-top: 6px;
  font-size: 15px;
  color: #475569;
}

/* Grid más compacto que en la Home */
.links-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

/* Tarjetas */
.links-page-grid .link-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: #1f2937;
  display: block;
  transition: all 0.2s ease;
}

.links-page-grid .link-card i {
  font-size: 24px;
  color: #059669;
  margin-bottom: 8px;
}

.links-page-grid .link-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.links-page-grid .link-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

.links-page-grid .link-card:hover {
  border-color: #059669;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* Tarjeta de cotizaciones más compacta */
.dolar-panel {
  max-width: 360px;
  padding: 18px 18px 16px;
  font-size: 14px;
}

/* Título un poco más chico */
.dolar-panel h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Filas de cada tipo de dólar */
.dolar-panel .d-item h4 {
  font-size: 13px;
}
.dolar-panel .d-row {
  font-size: 13px;
}

/* Alinearla más hacia la derecha y centrada */
.hero .dolar-panel {
  margin-left: auto;   /* la empuja hacia el lado derecho de su columna */
}
/* ===== MISIÓN · VISIÓN · VALORES (versión iconos) ===== */

.mvv-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.mvv-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 22px 20px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  text-align: left;
}

.mvv-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #ecfdf5;          /* verde clarito */
  color: #059669;               /* verde acento */
  font-size: 18px;
}

.mvv-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 6px;
}

.mvv-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #111827;
  margin: 0;
}

/* Responsive: en móvil se ponen una debajo de la otra */
@media (max-width: 768px) {
  .mvv-row {
    grid-template-columns: 1fr;
  }
}
/* Quiénes somos */
.qs-intro {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 8px;
  margin-bottom: 20px;
  color: #111827;
}

.qs-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* MISIÓN · VISIÓN · VALORES (iconos) */
.mvv-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 12px;
  margin-bottom: 26px;
}

.mvv-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 20px 18px 18px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.mvv-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #ecfdf5;
  color: #059669;
  font-size: 18px;
}

.mvv-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 6px;
}

.mvv-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #111827;
  margin: 0;
}

/* Tarjeta "Nuestra brújula" */
.brujula-card {
  margin-top: 8px;
  padding: 22px 22px 20px;
}

.brujula-card h3 {
  margin-bottom: 4px;
}

/* Píldoras internas */
.brujula-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.bru-pill {
  background: #f5e6b8;
  border-radius: 18px;
  padding: 12px 14px;
}

.bru-pill h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.bru-pill p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 900px) {
  .mvv-row {
    grid-template-columns: 1fr;
  }

  .brujula-grid {
    grid-template-columns: 1fr;
  }
}
.is-hidden {
  display: none;
}
/* Grilla de servicios 2x2 */
.services-grid{
  
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 18px;
}

.service-card h3{
  margin: 10px 0 6px;
}

.service-card p{
  margin: 0;
  color: #6b7280;
  line-height: 1.5;
}

.is-hidden{ display: none !important; }

/* Responsive */
@media (max-width: 900px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}
.services-head{
  max-width: 720px;
  margin-bottom: 32px;
}

.services-head h2{
  margin: 0 0 8px;
}

.services-head p{
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.services-head{
  max-width: 720px;
  margin-bottom: 28px;
}
.services-head h2{ margin:0 0 8px; }
.services-head p{ margin:0; max-width:70ch; color:#6b7280; line-height:1.6; }
