:root {
  --negro: #0e0e0e;
  --blanco: #ffffff;
  --oro: #13e8b0;
  --oro-osc: #0fc79a;
  --purpura: #833ca3;
  --purpura-claro: #a355c6;
  --gris-texto: #6b6b6b;
  --gris-suave: #f6f6f4;
  --gris-borde: #e7e7e3;
  --borde-radio: 14px;
  --borde-radio-chico: 10px;
  --sombra: 0 20px 50px rgba(14, 14, 14, 0.10);
  --sombra-chica: 0 8px 24px rgba(14, 14, 14, 0.07);
  --max-ancho: 1200px;
  --grad-oro: linear-gradient(135deg, #13e8b0 0%, #0aa97f 100%);
  --grad-purpura: linear-gradient(135deg, #833ca3 0%, #5b2a86 100%);
  --fuente-display: 'Roboto Slab', Georgia, serif;
  --fuente-texto: 'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --dur: 0.6s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--fuente-texto);
  font-size: 16px;
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { margin: 0; font-family: var(--fuente-display); }
img { max-width: 100%; display: block; }

.contenedor { max-width: var(--max-ancho); margin: 0 auto; padding: 0 24px; }

/* Animaciones de entrada estilo aquilohay (Elementor / animate.css) */
.reveal { opacity: 0; }
.reveal.en-vista {
  opacity: 1;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease;
  animation-name: fadeInUp;
}
/* variantes por tipo de elemento */
.reveal.izq.en-vista { animation-name: slideInLeft; }
.reveal.der.en-vista { animation-name: slideInRight; }
.reveal.baja.en-vista { animation-name: fadeInDown; }
.reveal.zoom.en-vista { animation-name: zoomIn; }

/* escalonado dentro de grupos */
.reveal-grupo .reveal:nth-child(1) { animation-delay: 0s; }
.reveal-grupo .reveal:nth-child(2) { animation-delay: 0.12s; }
.reveal-grupo .reveal:nth-child(3) { animation-delay: 0.24s; }
.reveal-grupo .reveal:nth-child(4) { animation-delay: 0.36s; }
.reveal-grupo .reveal:nth-child(5) { animation-delay: 0.48s; }
.reveal-grupo .reveal:nth-child(6) { animation-delay: 0.60s; }
.reveal-grupo .reveal:nth-child(7) { animation-delay: 0.72s; }
.reveal-grupo .reveal:nth-child(8) { animation-delay: 0.84s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 60px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0, -50px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translate3d(-70px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translate3d(70px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale3d(0.85, 0.85, 0.85); }
  50% { opacity: 1; }
  to { opacity: 1; transform: none; }
}

@keyframes flotar { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes entrarArriba { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
@keyframes entrarAbajo { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.en-vista { opacity: 1 !important; transform: none !important; }
  .hero h1 .palabra { opacity: 1 !important; transform: none !important; }
  * { animation: none !important; }
}

.icono-svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Placeholder de imagen */
.img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--borde-radio);
  background: repeating-linear-gradient(45deg, #efefec, #efefec 10px, #f7f7f5 10px, #f7f7f5 20px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--gris-texto); font-size: 0.8125rem; padding: 12px; border: 1px dashed #cfcfc7;
}
.img-placeholder.hero { aspect-ratio: 3/4; }
.img-placeholder.logo { aspect-ratio: 2/1; background: var(--gris-suave); border-radius: var(--borde-radio-chico); }

/* Header */
.encabezado {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gris-borde);
  animation: entrarArriba 0.7s ease both;
}
.barra-superior { background: var(--negro); color: rgba(255,255,255,0.82); font-size: 0.8125rem; }
.barra-superior-int { display: flex; align-items: center; justify-content: flex-end; gap: 28px; padding: 9px 24px; }
.bs-dato { display: inline-flex; align-items: center; gap: 7px; }
.bs-dato .icono-svg { width: 15px; height: 15px; stroke: var(--oro); }

.barra-nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.logo-texto { font-family: var(--fuente-display); font-size: 1.375rem; font-weight: 800; color: var(--negro); text-decoration: none; letter-spacing: -0.01em; }
.logo-texto span { color: var(--purpura); }
.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }

.menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.menu a { position: relative; text-decoration: none; color: var(--negro); font-weight: 500; font-size: 0.9375rem; padding-bottom: 3px; }
.menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--oro-osc); transition: right 0.25s ease; }
.menu a:hover::after { right: 0; }

.selector-idioma {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; border-radius: 999px;
  border: 1.5px solid var(--gris-borde); color: var(--negro); text-decoration: none;
  font-weight: 600; font-size: 0.8125rem; margin-right: 12px; transition: all 0.2s;
}
.selector-idioma:hover { border-color: var(--negro); transform: translateY(-1px); }
.selector-idioma .bandera { font-size: 1rem; }

.btn-menu-movil { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--negro); }

.btn {
  display: inline-block; padding: 15px 30px; border-radius: var(--borde-radio-chico);
  font-weight: 700; text-decoration: none; font-size: 0.9375rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, color 0.2s;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primario { background: var(--negro); color: var(--blanco); }
.btn-primario:hover { transform: translateY(-3px); box-shadow: var(--sombra-chica); background: var(--purpura); }
.btn-oro { background: var(--oro); color: var(--negro); }
.btn-oro:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(19,232,176,0.4); }
.btn-secundario { background: transparent; color: var(--negro); border-color: var(--negro); }
.btn-secundario:hover { background: var(--negro); color: var(--blanco); transform: translateY(-3px); }

/* Hero */
.hero { background: var(--negro); color: var(--blanco); padding: 76px 0 0; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(131,60,163,0.55) 0%, transparent 70%); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -140px; left: -100px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(19,232,176,0.20) 0%, transparent 70%); pointer-events: none;
}
.hero .contenedor { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; z-index: 1; }
.hero-texto { animation: entrarAbajo 0.8s 0.1s cubic-bezier(.16,.8,.3,1) both; padding-bottom: 76px; }
.hero-etiqueta {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); padding: 8px 16px; border-radius: 999px;
  font-size: 0.8125rem; font-weight: 600; color: var(--oro); margin-bottom: 22px;
}
.hero-etiqueta::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--oro); }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 22px; font-weight: 800; }
.hero h1 .palabra { display: inline-block; opacity: 0; will-change: transform, opacity; }
.hero h1 .palabra.animar { animation: palabraIzq 0.75s cubic-bezier(.16,.85,.3,1) forwards; }
.hero h1 .palabra.animar.der { animation-name: palabraDer; }
@keyframes palabraIzq {
  from { opacity: 0; transform: translate3d(-90px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes palabraDer {
  from { opacity: 0; transform: translate3d(90px, 0, 0); }
  to { opacity: 1; transform: none; }
}
.hero h1 em { font-style: normal; background: var(--grad-oro); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.15rem; line-height: 1.6; color: rgba(255,255,255,0.78); margin-bottom: 32px; max-width: 520px; }
.hero-botones { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-imagen { animation: entrarAbajo 0.8s 0.25s cubic-bezier(.16,.8,.3,1) both; align-self: center; padding-bottom: 76px; }
.hero-imagen .img-placeholder { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
.mapa-caja { position: relative; text-align: center; }
.mapa-hero { width: 100%; max-width: 460px; height: auto; margin: 0 auto; display: block; animation: flotar 6s ease-in-out infinite; }
.mapa-nota { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.mapa-punto { width: 11px; height: 11px; border-radius: 3px; background: var(--oro); box-shadow: 0 0 0 0 rgba(19,232,176,0.6); animation: latido 2.4s ease-in-out infinite; }
@keyframes latido { 0%,100%{ box-shadow: 0 0 0 0 rgba(19,232,176,0.55); } 50%{ box-shadow: 0 0 0 6px rgba(19,232,176,0); } }

.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-stats .stat { flex: 1; padding: 22px 0; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat b { display: block; font-family: var(--fuente-display); font-size: 1.75rem; font-weight: 800; color: var(--oro); }
.hero-stats .stat span { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }

/* Secciones */
section { padding: 92px 0; }
.seccion-alt { background: var(--gris-suave); }
.titulo-seccion { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.titulo-seccion .etiqueta { display: inline-flex; align-items: center; gap: 8px; color: var(--purpura); font-weight: 700; text-transform: uppercase; font-size: 0.8125rem; letter-spacing: 0.06em; }
.titulo-seccion .etiqueta::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--oro-osc); }
.titulo-seccion h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); margin: 12px 0 12px; color: var(--negro); font-weight: 800; letter-spacing: -0.015em; }
.titulo-seccion p { color: var(--gris-texto); font-size: 1.0625rem; }

/* Etiquetas en amarillo (igual que "Alcance") */
#sobre-mi .sobre-texto .etiqueta,
#rubros .titulo-seccion .etiqueta,
#marcas .titulo-seccion .etiqueta,
#razones .titulo-seccion .etiqueta,
#contacto .contacto-info .etiqueta { color: var(--oro-osc); }

/* Sobre / más que un proveedor */
.sobre { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sobre-img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; border-radius: var(--borde-radio); box-shadow: var(--sombra); }
.sobre-texto .etiqueta { display: inline-flex; align-items: center; gap: 8px; color: var(--purpura); font-weight: 700; text-transform: uppercase; font-size: 0.8125rem; letter-spacing: 0.06em; }
.sobre-texto .etiqueta::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--oro-osc); }
.sobre h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); color: var(--negro); font-weight: 800; letter-spacing: -0.015em; margin: 12px 0 16px; }
.sobre-texto > p { font-size: 1.0625rem; color: var(--gris-texto); }
.lista-check { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.lista-check li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; font-size: 0.9688rem; }
.lista-check li::before { content: "✓"; background: var(--grad-oro); color: var(--negro); width: 24px; height: 24px; min-width: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; }

/* Rubros / categorías */
.grid-rubros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tarjeta-rubro { background: var(--blanco); border: 1px solid var(--gris-borde); border-radius: var(--borde-radio); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s; }
.tarjeta-rubro:hover { transform: translateY(-8px); box-shadow: var(--sombra); border-color: transparent; }
.tarjeta-rubro .rubro-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.tarjeta-rubro .contenido { padding: 26px; }
.tarjeta-rubro .icono-rubro { width: 56px; height: 56px; border-radius: 14px; background: var(--negro); color: var(--oro); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tarjeta-rubro h3 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 700; color: var(--negro); }
.tarjeta-rubro p { margin: 0; color: var(--gris-texto); font-size: 0.9375rem; }

/* Marcas */
.marcas-banner { text-align: center; }
.marcas-grupo { margin-top: 44px; }
.marcas-sub { display: inline-flex; align-items: center; gap: 12px; font-family: var(--fuente-display); font-size: 1.05rem; font-weight: 700; color: var(--negro); margin: 0 0 22px; }
.marcas-sub::before, .marcas-sub::after { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--oro); }
.grid-marcas { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 8px; }
.tarjeta-marca { flex: 0 1 168px; background: var(--blanco); border: 1px solid var(--gris-borde); border-radius: var(--borde-radio-chico); padding: 22px; display: flex; align-items: center; justify-content: center; min-height: 116px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.tarjeta-marca:hover { transform: translateY(-4px); box-shadow: var(--sombra-chica); }
.tarjeta-marca img { max-width: 100%; max-height: 58px; width: auto; object-fit: contain; }
.marca-texto { font-family: var(--fuente-display); font-weight: 800; text-align: center; color: var(--negro); line-height: 1.25; }

/* Por qué elegirnos */
.grid-razones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tarjeta-razon { background: var(--blanco); border-radius: var(--borde-radio); box-shadow: var(--sombra-chica); padding: 30px 24px; text-align: left; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.tarjeta-razon:hover { transform: translateY(-8px); box-shadow: var(--sombra); }
.tarjeta-razon .icono { width: 54px; height: 54px; border-radius: 14px; background: var(--gris-suave); color: var(--purpura); display: flex; align-items: center; justify-content: center; margin: 0 0 18px; transition: all 0.2s ease; }
.tarjeta-razon:hover .icono { background: var(--purpura); color: var(--blanco); }
.tarjeta-razon h3 { font-size: 1.0625rem; font-weight: 700; margin: 0 0 8px; color: var(--negro); }
.tarjeta-razon p { font-size: 0.9rem; color: var(--gris-texto); margin: 0; }

/* Cobertura */
.cobertura { background: var(--negro); color: var(--blanco); }
.cobertura .titulo-seccion h2 { color: var(--blanco); }
.cobertura .titulo-seccion p { color: rgba(255,255,255,0.65); }
.cobertura .titulo-seccion .etiqueta { color: var(--oro); }
.grid-paises { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.grid-paises .chip-pais { flex: 0 1 220px; }
.chip-pais { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--borde-radio-chico); padding: 20px 10px; text-align: center; font-weight: 500; font-size: 0.9375rem; transition: all 0.2s ease; }
.chip-pais:hover { background: var(--oro); color: var(--negro); transform: translateY(-3px); border-color: var(--oro); }

/* Contacto */
.contacto { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contacto-info .etiqueta { display: inline-flex; align-items: center; gap: 8px; color: var(--purpura); font-weight: 700; text-transform: uppercase; font-size: 0.8125rem; letter-spacing: 0.06em; }
.contacto-info .etiqueta::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--oro-osc); }
.contacto-info h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); color: var(--negro); font-weight: 800; letter-spacing: -0.015em; margin: 12px 0 16px; }
.contacto-info > p { font-size: 1.0625rem; color: var(--gris-texto); }
.dato-contacto { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.dato-contacto .icono { width: 48px; height: 48px; min-width: 48px; border-radius: 14px; background: var(--negro); color: var(--oro); display: flex; align-items: center; justify-content: center; }
.dato-contacto strong { display: block; font-size: 0.8125rem; color: var(--gris-texto); font-weight: 500; }
.dato-contacto span { font-weight: 700; font-size: 1rem; color: var(--negro); }

/* Bloque de teléfonos */
.tel-bloque { display: flex; flex-direction: column; gap: 8px; }
.tel-bloque strong { margin-bottom: 2px; }
.tel-linea { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--negro); transition: color 0.2s ease; }
.tel-linea:hover { color: var(--purpura); }
.tel-ic { width: 30px; height: 30px; min-width: 30px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tel-ic.call { background: var(--negro); color: var(--oro); }
.tel-ic.wa { background: #25d366; color: #fff; }
.tel-num { font-weight: 700; font-size: 1rem; letter-spacing: 0.01em; font-variant-numeric: tabular-nums; }

.formulario { background: var(--blanco); border: 1px solid var(--gris-borde); border-radius: var(--borde-radio); padding: 34px; display: grid; gap: 16px; box-shadow: var(--sombra-chica); }
.formulario label { font-weight: 600; font-size: 0.875rem; color: var(--negro); }
.formulario input, .formulario select, .formulario textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--borde-radio-chico); border: 1.5px solid var(--gris-borde);
  background: var(--gris-suave); font-family: inherit; font-size: 0.9375rem; margin-top: 6px; transition: all 0.2s ease;
}
.formulario input:focus, .formulario select:focus, .formulario textarea:focus { outline: none; border-color: var(--purpura); background: var(--blanco); box-shadow: 0 0 0 3px rgba(131,60,163,0.12); }
.formulario textarea { resize: vertical; min-height: 100px; }

/* WhatsApp flotante */
.whatsapp-flotante { position: fixed; bottom: 24px; right: 24px; background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 12px 30px rgba(37,211,102,0.4); z-index: 200; animation: flotar 3s ease-in-out infinite; transition: transform 0.2s ease; }
.whatsapp-flotante:hover { transform: scale(1.08); }
.whatsapp-flotante .icono-svg { width: 28px; height: 28px; stroke: #fff; }

/* Footer */
.pie { background: var(--negro); color: rgba(255,255,255,0.7); padding: 56px 0 24px; font-size: 0.9rem; }
.pie-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 32px; margin-bottom: 20px; }
.pie-col h4 { font-family: var(--fuente-display); color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 16px; }
.pie-logo { font-family: var(--fuente-display); color: #fff; font-weight: 800; font-size: 1.35rem; display: inline-block; margin-bottom: 12px; }
.pie-logo span { color: var(--oro); }
.pie-logo-img { height: 42px; width: auto; display: block; margin-bottom: 14px; }
.pie-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 320px; margin: 0; }
.pie-menu { display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; margin: 0; }
.pie-menu a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.pie-menu a:hover { color: var(--oro); }
.pie-dato { color: rgba(255,255,255,0.7); margin: 0 0 12px; line-height: 1.6; }
.pie-abajo { text-align: center; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero .contenedor, .sobre, .contacto { grid-template-columns: 1fr; }
  .grid-rubros { grid-template-columns: repeat(2, 1fr); }
  .grid-razones { grid-template-columns: repeat(2, 1fr); }
  .grid-marcas { grid-template-columns: repeat(3, 1fr); }
  .grid-paises { grid-template-columns: repeat(3, 1fr); }
  .hero-imagen { order: -1; padding-bottom: 0; }
  .hero-texto { padding-bottom: 40px; }
}
@media (max-width: 680px) {
  .menu { position: fixed; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 18px; box-shadow: var(--sombra); display: none; }
  .menu.abierto { display: flex; }
  .btn-menu-movil { display: block; }
  .barra-nav .btn-secundario { display: none; }
  .grid-rubros, .grid-razones, .grid-marcas { grid-template-columns: repeat(2, 1fr); }
  .grid-paises { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; }
  .hero-stats .stat { flex: 1 1 40%; }
  .pie-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .pie-desc { max-width: none; }
  .pie-menu { align-items: center; }
  .pie-logo-img { margin-left: auto; margin-right: auto; }
  .logo-img { height: 32px; }
  .barra-superior-int { justify-content: center; gap: 14px; font-size: 0.7rem; }
  .barra-superior-int .bs-dato:last-child { display: none; }
}
