/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CAIISA - styles.css
   Extraido de index_Integrado05172026_9.html
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
  --c-navy: #0d1b3e;
  --c-navy-mid: #1a2f5e;
  --c-gold: #c8932a;
  --c-gold-light: #e8b554;
  --c-red: #cc2b2b;
  --c-red-light: #e8554a;
  --c-cream: #f7f4ef;
  --c-white: #ffffff;
  --c-text: #1a1a2e;
  --c-muted: #6b7280;
  --c-border: #e4ddd0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 4px 32px rgba(13,27,62,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,0.16);
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

.fil-content {
  margin-top: 32px;
}

blockquote p {
  margin: 0;
}

.closing-line {
  margin-top: 1.2rem;
}

section {
  scroll-margin-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--c-cream);
  color: var(--c-text);
  line-height: 1.7;
  overflow-x: hidden;
}

.brand{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Nombre legal debajo del nombre corto */
.nav-legal{
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  margin-top: 2px;

  /* Para que no se desborde y se vea profesional */
  max-width: 520px;        /* ajusta según tu gusto */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* En pantallas medianas/chicas, reduce el ancho para evitar choque con menú */
@media (max-width: 1100px){
  .nav-legal{ max-width: 360px; }
}

@media (max-width: 900px){
  .nav-legal{ max-width: 240px; font-size: 11px; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(200,147,42,0.25);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img { height: 42px; width: 42px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--c-white);
  letter-spacing: 0.04em;
}

.nav-logo-text span { color: var(--c-gold-light); }
.nav-links { display: flex; gap: 26px; list-style: none; }
/* nowrap: con nueve elementos, 'SaaD Cloud' se rompia en dos lineas y descuadraba la barra. */
.nav-links a { white-space: nowrap; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-gold-light); }
.nav-cta {
  background: var(--c-gold);
  color: var(--c-navy) !important;
  font-weight: 500 !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--c-gold-light) !important; color: var(--c-navy) !important; }

/* ── HERO ── */
#inicio {
  min-height: 100vh;
  background: var(--c-navy);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(200,147,42,0.07) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(26,47,94,0.8) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(200,147,42,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,147,42,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Contenedor interior: texto izq + visual der ── */
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 100px 5vw 40px;
  padding: calc(var(--nav-h) + 32px) 5vw 40px; /* antes 100px */
  position: relative;
}
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em { color: var(--c-gold-light); font-style: normal; }
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.7);
  max-width: 520px; margin-bottom: 14px;
  animation: fadeUp 0.6s 0.2s ease both;
  line-height: 1.65;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
  margin-top: 8px;
}
.btn-primary {
  background: var(--c-gold); color: var(--c-navy);
  padding: 13px 28px; border-radius: 4px;
  font-weight: 500; font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--c-gold-light); transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.3); color: var(--c-white);
  padding: 13px 28px; border-radius: 4px;
  font-size: 15px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--c-gold-light); background: rgba(200,147,42,0.07); }

/* ── Visual derecho ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero-visual svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  overflow: hidden; /* ✅ recorta todo lo que se salga overflow: visible; */
}

/* ── Animaciones SVG ── */
@keyframes svgDrawLine  { to   { stroke-dashoffset: 0; } }
@keyframes svgFadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes svgRotate    { to   { transform: rotate(360deg); } }
@keyframes svgRotateRev { to   { transform: rotate(-360deg); } }
@keyframes svgHubPulse  {
  0%,100% { transform: scale(1);    opacity: 1; }
  50%     { transform: scale(1.06); opacity: 0.92; }
}
@keyframes svgGlowPulse {
  0%,100% { opacity: 0.07; }
  50%     { opacity: 0.16; }
}
.svg-ring-slow { transform-origin: 280px 255px; animation: svgRotate 50s linear infinite; }
.svg-ring-rev  { transform-origin: 280px 255px; animation: svgRotateRev 30s linear infinite; }
.svg-hub {
  transform-box: fill-box; transform-origin: center;
  animation: svgHubPulse 3.5s ease-in-out infinite;
}
.svg-glow1 { animation: svgGlowPulse 3.5s ease-in-out infinite; }
.svg-glow2 { animation: svgGlowPulse 3.5s 0.8s ease-in-out infinite; }

/* ── Stats: franja inferior full-width ── */
.hero-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.09);
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat {
  flex: 1; text-align: center;
  padding: 22px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700;
  color: var(--c-red-light); display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 5px; display: block;
}

/* ── SECTIONS COMMON ── */

section:not(#inicio) { padding: 0; } /*section { padding: 100px 5vw; }*/
.section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--c-gold); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--c-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--c-muted); max-width: 560px; line-height: 1.7; margin-bottom: 56px; }

/* ── NOSOTROS ── */
#nosotros { background: var(--c-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-visual {
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 48px;
  display: flex; flex-direction: column; gap: 24px;
}
.about-logo-wrap {
  display: flex; justify-content: center; margin-bottom: 8px;
}
.about-logo-wrap img { width: 120px; height: 120px; object-fit: contain; }
.about-pillar {
  display: flex; align-items: flex-start; gap: 16px;
}
.pillar-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--c-navy);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 20px; height: 20px; fill: var(--c-gold-light); }
.pillar-text h4 { font-size: 14px; font-weight: 500; color: var(--c-navy); margin-bottom: 2px; }
.pillar-text p { font-size: 13px; color: var(--c-muted); line-height: 1.5; }

/* ── SERVICIOS ── */
#servicios { background: var(--c-cream); }
/* ── SERVICIOS ── */
#servicios { background: var(--c-cream); }
#servicios .fil-grid {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
#servicios .fil-half {
  background: var(--c-white);
}
#servicios .fil-half:first-child {
  border-right: 1px solid var(--c-border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.2s;
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--c-gold);
  border-radius: 6px 6px 0 0;
  opacity: 0; transition: opacity 0.2s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  background: var(--c-cream);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--c-navy); }
.service-card h3 { font-size: 17px; font-weight: 500; color: var(--c-navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--c-muted); line-height: 1.6; }


.bb-figure { margin: 32px 0; }
.bb-figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}
.bb-figure figcaption{
  margin-top: 10px;
  font-size: 13px;
  color: var(--c-muted);
}


/* ── PRODUCTO DESTACADO ── */
#producto {
  background: var(--c-navy);
  position: relative; overflow: hidden;
}
#producto .hero-grid-lines { opacity: 0.5; }
#producto .section-tag { color: var(--c-gold-light); }
#producto .section-tag::before { background: var(--c-gold-light); }
#producto h2 { color: var(--c-white); }
#producto .section-sub { color: rgba(255,255,255,0.6); }

.product-layout {
  display: grid;
  /* minmax(0,...) en vez de 1.1fr: por omisión los items de un grid tienen
     min-width:auto y no se encogen por debajo de su contenido, así que la
     rejilla acaba más ancha que la sección y el contenido se recorta. */
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px; align-items: start;
  position: relative;
  width: 100%;
}
/* Refuerzo para navegadores que no aplican el minmax a los hijos directos */
.product-layout > * { min-width: 0; }
.product-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.feature-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,147,42,0.15);
  border-radius: 6px;
  transition: background 0.2s;
}
/* El bloque de texto debe poder encogerse; si no, empuja la columna */
.feature-row > div { min-width: 0; overflow-wrap: break-word; }
.feature-row:hover { background: rgba(200,147,42,0.07); }
.feature-num {
  font-family: var(--font-display);
  font-size: 13px; color: var(--c-gold);
  min-width: 24px; padding-top: 2px;
}
.feature-row h4 { font-size: 14px; font-weight: 500; color: var(--c-white); margin-bottom: 3px; }
.feature-row p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Tarjeta de descarga */
.download-card {
  background: var(--c-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky; top: 100px;
  max-width: 100%;
}
.download-card-header {
  background: var(--c-gold);
  padding: 28px 32px;
}
.download-card-header h3 {
  font-family: var(--font-display);
  font-size: 22px; color: var(--c-navy);
  margin-bottom: 4px;
}
.download-card-header p { font-size: 13px; color: rgba(13,27,62,0.65); }
.download-card-body { padding: 32px; }
.version-badge {
  display: inline-block;
  background: #e8f4fd; color: #1a4f7a;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 3px;
  text-transform: uppercase; margin-bottom: 20px;
}
.spec-list { list-style: none; margin-bottom: 28px; }
.spec-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--c-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--c-border);
  /* En pantallas estrechas la etiqueta baja de línea en vez de desbordar */
  flex-wrap: wrap;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list li::before { content: '✓'; color: var(--c-gold); font-weight: 700; font-size: 12px; min-width: 14px; }
.spec-list strong { color: var(--c-text); margin-left: auto; font-size: 12px; }

.btn-download {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 16px;
  background: var(--c-navy); color: var(--c-white);
  border: none; border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
}
.btn-download:hover { background: var(--c-navy-mid); transform: translateY(-1px); }
.btn-download svg { width: 18px; height: 18px; fill: var(--c-gold-light); }
.btn-contact-sales {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px;
  background: transparent; color: var(--c-navy);
  border: 1px solid var(--c-border); border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px; cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-contact-sales:hover { border-color: var(--c-gold); background: rgba(200,147,42,0.05); }
.download-note { font-size: 11px; color: var(--c-muted); text-align: center; margin-top: 14px; }

/* ── CONTACTO ── */
#contacto { background: var(--c-white); }
.contact-grid {
  display: grid;
  /* minmax(0,…) evita que el formulario, cuyos campos tienen ancho
     intrínseco, impida encoger la columna y desborde la sección. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px; align-items: start;
  width: 100%;
}
.contact-grid > * { min-width: 0; }
.contact-info { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--c-cream);
  border: 1px solid var(--c-border); border-radius: 6px;
}
/* El bloque de texto (dirección, correos) debe poder encogerse y partir palabras */
.contact-item > div { min-width: 0; overflow-wrap: break-word; }
.contact-item-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--c-navy); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 18px; height: 18px; fill: var(--c-gold-light); }
.contact-item h4 { font-size: 13px; font-weight: 500; color: var(--c-navy); margin-bottom: 3px; }
.contact-item p { font-size: 13px; color: var(--c-muted); }

/* Campos con ayuda y campos fijados (producto ya conocido) */
.campo-opcional { font-weight: 400; color: var(--c-muted); font-size: 12px; }
.campo-ayuda {
  display: block; font-size: 11.5px; color: var(--c-muted);
  line-height: 1.5; margin-top: 5px;
}
.campo-fijo,
select:disabled, input:disabled {
  background: var(--c-cream);
  color: var(--c-text);
  cursor: default;
  opacity: 1;              /* sin esto Safari lo pinta gris y parece un error */
  -webkit-text-fill-color: var(--c-text);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--c-navy); }
.form-group input, .form-group select, .form-group textarea {
  /* Sin width:100% los campos conservan su ancho por defecto (~20 caracteres)
     y son ellos los que fijan el ancho mínimo de la columna. */
  width: 100%;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--c-border); border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; color: var(--c-text);
  background: var(--c-white);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--c-gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  background: var(--c-navy); color: var(--c-white);
  border: none; border-radius: 4px;
  padding: 14px 32px; font-family: var(--font-body);
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--c-navy-mid); }

/* ── FOOTER ── */
footer {
  background: var(--c-navy);
  padding: 60px 5vw 36px;
  border-top: 1px solid rgba(200,147,42,0.20);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-col h5 {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--c-gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-logo-small {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo-small img { height: 28px; opacity: 0.8; }
.footer-logo-small span {
  font-family: var(--font-display); font-size: 16px; color: rgba(255,255,255,0.6);
}

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.6);
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--c-white); border-radius: 10px;
  width: 100%; max-width: 480px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  background: var(--c-navy); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-family: var(--font-display); font-size: 20px; color: var(--c-white); }
.modal-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 20px;
  line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--c-white); }
.modal-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.modal-body p { font-size: 14px; color: var(--c-muted); margin-bottom: 6px; }
.modal-body .form-group input { width: 100%; }
.modal-footer { padding: 0 28px 24px; display: flex; gap: 12px; }
.btn-modal-submit {
  flex: 1; background: var(--c-gold); color: var(--c-navy);
  border: none; border-radius: 4px; padding: 13px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background 0.2s;
}
.btn-modal-submit:hover { background: var(--c-gold-light); }
.btn-modal-cancel {
  flex: 0; padding: 13px 20px;
  background: none; border: 1px solid var(--c-border); border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; cursor: pointer;
  color: var(--c-muted);
}

/* ── SUCCESS TOAST ── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--c-navy); color: var(--c-white);
  padding: 14px 20px; border-radius: 6px;
  font-size: 14px; border-left: 4px solid var(--c-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: all 0.35s ease;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .product-layout, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner { grid-template-columns: 1fr; padding: 80px 5vw 32px; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .download-card { position: static; }
}
/* ── FILOSOFÍA ── */
#filosofia {
  background: var(--c-navy);
  position: relative; overflow: hidden;
}
#filosofia::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(200,147,42,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,147,42,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.fil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; z-index: 1;
}
.fil-half {
  padding: 80px 5vw 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.fil-half:last-child { border-right: none; }
.fil-overline {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.fil-overline::before { content: ''; width: 24px; height: 1px; flex-shrink: 0; }
.fil-overline-red  { color: var(--c-gold-light); }
.fil-overline-red::before  { background: var(--c-gold); }
.fil-overline-blue { color: rgba(160,180,255,0.8); }
.fil-overline-blue::before { background: rgba(120,150,255,0.5); }
.fil-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 18px;
  color: var(--c-white);
}
.fil-title em { font-style: normal; }
.fil-title-red  em { color: var(--c-gold-light); }
.fil-title-blue em { color: rgba(160,180,255,0.9); }
.fil-desc {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 440px; margin-bottom: 28px;
  font-weight: 300;
}
.fil-desc strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.fil-bullets { display: flex; flex-direction: column; gap: 10px; }
.fil-bullet {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.fil-bullet:hover { background: rgba(255,255,255,0.07); }
.fil-bullet-red:hover  { border-left-color: var(--c-gold); }
.fil-bullet-blue:hover { border-left-color: rgba(120,150,255,0.6); }
.fil-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0; margin-top: 6px;
}
.fil-dot-red  { background: var(--c-gold); box-shadow: 0 0 6px rgba(200,147,42,0.40); }
.fil-dot-blue { background: rgba(120,150,255,0.8); box-shadow: 0 0 6px rgba(120,150,255,0.4); }
.fil-bullet h4 { font-size: 14px; font-weight: 500; color: var(--c-white); margin-bottom: 2px; }
.fil-bullet p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* Franja de misión debajo de las dos columnas */
.fil-mision {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 5vw;
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 32px;
  font-size: clamp(11px, 1.8vw, 19px);
  flex-wrap: wrap;
}
.fil-mision-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-gold);
  white-space: nowrap; flex-shrink: 0;
  min-width: 148px;          /* ancho fijo → la línea vertical siempre al mismo X */
  padding-top: 4px;          /* alinea visualmente con la primera línea del blockquote */
}
.fil-mision blockquote {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,0.65);
  font-style: italic; line-height: 1.6;
  border-left: 2px solid var(--c-gold);
  padding-left: 20px;
  flex: 1;
}
.fil-mision blockquote strong { color: var(--c-gold-light); font-style: normal; }

/* ── NOSOTROS mejorado ── */
#nosotros { background: var(--c-white); }
.nos-wrapper { padding: 80px 5vw; }
.nos-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-bottom: 56px;
}
.nos-copy .section-tag { color: var(--c-gold); }
.nos-copy h2 { margin-bottom: 14px; }
.nos-copy p { font-size: 15px; color: var(--c-muted); line-height: 1.8; margin-top: 12px; }
.nos-copy p + p { margin-top: 12px; }

/* Timeline */
.nos-timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex; gap: 20px;
  padding-bottom: 24px; position: relative;
}
.tl-item::before {
  content: ''; position: absolute;
  left: 14px; top: 28px; bottom: 0;
  width: 1px; background: var(--c-border);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: 50%; background: var(--c-navy);
  border: 2px solid var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 600; color: var(--c-gold-light);
  flex-shrink: 0; z-index: 1; margin-top: 2px;
}
.tl-year { font-size: 12px; font-weight: 600; color: var(--c-gold); letter-spacing: 0.05em; }
.tl-txt  { font-size: 13px; color: var(--c-muted); line-height: 1.55; margin-top: 2px; }
.tl-txt strong { color: var(--c-text); font-weight: 500; }

/* Clientes strip */
.nos-clients {
  background: var(--c-cream); border: 1px solid var(--c-border);
  padding: 28px 32px; margin-bottom: 48px;
}
.nos-clients-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-gold);
  margin-bottom: 16px;
}
.nos-clients-list {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.client-tag {
  font-size: 12px; font-weight: 500;
  color: var(--c-muted); background: var(--c-white);
  border: 1px solid var(--c-border); padding: 5px 12px;
  transition: border-color 0.2s, color 0.2s;
}
.client-tag:hover { border-color: var(--c-gold); color: var(--c-navy); }

/* Valores en la parte inferior */
.nos-values {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.nos-val {
  background: var(--c-cream); padding: 28px 24px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nos-val:hover { border-top-color: var(--c-gold); background: var(--c-white); }
.nos-val-icon {
  width: 40px; height: 40px; background: var(--c-navy);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.nos-val-icon svg { width: 20px; height: 20px; fill: var(--c-gold-light); }
.nos-val h4 { font-size: 15px; font-weight: 500; color: var(--c-navy); margin-bottom: 8px; }
.nos-val p  { font-size: 13px; color: var(--c-muted); line-height: 1.6; }

@media (max-width: 900px) {
  .fil-grid { grid-template-columns: 1fr; }
  .fil-half { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 48px 5vw; }
  .fil-half:last-child { border-bottom: none; }
  .nos-top { grid-template-columns: 1fr; gap: 40px; }
  .nos-values { grid-template-columns: 1fr; }
}
/* ── PRINCIPIOS ── */
#principios {
  background: var(--c-navy);
  position: relative; overflow: hidden;
}
#principios::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,147,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,147,42,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.pri-header {
  padding: 80px 5vw 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 1;
}
.pri-header-inner {
  display: flex; align-items: flex-start;
  flex-direction: column; gap: 0;
}
.pri-header-desc {
  font-size: 16px; color: rgba(255,255,255,0.65);
  max-width: 620px; line-height: 1.75;
  margin-top: 18px;
}
.pri-header-desc strong {
  color: rgba(255,255,255,0.90);
  font-weight: 500;
}
.pri-overline {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.pri-overline::before { content: ''; width: 24px; height: 1px; background: var(--c-gold); flex-shrink: 0; }
.pri-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--c-white); line-height: 1.15; margin-bottom: 0;
}
.pri-header-sub {
  font-size: 15px; color: rgba(255,255,255,0.50);
  max-width: 480px; line-height: 1.75; text-align: right;
}


.pri-header-sub p {
  margin-bottom: 12px;
}

.pri-header-sub p:last-child {
  margin-bottom: 0;
}


/* Grid 3 × 2 */
.pri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative; z-index: 1;
  padding-bottom: 80px;
}
.pri-card {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.pri-card:hover { background: rgba(200,147,42,0.04); }
/* quitar border derecho en las columnas 3 y 6 */
.pri-card:nth-child(3n) { border-right: none; }
/* quitar border inferior de la última fila */
.pri-card:nth-child(n+4) { border-bottom: none; }

/* Acento superior al hover */
.pri-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--c-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.pri-card:hover::before { transform: scaleX(1); }

.pri-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 400;
  color: rgba(200,147,42,0.40); letter-spacing: 0.1em;
  margin-bottom: 6px; display: block;
}
.pri-element {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-gold);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 16px;
}
.pri-element::before {
  content: ''; width: 16px; height: 1px;
  background: var(--c-gold); flex-shrink: 0;
}
.pri-card h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--c-white); line-height: 1.2;
  margin-bottom: 14px; font-weight: 700;
}
.pri-card .pri-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 14px;
}
.pri-card .pri-cierre {
  font-size: 12px; font-style: italic;
  color: rgba(200,147,42,0.65); line-height: 1.5;
  border-left: 1px solid rgba(200,147,42,0.25);
  padding-left: 12px;
}

@media (max-width: 900px) {
  .pri-grid { grid-template-columns: 1fr 1fr; }
  .pri-card:nth-child(3n)  { border-right: inherit; }
  .pri-card:nth-child(2n)  { border-right: none; }
  .pri-card:nth-child(n+4) { border-bottom: inherit; }
  .pri-card:nth-child(n+5) { border-bottom: none; }
  .pri-header-sub { text-align: left; max-width: 100%; }
}
@media (max-width: 580px) {
  .pri-grid { grid-template-columns: 1fr; }
  .pri-card { border-right: none; }
  .pri-card:last-child { border-bottom: none; }
}

/* --- Estilos para la integración de Misión/Visión/Manifiesto --- */
.nos-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
  padding: 40px;
  background: var(--c-navy);
  border-radius: 8px;
  color: var(--c-white);
}

.purpose-item {
  border-left: 1px solid rgba(200,147,42,0.25);
  padding-left: 20px;
}

.purpose-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
}

.purpose-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.purpose-item strong {
  color: var(--c-gold-light);
}

.manifesto-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 4px;
  border-left: 2px solid var(--c-gold);
}

/* Ajuste responsivo */
@media (max-width: 900px) {
  .nos-purpose-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}
/* ══════════════════════════════════════════════
   SaaD Cloud Form — estilos extraídos del componente nosotros
══════════════════════════════════════════════ */
.saad-timeline-form {
  background-color: var(--c-cream);
  border-top: 4px solid var(--c-gold);
  border-radius: 6px;
  padding: 28px 24px;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(13,27,62,0.07);
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
}
.saad-timeline-form .saad-badge {
  display: inline-block;
  background-color: var(--c-navy);
  color: var(--c-white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.saad-timeline-form h3 {
  color: var(--c-navy);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 8px 0;
}
.saad-timeline-form > p {
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.form-compacto {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-compacto input,
.form-compacto textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  box-sizing: border-box;
  transition: border-color 0.2s;
  background: var(--c-white);
  color: var(--c-text);
}
.form-compacto input:focus,
.form-compacto textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(200,147,42,0.08);
}
.form-compacto textarea { height: 80px; resize: vertical; }
.btn-submit-compacto {
  background-color: var(--c-gold);
  color: var(--c-navy);
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  font-family: var(--font-body);
}
.btn-submit-compacto:hover {
  background-color: var(--c-gold-light);
  transform: translateY(-1px);
}

/* ── TRAINING LESS — tercer pilar de filosofía ── */
#filosofia .fil-grid {
  grid-template-columns: repeat(3, 1fr);
}
#filosofia .fil-half:last-child {
  border-right: none;
}
.fil-overline-green {
  color: rgba(80, 220, 170, 0.90);
}
.fil-overline-green::before {
  background: rgba(80, 220, 170, 0.60);
}
.fil-title-green em {
  color: rgba(100, 235, 185, 0.95);
}
.fil-dot-green {
  background: rgba(80, 220, 160, 0.85);
  box-shadow: 0 0 6px rgba(80, 220, 160, 0.40);
}
.fil-bullet-green:hover {
  border-left-color: rgba(80, 220, 160, 0.60);
}
@media (max-width: 1100px) {
  #filosofia .fil-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* El tercer pilar ocupa el ancho completo en pantallas medianas */
  #filosofia .fil-grid .fil-half:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}
@media (max-width: 900px) {
  #filosofia .fil-grid {
    grid-template-columns: 1fr;
  }
  #filosofia .fil-grid .fil-half:nth-child(3) {
    grid-column: auto;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}

/* ── PRODUCTO y CONTACTO: contenedor y respiración ───────────
   Estas dos secciones no tienen wrapper propio (a diferencia de
   .nos-wrapper o .sc-wrapper), así que el margen lateral se aplica
   aquí. El mínimo de 24px evita que el contenido quede pegado al
   borde en móviles, donde 5vw se queda corto. */
#contacto,
#producto {
  padding: 80px clamp(24px, 5vw, 80px);
}

/* Contenedor interno, equivalente a .nos-wrapper o .sc-wrapper del resto
   del sitio: en pantallas anchas el contenido se centra en vez de estirarse
   de un extremo a otro, que es lo que descolocaba estas dos secciones. */
.producto-inner,
.contacto-inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

/* El salto de dos columnas a una ocurría sólo en 900px; entre 900
   y 1100 la separación de 64px dejaba las columnas demasiado angostas. */
@media (max-width: 1100px) {
  .product-layout,
  .contact-grid { gap: 40px; }
  .download-card-body { padding: 26px; }
  .download-card-header { padding: 24px 26px; }
}

@media (max-width: 580px) {
  #producto,
  #contacto { padding: 64px clamp(20px, 5vw, 40px); }
  .download-card-body { padding: 22px 20px; }
  .download-card-header { padding: 22px 20px; }
  .feature-row { padding: 16px; gap: 12px; }
  .contact-item { padding: 16px; gap: 12px; }
  /* Los textos largos de la ficha técnica no deben forzar el ancho */
  .download-note, .feature-row p, .spec-list li { overflow-wrap: break-word; }
}

/* Servicios usa wrappers internos para evitar doble padding con fil-half */
#servicios {
  padding: 0;
}
.ser-header {
  padding: 80px 5vw 0;
}
.ser-content {
  padding: 0 5vw 80px;
}

/* Asegura que fil-half dentro de #servicios no duplique el padding horizontal */
#servicios .fil-half {
  padding: 80px 5vw 48px;
}
#servicios .fil-mision {
  padding: 32px 5vw;
  border-top: 1px solid rgba(200,147,42,0.15);
  background: var(--c-cream);
}

/* ══════════════════════════════════════════════
   SAAD CLOUD
══════════════════════════════════════════════ */
#saad-cloud { background: var(--c-cream); position: relative; overflow: hidden; }
#saad-cloud::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(200,147,42,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(13,27,62,0.04) 0%, transparent 50%);
}
.sc-wrapper { padding: 80px 5vw; position: relative; z-index: 1; }
.sc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-navy); color: var(--c-gold-light);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 22px;
  border: 1px solid rgba(200,147,42,0.30);
}
.sc-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-gold); box-shadow: 0 0 6px var(--c-gold);
  animation: scPulse 2s ease-in-out infinite;
}
@keyframes scPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.4; transform:scale(0.65); }
}
.sc-header { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.sc-header h2 { font-family: var(--font-display); font-size: clamp(30px,3.8vw,50px); color: var(--c-navy); line-height: 1.1; margin-bottom: 0; }
.sc-header h2 em { font-style: normal; color: var(--c-gold); }
.sc-desc { font-size: 15px; color: var(--c-muted); line-height: 1.8; margin-bottom: 20px; }
.sc-desc strong { color: var(--c-text); }
.sc-version-strip { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sc-version-pill { background: var(--c-navy); color: var(--c-gold-light); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; }
.sc-arrow { color: var(--c-gold); font-weight: 700; font-size: 16px; }
.sc-version-next { background: rgba(200,147,42,0.12); color: var(--c-gold); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; border: 1px solid rgba(200,147,42,0.25); }
.sc-version-label { font-size: 12px; color: var(--c-muted); }
.sc-pillars { display: grid; grid-template-columns: repeat(4,1fr); margin-bottom: 56px; border: 1px solid var(--c-border); border-radius: 8px; overflow: hidden; }
.sc-pillar { background: var(--c-white); padding: 32px 24px; border-right: 1px solid var(--c-border); position: relative; overflow: hidden; transition: background 0.2s; }
.sc-pillar:last-child { border-right: none; }
.sc-pillar:hover { background: #fdfaf5; }
.sc-pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--c-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.sc-pillar:hover::before { transform: scaleX(1); }
.sc-pillar-icon { width: 44px; height: 44px; background: var(--c-navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.sc-pillar-icon svg { width: 22px; height: 22px; fill: var(--c-gold-light); }
.sc-pillar h4 { font-size: 15px; font-weight: 500; color: var(--c-navy); margin-bottom: 8px; line-height: 1.3; }
.sc-pillar p  { font-size: 13px; color: var(--c-muted); line-height: 1.6; }
.sc-preview-wrap { position: relative; margin-bottom: 56px; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 80px rgba(13,27,62,0.15), 0 2px 8px rgba(13,27,62,0.06); border: 1px solid var(--c-border); }
.sc-chrome { background: #e8e8ec; padding: 10px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #d0d0d8; }
.sc-chrome-dots { display: flex; gap: 6px; }
.sc-chrome-dots span { width: 12px; height: 12px; border-radius: 50%; }
.sc-chrome-dots span:nth-child(1) { background: #ff5f57; }
.sc-chrome-dots span:nth-child(2) { background: #febc2e; }
.sc-chrome-dots span:nth-child(3) { background: #28c840; }
.sc-chrome-bar { flex: 1; background: var(--c-white); border-radius: 4px; padding: 5px 12px; font-size: 11px; color: #888; border: 1px solid #d0d0d8; display: flex; align-items: center; gap: 6px; max-width: 340px; margin: 0 auto; }
.sc-chrome-bar::before { content: "🔒"; font-size: 9px; }
.sc-app { display: grid; grid-template-columns: 210px 1fr; height: 460px; }
.sc-sidebar { background: var(--c-navy); display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,0.06); }
.sc-sidebar-brand { padding: 18px 16px 14px; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 10px; }
.sc-sidebar-brand-icon { width: 30px; height: 30px; border-radius: 5px; background: var(--c-gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--c-navy); }
.sc-sidebar-brand-name { font-family: var(--font-display); font-size: 13px; color: var(--c-white); font-weight: 700; }
.sc-sidebar-brand-sub { font-size: 9px; color: rgba(255,255,255,0.30); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1px; }
.sc-nav-section { padding: 14px 10px 6px; }
.sc-nav-label { font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.22); padding: 0 8px; margin-bottom: 4px; }
.sc-nav-item { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 5px; font-size: 12px; color: rgba(255,255,255,0.50); margin-bottom: 2px; }
.sc-nav-item svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.sc-nav-item.active { background: rgba(200,147,42,0.15); color: var(--c-gold-light); }
.sc-nav-badge { margin-left: auto; background: var(--c-gold); color: var(--c-navy); font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 8px; }
.sc-main { background: #f4f3f0; display: flex; flex-direction: column; overflow: hidden; }
.sc-topbar { background: var(--c-white); border-bottom: 1px solid var(--c-border); padding: 10px 22px; display: flex; align-items: center; justify-content: space-between; }
.sc-topbar-title { font-size: 13px; font-weight: 600; color: var(--c-navy); }
.sc-topbar-right { display: flex; align-items: center; gap: 10px; }
.sc-topbar-chip { background: rgba(200,147,42,0.1); color: var(--c-gold); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.sc-topbar-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--c-navy); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--c-gold-light); font-weight: 600; }
.sc-content { flex: 1; padding: 18px 22px; overflow: hidden; }
.sc-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.sc-kpi { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 6px; padding: 12px 14px; }
.sc-kpi-label { font-size: 9px; color: var(--c-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 5px; }
.sc-kpi-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--c-navy); line-height: 1; }
.sc-kpi-sub { font-size: 10px; color: var(--c-muted); margin-top: 3px; }
.sc-kpi-up { color: #1a9e5c; font-weight: 600; }
.sc-data-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.sc-chart-card,.sc-table-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 6px; padding: 14px; }
.sc-card-title { font-size: 10px; font-weight: 600; color: var(--c-navy); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.sc-bars { display: flex; align-items: flex-end; gap: 5px; height: 80px; padding-top: 8px; }
.sc-bar { flex: 1; background: rgba(13,27,62,0.18); border-radius: 2px 2px 0 0; }
.sc-bar.hi { background: var(--c-gold); }
.sc-bar.md { background: rgba(13,27,62,0.40); }
.sc-bar-labels { display: flex; gap: 5px; margin-top: 4px; }
.sc-bar-labels span { flex: 1; text-align: center; font-size: 8px; color: var(--c-muted); }
.sc-tbl-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 5px 0; border-bottom: 1px solid #f0ede8; font-size: 11px; color: var(--c-muted); align-items: center; }
.sc-tbl-row.hdr { font-weight: 600; color: var(--c-navy); font-size: 9px; text-transform: uppercase; letter-spacing: 0.04em; }
.sc-tbl-row:last-child { border-bottom: none; }
.sc-status { display: inline-block; padding: 2px 7px; border-radius: 3px; font-size: 9px; font-weight: 600; }
.sc-status.ok  { background: #e0f5ec; color: #1a9e5c; }
.sc-status.pen { background: #fef3e2; color: #b8820a; }
.sc-status.new { background: rgba(200,147,42,0.12); color: var(--c-gold); }
.sc-preview-veil {
  position: absolute; bottom: 0; left: 0; right: 0; height: 52%;
  background: linear-gradient(to bottom, transparent 0%, rgba(247,244,239,0.88) 45%, rgba(247,244,239,1) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 36px; gap: 14px;
}
.sc-veil-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold); display: flex; align-items: center; gap: 10px; }
.sc-veil-label::before,.sc-veil-label::after { content: ''; width: 32px; height: 1px; background: var(--c-gold); }
.sc-veil-cta { background: var(--c-navy); color: var(--c-white); border: none; border-radius: 4px; padding: 11px 26px; font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s,transform 0.15s; box-shadow: 0 4px 16px rgba(13,27,62,0.25); }
.sc-veil-cta:hover { background: var(--c-navy-mid); transform: translateY(-1px); }
.sc-veil-cta svg { width: 14px; height: 14px; fill: var(--c-gold-light); }
.sc-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-bottom: 56px; }
.sc-feature-group h5 { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--c-gold); }
.sc-feat-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--c-muted); padding: 5px 0; line-height: 1.5; }
.sc-feat-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-gold); flex-shrink: 0; margin-top: 5px; }
.sc-feat-item strong { color: var(--c-text); font-weight: 500; }
.sc-cta-strip { background: var(--c-navy); border-radius: 10px; padding: 48px 52px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; }
.sc-cta-strip::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(200,147,42,0.03) 1px, transparent 1px),linear-gradient(90deg, rgba(200,147,42,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.sc-cta-strip::after { content: ''; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(200,147,42,0.07) 0%, transparent 70%); pointer-events: none; }
.sc-cta-text { position: relative; z-index: 1; }
.sc-cta-text h3 { font-family: var(--font-display); font-size: clamp(20px,2.2vw,28px); color: var(--c-white); margin-bottom: 8px; line-height: 1.2; }
.sc-cta-text h3 em { font-style: normal; color: var(--c-gold-light); }
.sc-cta-text p { font-size: 14px; color: rgba(255,255,255,0.48); max-width: 420px; line-height: 1.7; }
.sc-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; flex-shrink: 0; }
.sc-btn-primary { background: var(--c-gold); color: var(--c-navy); padding: 13px 28px; border-radius: 4px; font-family: var(--font-body); font-size: 14px; font-weight: 500; text-decoration: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s,transform 0.15s; }
.sc-btn-primary:hover { background: var(--c-gold-light); transform: translateY(-1px); }
.sc-btn-secondary { border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); padding: 13px 28px; border-radius: 4px; font-family: var(--font-body); font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.2s,background 0.2s; }
.sc-btn-secondary:hover { border-color: var(--c-gold-light); background: rgba(200,147,42,0.07); }
@media (max-width:900px) {
  .sc-header { grid-template-columns:1fr; gap:28px; }
  .sc-pillars { grid-template-columns:1fr 1fr; }
  .sc-features-grid { grid-template-columns:1fr; }
  .sc-app { grid-template-columns:1fr; }
  .sc-sidebar { display:none; }
  .sc-kpi-row { grid-template-columns:1fr 1fr; }
  .sc-data-row { grid-template-columns:1fr; }
  .sc-cta-strip { flex-direction:column; padding:36px 28px; }
}
@media (max-width:580px) { .sc-pillars { grid-template-columns:1fr; } }

/* ── COUNTDOWN STRIP ── */
.cd-strip {
  background: rgba(0,0,0,0.22);
  border-top: 1px solid rgba(200,147,42,0.18);
  padding: 18px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.cd-left {
  display: flex; align-items: center; gap: 14px;
}
.cd-product-badge {
  display: inline-flex; flex-direction: column;
  background: rgba(200,147,42,0.12);
  border: 1px solid rgba(200,147,42,0.30);
  border-radius: 5px;
  padding: 6px 14px;
  text-align: center;
}
.cd-product-name {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--c-gold-light); line-height: 1.2;
  letter-spacing: 0.02em;
}
.cd-product-edition {
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(200,147,42,0.65);
  margin-top: 2px;
}
.cd-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.10); flex-shrink: 0;
}
.cd-launch-info {
  display: flex; flex-direction: column; gap: 2px;
}
.cd-launch-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.cd-launch-date {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.80);
}
.cd-launch-sub {
  font-size: 10px; color: rgba(255,255,255,0.35);
}
/* Timer units */
.cd-timer {
  display: flex; align-items: center; gap: 6px;
}
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 52px;
}
.cd-unit-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; line-height: 1;
  color: var(--c-white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px; padding: 6px 10px;
  min-width: 52px; text-align: center;
  transition: color 0.2s;
}
.cd-unit-num.tick { color: var(--c-gold-light); }
.cd-unit-label {
  font-size: 8px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.30);
  margin-top: 4px;
}
.cd-colon {
  font-family: var(--font-display);
  font-size: 22px; color: rgba(200,147,42,0.40);
  padding-bottom: 12px; font-weight: 700;
}
.cd-cta {
  background: var(--c-gold); color: var(--c-navy);
  padding: 9px 18px; border-radius: 4px;
  font-size: 12px; font-weight: 600; text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cd-cta:hover { background: var(--c-gold-light); }
@media (max-width: 900px) {
  .cd-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cd-unit-num { font-size: 22px; min-width: 44px; }
}

/* ── RED edition accent in SaaD Cloud section ── */
.sc-red-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(204,43,43,0.12), rgba(200,147,42,0.10));
  border: 1px solid rgba(204,43,43,0.25);
  border-radius: 5px; padding: 10px 20px; margin-bottom: 28px;
}
.sc-red-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-red); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(204,43,43,0.60);
}
.sc-red-badge-text { display: flex; flex-direction: column; gap: 2px; }
.sc-red-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: var(--c-text); line-height: 1.2;
}
.sc-red-acronym {
  font-size: 10px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--c-muted);
}
.sc-red-acronym span { color: var(--c-red); font-weight: 700; }


/* â”€â”€ Infografia puzzle (seccion Servicios) â”€â”€ */
    .caiisa-puzzle-infografia {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
    }
    .caiisa-puzzle-infografia svg {
      width: 100%;
      height: auto;
      display: block;
    }
 
    /* Animación de entrada para las piezas flotantes */
    @media (prefers-reduced-motion: no-preference) {
      .pieza-flotante {
        animation: flotar 3s ease-in-out infinite alternate;
      }
      .pieza-flotante-b {
        animation: flotar 3.6s ease-in-out infinite alternate-reverse;
      }
      @keyframes flotar {
        from { transform: translateY(0px); }
        to   { transform: translateY(-5px); }
      }
    }
 
    /* Responsive: en móvil reduce el tamaño del texto SVG */
    @media (max-width: 480px) {
      .caiisa-puzzle-infografia {
        overflow-x: hidden;
      }
    }

/* ══════════════════════════════════════════════
   SIMULADOR DE AHORRO Y ROI  (ventana #modal-simulador)
   Va entre #producto (navy) y #saad-cloud (crema): fondo blanco para
   mantener el ritmo y poder usar .section-tag y h2 sin sobrescribir colores.
══════════════════════════════════════════════ */
/* ── La ventana ──
   Reutiliza .modal-overlay y .modal del modal de demo (mismo comportamiento de
   apertura, cierre y overlay) y solo cambia lo que tiene que cambiar: el ancho, el
   alto máximo y el scroll interno, porque aquí hay dos columnas y una tabla de
   planes en vez de un formulario de cinco campos. */
.roi-modal {
  max-width: 1080px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.roi-header { align-items: flex-start; gap: 16px; }
.roi-header h3 { margin: 0 0 6px; line-height: 1.25; }
.roi-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 62ch;
}
/* El cuerpo es lo único que hace scroll: el encabezado y los botones se quedan
   fijos, para que el llamado a la acción no se pierda al bajar. */
.roi-body { overflow-y: auto; padding: 24px; }
/* El pie del modal de demo reparte con flex:1 / flex:0, que aqui daba un boton
   gigante y el otro tan estrecho que partia el texto palabra por palabra. Los dos
   toman su ancho natural y se alinean a la derecha, con una franja arriba que los
   separa del contenido que hace scroll por detras. */
.roi-footer {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid var(--c-border);
  background: var(--c-white);
}
.roi-footer .btn-modal-submit {
  flex: 0 0 auto;
  padding: 13px 28px;
  white-space: nowrap;
}
.roi-footer .btn-modal-cancel {
  flex: 0 0 auto;
  text-decoration: none;
  white-space: nowrap;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
}
/* Con la ventana abierta el fondo no debe moverse detrás. */
body.sin-scroll { overflow: hidden; }

/* minmax(0,…) y min-width:0 por lo mismo que .product-layout: el default
   min-width:auto de grid hace que los inputs desborden la columna. */
.roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}
.roi-grid > * { min-width: 0; }

/* ── Entradas ── */
/* La regla global `.form-group input` mete padding, borde y fondo blanco, que a
   un range lo dejan como una caja de texto rota. Hay que resetearlo. */
/* Se deja el control NATIVO a proposito: resetear appearance obliga a dibujar
   pista y tirador a mano por navegador, y accent-color ya lo pinta con la marca.
   Aqui solo se le quita lo que hereda de .form-group input (padding, borde y
   fondo de caja de texto), que es lo que lo dejaba roto. */
.roi-modal input[type="range"] {
  width: 100%;
  height: 26px;
  padding: 0;
  border: none;
  background: transparent;
  accent-color: var(--c-gold);
  cursor: pointer;
}
.roi-out-pct {
  font-weight: 600;
  color: var(--c-gold);
  font-variant-numeric: tabular-nums;
}
.roi-aviso {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--c-gold);
}
/* No hay botón terciario en el sistema: se construye uno de texto. */
.roi-reset {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-muted);
  cursor: pointer;
}
.roi-reset:hover { color: var(--c-text); text-decoration: underline; }

/* ── Panel de resultados ── */
.roi-panel {
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.roi-block:not(:last-child) {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.roi-block-destacado {
  background: rgba(200, 147, 42, 0.07);
  border-radius: 6px;
  padding: 16px 16px 20px;
  margin-left: -16px;
  margin-right: -16px;
}
/* Como .section-tag pero sin la raya dorada del ::before, que aquí estorba. */
.roi-block-tag {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.roi-figs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}
.roi-fig { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.roi-fig-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  line-height: 1.4;
}
/* tabular-nums es lo que evita que las cifras salten de ancho al recalcular
   en vivo: con las cifras proporcionales, el panel "tiembla" al teclear. */
.roi-fig-num {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 700;
  color: var(--c-navy);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

/* ── Plan que le corresponde ── */
.roi-plan-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.roi-plan-nombre {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-navy);
}
.roi-plan-precio {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-gold);
  font-variant-numeric: tabular-nums;
}

/* ── Veredicto ──
   Los tres tonos existen para poder decir que NO conviene con la misma
   claridad con que se dice que sí. Un simulador que siempre aprueba no
   lo cree nadie. */
.roi-veredicto {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.65;
  padding-left: 12px;
  border-left: 3px solid var(--c-border);
}
.roi-veredicto.es-bueno    { border-left-color: #1a9e5c; color: var(--c-text); }
.roi-veredicto.es-ajustado { border-left-color: var(--c-gold); color: var(--c-text); }
.roi-veredicto.es-malo {
  border-left-color: var(--c-red);
  background: rgba(204, 43, 43, 0.06);
  padding: 12px;
  border-radius: 0 6px 6px 0;
}

/* ── Llamado a la acción ── */
/* .btn-download y .btn-contact-sales ya son 100% de ancho: solo respiración. */
.roi-cta { margin-top: 4px; }
.roi-cta .roi-block-tag { margin-bottom: 14px; }
.roi-cta .download-note { margin-top: 12px; }

/* Nota al pie de las tarjetas: dice si los precios son los vigentes o no se
   pudieron cargar, y en ese caso se tiñe de aviso. */
.roi-nota-planes {
  margin: 12px 0 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--c-muted);
  text-align: center;
}
.roi-nota-planes.es-aviso { color: var(--c-gold); font-weight: 500; }

/* ── Escala de planes ── */
.roi-planes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.roi-plan-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.roi-plan-card.is-activo {
  border: 2px solid var(--c-gold);
  box-shadow: var(--shadow);
  padding: 19px;                       /* compensa el borde extra: no salta */
}
.roi-plan-card-nombre {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy);
}
.roi-plan-card-precio {
  font-size: 22px;
  font-weight: 500;
  color: var(--c-navy);
  font-variant-numeric: tabular-nums;
}
.roi-plan-card-precio small { font-size: 12px; color: var(--c-muted); font-weight: 400; }
.roi-plan-card-alcance { font-size: 12px; color: var(--c-muted); line-height: 1.5; }
/* La marca va siempre en el marcado y se enciende con CSS: así el JS no tiene
   que reconstruir las tarjetas en cada tecla. */
.roi-plan-card-marca { display: none; }
.roi-plan-card.is-activo .roi-plan-card-marca {
  display: inline-block;
  align-self: flex-start;
  margin-top: 6px;
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 20px;
}

/* ── Responsive: mismos cortes que el resto del sitio ── */
@media (max-width: 1100px) {
  .roi-grid { gap: 32px; }
  /* Nueve elementos en el menú caben justos aquí. */
  .nav-links { gap: 22px; }
}
@media (max-width: 980px) {
  /* La ventana es más estrecha que la página: sus columnas se apilan antes. */
  .roi-grid { grid-template-columns: 1fr; gap: 28px; }
  .roi-planes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .roi-modal { max-height: 96vh; }
  .roi-body { padding: 18px; }
  .roi-panel { padding: 18px; }
  .roi-figs { grid-template-columns: 1fr; gap: 12px; }
  .roi-planes { grid-template-columns: 1fr; margin-top: 28px; }
  .roi-block-destacado { margin-left: -8px; margin-right: -8px; padding: 14px 8px 16px; }
  .roi-footer { flex-direction: column; }
  .roi-footer .btn-modal-submit, .roi-footer .btn-modal-cancel { width: 100%; flex: none; }
}
