/* ─── sobre-romvo.css ─── */
  /* ─── PAGE HERO ─── */
  .page-hero {
    background: linear-gradient(135deg, #1254B0 0%, #1B6FE4 50%, #18A558 100%);
    padding: 100px 48px 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle 700px at -8% 50%, rgba(255,255,255,0.09) 0%, transparent 65%),
      radial-gradient(circle 600px at 108% 50%, rgba(255,255,255,0.09) 0%, transparent 65%);
    pointer-events: none;
  }
  .page-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--green);
    margin-bottom: 20px;
  }
  .page-hero h1 {
    font-size: 58px; font-weight: 800; color: #fff;
    letter-spacing: -2px; line-height: 1.08;
    margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto;
  }
  .page-hero h1 span { color: var(--green); }
  .page-hero p {
    font-size: 17px; color: rgba(255,255,255,0.75);
    max-width: 520px; margin: 0 auto; line-height: 1.65;
  }

  /* ─── SECTIONS ─── */
  .section { padding: 96px 48px; }
  .section-alt { background: var(--bg-light); }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label-sm {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: 14px;
  }
  .section-h2 {
    font-size: 44px; font-weight: 800; color: var(--gray-text);
    letter-spacing: -1.5px; line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-subtitle {
    font-size: 16px; color: var(--gray-body);
    max-width: 560px; line-height: 1.65; margin-bottom: 56px;
  }

  /* ─── HISTORIA (split) ─── */
  .historia-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .historia-text p {
    font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 20px;
  }
  .historia-text p strong { color: var(--gray-text); font-weight: 700; }
  .historia-callout {
    background: var(--navy);
    border-radius: 24px;
    padding: 56px 48px;
    display: flex; align-items: center; justify-content: center;
    height: 100%;
    box-sizing: border-box;
  }
  .historia-callout-quote {
    font-size: 24px; font-weight: 700; line-height: 1.55;
    color: #fff; margin: 0; text-align: center;
  }
  .historia-callout-quote span { color: var(--green); }

  /* ─── MISION ─── */
  .mision-box {
    background: linear-gradient(135deg, #1254B0 0%, #1B6FE4 50%, #18A558 100%);
    border-radius: 24px; padding: 64px;
    text-align: center; color: #fff;
    max-width: 820px; margin: 0 auto;
    position: relative; overflow: hidden;
  }
  .mision-box::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .mision-box blockquote {
    font-size: 24px; font-weight: 700; line-height: 1.5;
    letter-spacing: -0.5px; position: relative;
  }
  .mision-box blockquote span { color: var(--green); }

  /* ─── VALORES ─── */
  .valores-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .valor-card {
    background: #fff; border-top: 4px solid var(--blue);
    border-radius: 16px; padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(27,111,228,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .valor-card:nth-child(even) {
    border-top-color: var(--green);
    box-shadow: 0 4px 24px rgba(61,220,132,0.1);
  }
  .valor-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(27,111,228,0.14); }
  .valor-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(27,111,228,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .valor-card:nth-child(even) .valor-icon { background: rgba(61,220,132,0.12); }
  .valor-card h3 { font-size: 17px; font-weight: 800; color: var(--gray-text); margin-bottom: 10px; }
  .valor-card p { font-size: 13.5px; color: var(--gray-body); line-height: 1.65; }

  /* ─── EQUIPO ─── */
  .equipo-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .equipo-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(27,111,228,0.07);
    border: 1px solid #e8edf5;
    text-align: center;
  }
  .equipo-avatar {
    height: 140px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #dde9ff 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
  }
  .equipo-info { padding: 20px 16px; }
  .equipo-info h4 { font-size: 15px; font-weight: 800; color: var(--gray-text); margin-bottom: 4px; }
  .equipo-info span { font-size: 12.5px; color: var(--blue); font-weight: 600; }

  /* ─── CTA ─── */
  .cta-band {
    background: linear-gradient(135deg, #1254B0 0%, #1B6FE4 50%, #18A558 100%);
    padding: 96px 48px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle 700px at -8% 50%, rgba(255,255,255,0.1) 0%, transparent 65%),
                radial-gradient(circle 600px at 108% 50%, rgba(255,255,255,0.1) 0%, transparent 65%);
    pointer-events: none;
  }
  .cta-band h2 {
    font-size: 46px; font-weight: 800; color: #fff;
    letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 32px;
    position: relative;
  }
  .cta-band h2 span { color: var(--green); }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; position: relative; }
  .btn-outline-white {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 10px; padding: 13px 26px; font-size: 14.5px; font-weight: 600;
    cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    .historia-grid { grid-template-columns: 1fr; gap: 48px; }
    .valores-grid { grid-template-columns: 1fr 1fr; }
    .equipo-grid { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 40px; }
    .section-h2 { font-size: 34px; }
    .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    .section { padding: 64px 24px; }
    .mision-box { padding: 40px 28px; }
    .mision-box blockquote { font-size: 18px; }
  }
  @media (max-width: 640px) {
    .valores-grid, .equipo-grid { grid-template-columns: 1fr; }
  }


  /* ─── SOBRE ROMVO — RESPONSIVE ─── */
  @media (max-width: 640px) {
    .page-hero { padding: 64px 20px 72px; }
    .page-hero h1 { font-size: 32px; letter-spacing: -1px; }
    .page-hero p { font-size: 15px; }
    .section { padding: 56px 20px; }
    .section-h2 { font-size: 28px; letter-spacing: -0.5px; }
    .section-subtitle { font-size: 14px; margin-bottom: 36px; }
    .historia-callout { padding: 32px 24px; }
    .historia-callout-quote { font-size: 20px; }
    .mision-box { padding: 28px 20px; border-radius: 18px; }
    .mision-box blockquote { font-size: 17px; }
    .valor-card { padding: 24px 20px; }
  }
  @media (max-width: 390px) {
    .page-hero h1 { font-size: 28px; }
    .section-h2 { font-size: 26px; }
  }
