/* ── Hero ── */
    .empresa-hero {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
      color: #fff;
      padding: 56px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .empresa-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .empresa-hero .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(230,57,70,.25);
      border: 1px solid rgba(230,57,70,.4);
      color: #ff8a93;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: .6px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 18px;
    }
    .empresa-hero h1 {
      font-size: clamp(28px, 5vw, 44px);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 14px;
    }
    .empresa-hero h1 span { color: #e63946; }
    .empresa-hero p {
      font-size: 16px;
      color: #c8ccd8;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ── Stat strip ── */
    .empresa-stats {
      background: #e63946;
      padding: 0;
      overflow: hidden;
    }
    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 22px 20px;
      text-align: center;
      color: #fff;
      border-right: 1px solid rgba(255,255,255,.2);
      position: relative;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item .stat-number {
      font-size: 30px;
      font-weight: 800;
      line-height: 1;
      display: block;
    }
    .stat-item .stat-label {
      font-size: 12px;
      opacity: .85;
      margin-top: 4px;
      display: block;
      font-weight: 500;
      letter-spacing: .3px;
    }

    /* ── Main layout ── */
    .empresa-layout {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px 0;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 32px;
      align-items: start;
    }

    /* ── Section card ── */
    .empresa-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      margin-bottom: 24px;
    }
    .empresa-card-header {
      padding: 20px 24px 16px;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .empresa-card-header .card-icon {
      width: 40px;
      height: 40px;
      background: #fff5f5;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .empresa-card-header h2 {
      font-size: 17px;
      font-weight: 700;
      color: #1a1a1a;
    }
    .empresa-card-header p {
      font-size: 13px;
      color: #777;
      margin-top: 2px;
    }
    .empresa-card-body { padding: 24px; }

    /* ── Historia section ── */
    .historia-text p {
      font-size: 15px;
      color: #444;
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .historia-text p:last-child { margin-bottom: 0; }
    .historia-text strong { color: #1a1a1a; }

    /* ── Photo strip ── */
    .empresa-photo {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
      max-height: 280px;
      margin-bottom: 20px;
    }

    /* ── Highlight pillars ── */
    .pillars-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .pillar {
      background: #fafafa;
      border: 1px solid #efefef;
      border-radius: 10px;
      padding: 18px;
      transition: box-shadow .2s, border-color .2s;
    }
    .pillar:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
      border-color: #e63946;
    }
    .pillar .pillar-icon { font-size: 28px; margin-bottom: 10px; }
    .pillar h3 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
    .pillar p { font-size: 13px; color: #666; line-height: 1.6; }

    /* ── FAQ accordion ── */
    .faq-item {
      border: 1px solid #efefef;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .faq-item:last-child { margin-bottom: 0; }
    .faq-trigger {
      width: 100%;
      background: #fafafa;
      border: none;
      padding: 16px 18px;
      text-align: left;
      font-size: 14px;
      font-weight: 600;
      color: #1a1a1a;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      transition: background .15s;
      font-family: inherit;
    }
    .faq-trigger:hover { background: #fff5f5; color: #e63946; }
    .faq-trigger .arrow {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform .25s;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }
    .faq-trigger[aria-expanded="true"] .arrow { transform: rotate(180deg); }
    .faq-trigger[aria-expanded="true"] { background: #fff5f5; color: #e63946; }
    .faq-body {
      display: none;
      padding: 0 18px 16px;
      font-size: 14px;
      color: #555;
      line-height: 1.7;
      background: #fff;
    }
    .faq-body.open { display: block; }

    /* ── Map & contact sidebar ── */
    .sidebar-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .sidebar-card-header {
      background: #1a1a2e;
      color: #fff;
      padding: 16px 20px;
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sidebar-card-body { padding: 20px; }
    .sidebar-map {
      width: 100%;
      height: 180px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 16px;
      background: #e8eaed;
      position: relative;
    }
    .sidebar-map iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #f5f5f5;
      font-size: 13.5px;
    }
    .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-row .icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .contact-row .info strong { display: block; font-size: 12px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
    .contact-row .info span, .contact-row .info a { color: #1a1a1a; font-weight: 500; }
    .contact-row .info a:hover { color: #e63946; }

    /* ── Horario badge ── */
    .horario-badge {
      background: #e8f5e9;
      border: 1px solid #a5d6a7;
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 13px;
      color: #2e7d32;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
    }

    /* ── CTA sidebar ── */
    .sidebar-cta {
      background: linear-gradient(135deg, #e63946, #c1121f);
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
      color: #fff;
      margin-bottom: 20px;
    }
    .sidebar-cta h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .sidebar-cta p { font-size: 13px; opacity: .88; margin-bottom: 16px; line-height: 1.6; }
    .sidebar-cta .btn-wa {
      background: #25D366;
      color: #fff;
      padding: 11px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .2s;
      margin-bottom: 10px;
    }
    .sidebar-cta .btn-wa:hover { background: #1ebe5d; }
    .sidebar-cta .btn-mail {
      background: rgba(255,255,255,.15);
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.25);
      transition: background .2s;
    }
    .sidebar-cta .btn-mail:hover { background: rgba(255,255,255,.25); }

    /* ── Empresa data table ── */
    .empresa-data-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13.5px;
    }
    .empresa-data-table tr { border-bottom: 1px solid #f0f0f0; }
    .empresa-data-table tr:last-child { border-bottom: none; }
    .empresa-data-table td {
      padding: 11px 4px;
      vertical-align: top;
    }
    .empresa-data-table td:first-child {
      color: #888;
      font-weight: 600;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .4px;
      width: 130px;
      padding-right: 12px;
      padding-top: 13px;
    }
    .empresa-data-table td:last-child { color: #1a1a1a; font-weight: 500; }

    /* ── Timeline historia ── */
    .timeline { position: relative; padding-left: 28px; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 8px;
      top: 8px;
      bottom: 8px;
      width: 2px;
      background: linear-gradient(to bottom, #e63946, #ff8a93);
      border-radius: 2px;
    }
    .timeline-item {
      position: relative;
      margin-bottom: 22px;
    }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-dot {
      position: absolute;
      left: -24px;
      top: 4px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #e63946;
      border: 2px solid #fff;
      box-shadow: 0 0 0 2px #e63946;
    }
    .timeline-year {
      font-size: 11px;
      font-weight: 700;
      color: #e63946;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 4px;
    }
    .timeline-item h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
    .timeline-item p { font-size: 13px; color: #666; line-height: 1.6; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .empresa-layout { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .pillars-grid { grid-template-columns: 1fr; }
      .empresa-hero { padding: 36px 16px; }
    }
    .trust-badge {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: #444;
  min-width: 140px;
}
.trust-badge .badge-icon {
  font-size: 22px;
}
.trust-badge .badge-label {
  display: flex;
  flex-direction: column;
}
.trust-badge .badge-label strong {
  font-size: 13px;
  color: #1a1a1a;
}