  * {
    box-sizing: border-box;
  }

  body {
    margin: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
  }

  .ficha-empresa {
    max-width: 100%;
    margin: 0 auto;
  }

  /* --------- CABECERA EMPRESA --------- */
  .cabecera-empresa {
    display: grid;
    /* grid-template-columns: auto 1fr auto; */
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 12px;
  }

  .cabecera-empresa img {
    max-width: 140px;
    height: auto;
  }

  .cabecera-empresa h1 {
    font-family: 'Roboto Condensed', arial, 'Trebuchet MS' !important;
    font-weight: 300;
    font-size: 22px;
    color: #ac012f;
  }

  /* --------- MENÚ HORIZONTAL --------- */
  .menu-horizontal-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  /* contenedor con scroll (div) */
  .menu-scroll {
    flex: 1 1 auto;
    overflow-x: auto;
    scroll-behavior: smooth;

    /* ocultar scrollbar */
    -ms-overflow-style: none;   /* IE y Edge antiguos */
    scrollbar-width: none;      /* Firefox */
  }
  .menu-scroll::-webkit-scrollbar {
    display: none;              /* Chrome, Safari, Edge */
  }

  /* lista y elementos */
  .menu-scroll ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
  }

  .menu-scroll li {
    position: relative;
    flex: 0 0 auto;
  }

  /* separadores verticales */
  .menu-scroll li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #eeeeee;
  }

  /* flechas */
  .menu-arrow {
    border: none;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 4px rgba(0,0,0,0.25);
    border-radius: 999px;
    width: 28px;
    height: 28px;
    display: flex;              /* visibles por defecto */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin: 0 4px;
    z-index: 2;
  }
  .menu-arrow span {
    font-size: 18px;
    line-height: 1;
    padding: 8px;
  }

  .arrow-left  { margin-right: 6px; }
  .arrow-right { margin-left: 6px; }

  /* pestañas */
  .menu-tab {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    color: #000;
  }

  .menu-tab.activa {
    background: #AC012F;
    color: #fff;
  }

  .logo-rsocial {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }

  /* un poco más cómodo en móvil */
  @media (max-width: 600px) {
    body {
      margin: 8px;
    }

    .cabecera-empresa h1 {
      font-size: 16px;
    }

    .cabecera-empresa img {
        max-width: 100px;
        height: auto;
    }

    .cabecera-empresa button {
        display:none;
    }

    .menu-tab {
      padding: 10px 18px;
      font-size: 13px;
    }
  }