/* =========================================================
   VICON REVIEWS
   CLIENT BACK-OFFICE
========================================================= */

:root {
  --background: #f5f5f7;
  --surface: #ffffff;
  --surface-secondary: #f8f8fa;
  --surface-hover: #f2f2f4;

  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #98989d;

  --border: rgba(0, 0, 0, 0.07);
  --border-strong: rgba(0, 0, 0, 0.12);

  --accent: #1d1d1f;

  --radius-small: 10px;
  --radius-medium: 14px;
  --radius-large: 20px;

  --shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 8px 30px rgba(0, 0, 0, 0.035);
}


/* =========================================================
   RESET
========================================================= */

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


html {
  min-width: 320px;
  min-height: 100%;

  background: var(--background);

  scroll-behavior: smooth;
}


body {
  margin: 0;

  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;

  background: var(--background);

  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-size: 14px;

  letter-spacing: -0.012em;

  -webkit-font-smoothing: antialiased;

  overflow-x: hidden;
}


button,
input,
select {
  font: inherit;
}


button {
  border: 0;
  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}


a {
  color: inherit;
}


.hidden {
  display: none !important;
}


/* =========================================================
   TEXTOS
========================================================= */

.eyebrow {
  margin: 0 0 7px;

  color: var(--text-tertiary);

  font-size: 9px;

  font-weight: 750;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


/* =========================================================
   BOTONES
========================================================= */

.mini-mark img{
  width: 40px;
  height: 40px;
}

.button {
  min-height: 41px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0 15px;

  border-radius: var(--radius-small);

  font-size: 11px;

  font-weight: 650;

  white-space: nowrap;

  transition:
    background 0.16s ease,
    transform 0.16s ease,
    border-color 0.16s ease;
}


.button:hover {
  transform: translateY(-1px);
}


.button:active {
  transform: scale(0.985);
}


.button-primary {
  background: var(--accent);

  color: #ffffff;
}


.button-primary:hover {
  background: #323235;
}


.button-secondary {
  background: var(--surface-secondary);

  border: 1px solid var(--border);

  color: var(--text);
}


/* =========================================================
   FORMULARIOS
========================================================= */

input,
select {
  width: 100%;

  min-width: 0;

  min-height: 42px;

  padding: 0 12px;

  border: 1px solid var(--border);

  border-radius: var(--radius-small);

  outline: none;

  background: var(--surface);

  color: var(--text);

  font-size: 11px;

  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}


input:hover,
select:hover {
  border-color: var(--border-strong);
}


input:focus,
select:focus {
  border-color: #a5a5aa;

  box-shadow:
    0 0 0 3px
    rgba(0, 0, 0, 0.035);
}


/* =========================================================
   LOGIN
========================================================= */

.login-shell {
  min-height: 100vh;
  min-height: 100svh;

  display: grid;

  place-items: center;

  padding: 22px;
}


.login-card {
  width: min(370px, 100%);

  padding: 38px 32px 29px;

  border: 1px solid var(--border);

  border-radius: var(--radius-large);

  background: var(--surface);

  box-shadow:
    0 20px 60px
    rgba(0, 0, 0, 0.06);

  text-align: center;
}


.login-mark {
  width: 54px;
  height: 54px;

  margin: 0 auto 19px;

  display: grid;

  place-items: center;

  border-radius: 15px;

  background: var(--accent);

  color: #fff;

  font-size: 18px;

  font-weight: 800;
}


.login-card h1 {
  margin: 0;

  font-size: 31px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: -0.05em;
}


.login-description {
  max-width: 280px;

  margin: 11px auto 0;

  color: var(--text-secondary);

  font-size: 12px;

  line-height: 1.5;
}


.login-fields {
  display: grid;

  gap: 11px;

  margin-top: 27px;

  text-align: left;
}


.login-fields label {
  display: grid;

  gap: 5px;
}


.login-fields label > span {
  color: var(--text-secondary);

  font-size: 9px;
}


.login-button {
  width: 100%;

  min-height: 44px;

  margin-top: 14px;
}


.error-message {
  min-height: 18px;

  margin: 10px 0 0;

  color: #b42318;

  font-size: 10px;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {
  position: sticky;

  top: 0;

  z-index: 50;

  width: 100%;

  border-bottom: 1px solid var(--border);

  background:
    rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);
}


.topbar-inner {
  width: min(1180px, calc(100% - 40px));

  min-height: 62px;

  margin: auto;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.topbar-brand {
  min-width: 0;

  display: flex;

  align-items: center;

  gap: 10px;
}


.topbar-mark {
  width: 34px;
  height: 34px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  border-radius: 9px;

  background: var(--accent);

  color: white;

  font-size: 11px;

  font-weight: 800;
}


.topbar-copy {
  min-width: 0;
}


.topbar-copy strong {
  display: block;

  max-width: 400px;

  overflow: hidden;

  font-size: 13px;

  white-space: nowrap;

  text-overflow: ellipsis;
}


.topbar-copy span {
  display: block;

  margin-top: 2px;

  color: var(--text-tertiary);

  font-size: 9px;
}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard {
  width: min(1180px, calc(100% - 40px));

  margin: 42px auto 60px;
}


/* =========================================================
   INTRO + SOPORTE
========================================================= */

.dashboard-intro {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    255px;

  gap: 20px;

  align-items: stretch;

  margin-bottom: 15px;
}


.dashboard-heading {
  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;
}


.dashboard-heading h1 {
  margin: 0;

  font-size: clamp(36px, 4vw, 48px);

  line-height: 0.98;

  font-weight: 700;

  letter-spacing: -0.06em;
}


.dashboard-heading > p:not(.eyebrow) {
  max-width: 560px;

  margin: 12px 0 0;

  color: var(--text-secondary);

  font-size: 12px;

  line-height: 1.55;
}


/* =========================================================
   SOPORTE
========================================================= */

.support-card {
  min-width: 0;
  display: grid;
  grid-template-columns:
    42px
    minmax(0, 1fr)
    auto;

  gap: 13px;

  align-items: center;

  padding: 18px;

  border-radius: var(--radius-large);

  background:
    linear-gradient(
      145deg,
      #252528,
      #151517
    );

  color: white;

  text-decoration: none;

  box-shadow:
    0 14px 40px
    rgba(0, 0, 0, 0.12);

  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}


.support-card:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 48px
    rgba(0, 0, 0, 0.17);
}


.support-icon {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  background:
    rgba(255, 255, 255, 0.1);

  font-size: 16px;

  font-weight: 700;
}


.support-copy {
  min-width: 0;
}


.support-copy span {
  display: block;

  color:
    rgba(255, 255, 255, 0.46);

  font-size: 8px;

  font-weight: 750;

  letter-spacing: 0.1em;
}


.support-copy strong {
  display: block;

  margin-top: 6px;

  font-size: 18px;

  line-height: 1;

  letter-spacing: -0.025em;
}


.support-copy small {
  display: block;

  margin-top: 5px;

  color:
    rgba(255, 255, 255, 0.6);

  font-size: 8px;
}


.support-arrow {
  color:
    rgba(255, 255, 255, 0.6);

  font-size: 25px;

  font-weight: 300;
}


/* =========================================================
   FILTROS
========================================================= */

.filters-card {
  margin-bottom: 16px;

  padding: 14px;

  border: 1px solid var(--border);

  border-radius: var(--radius-large);

  background: var(--surface);

  box-shadow: var(--shadow);
}


.filters-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 14px;

  margin-bottom: 12px;
}


.quick-ranges {
  display: flex;

  align-items: center;

  gap: 5px;
}


.quick-ranges button {
  min-height: 32px;

  padding: 0 12px;

  border-radius: 8px;

  background: var(--surface-secondary);

  color: var(--text-secondary);

  font-size: 10px;

  font-weight: 650;

  transition:
    color 0.15s ease,
    background 0.15s ease;
}


.quick-ranges button:hover {
  background: var(--surface-hover);
}


.quick-ranges button.active {
  background: var(--accent);

  color: white;
}


.export-button {
  min-height: 36px;
}


.filter-grid {
  display: grid;

  grid-template-columns:
    135px
    135px
    minmax(180px, 1fr)
    minmax(145px, 0.7fr)
    auto;

  gap: 8px;

  align-items: end;
}


.filter-grid label {
  min-width: 0;

  display: grid;

  gap: 5px;
}


.filter-grid label > span {
  padding-left: 2px;

  color: var(--text-secondary);

  font-size: 9px;

  font-weight: 600;
}


.apply-button {
  min-width: 86px;

  min-height: 42px;
}


/* =========================================================
   MÉTRICAS
========================================================= */

.metrics {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  margin-bottom: 16px;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: var(--radius-large);

  background: var(--surface);

  box-shadow: var(--shadow);
}


.metric {
  min-width: 0;

  min-height: 124px;

  padding: 19px 20px;

  display: flex;

  flex-direction: column;
}


.metric:not(:last-child) {
  border-right: 1px solid var(--border);
}


.metric-label,
.metric > span {
  color: var(--text-secondary);

  font-size: 10px;
}


.metric > strong,
.metric-value-row strong {
  margin-top: auto;

  color: var(--text);

  font-size: clamp(30px, 3vw, 36px);

  line-height: 1;

  font-weight: 700;

  letter-spacing: -0.055em;
}


.metric-value-row {
  margin-top: auto;

  display: flex;

  align-items: baseline;

  gap: 5px;
}


.metric-value-row span {
  color: var(--text-tertiary);

  font-size: 10px;
}


.metric small {
  margin-top: 6px;

  color: var(--text-tertiary);

  font-size: 8px;
}


/* =========================================================
   TARJETAS CONTENIDO
========================================================= */

.content-card {
  width: 100%;

  margin-bottom: 16px;

  padding: 22px;

  border: 1px solid var(--border);

  border-radius: var(--radius-large);

  background: var(--surface);

  box-shadow: var(--shadow);
}


.section-header {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 19px;
}


.section-header > div {
  min-width: 0;
}


.section-header h2 {
  margin: 0;

  color: var(--text);

  font-size: 22px;

  line-height: 1.1;

  font-weight: 680;

  letter-spacing: -0.04em;
}


.section-header p:not(.eyebrow) {
  margin: 7px 0 0;

  color: var(--text-secondary);

  font-size: 10px;

  line-height: 1.45;
}


/* =========================================================
   QUITAR FILTRO
========================================================= */

.clear-filter {
  flex-shrink: 0;

  padding: 7px 10px;

  border-radius: 8px;

  background: var(--surface-secondary);

  color: var(--text-secondary);

  font-size: 9px;

  font-weight: 600;
}


/* =========================================================
   DISTRIBUCIÓN
========================================================= */

.distribution {
  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: var(--radius-medium);

  background: var(--surface-secondary);
}


.distribution-card {
  appearance: none;

  min-width: 0;

  min-height: 132px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 15px 5px 13px;

  border-radius: 0;

  background: transparent;

  color: var(--text);

  transition:
    background 0.16s ease,
    box-shadow 0.16s ease;
}


.distribution-card:not(:last-child) {
  border-right: 1px solid var(--border);
}


.distribution-card:hover {
  background: white;
}


.distribution-card.selected {
  position: relative;

  z-index: 2;

  background: white;
}


.distribution-card strong {
  margin-top: 10px;

  font-size: 18px;

  line-height: 1;

  font-weight: 700;
}


.distribution-card > span:last-child {
  margin-top: 4px;

  color: var(--text-tertiary);

  font-size: 8px;

  font-weight: 600;
}


/* =========================================================
   CARITAS
========================================================= */

.dashboard-face {
  position: relative;

  display: block;

  flex-shrink: 0;

  width: 53px;
  height: 53px;

  margin: 0 auto;

  border: 3px solid currentColor;

  border-radius: 50%;
}


.dashboard-face.rating-1 {
  background: #ff2828;
  color: #c70000;
}


.dashboard-face.rating-2 {
  background: #ff7428;
  color: #df3900;
}


.dashboard-face.rating-3 {
  background: #ffda35;
  color: #dda000;
}


.dashboard-face.rating-4 {
  background: #91ea2c;
  color: #00a719;
}


.dashboard-face.rating-5 {
  background: #1dca3d;
  color: #008817;
}


/* OJOS */

.dashboard-eyes::before,
.dashboard-eyes::after {
  content: "";

  position: absolute;

  top: 16px;

  width: 4px;
  height: 8px;

  border-radius: 999px;

  background:
    rgba(28, 30, 33, 0.72);
}


.dashboard-eyes::before {
  left: 13px;
}


.dashboard-eyes::after {
  right: 13px;
}


/* BOCAS */

.dashboard-mouth {
  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  color:
    rgba(28, 30, 33, 0.72);
}


.dashboard-mouth.sad-1 {
  bottom: 7px;

  width: 24px;
  height: 12px;

  border-top: 3px solid currentColor;

  border-radius: 50% 50% 0 0;
}


.dashboard-mouth.sad-2 {
  bottom: 9px;

  width: 23px;
  height: 9px;

  border-top: 3px solid currentColor;

  border-radius: 50% 50% 0 0;
}


.dashboard-mouth.neutral {
  bottom: 12px;

  width: 23px;

  border-top: 3px solid currentColor;
}


.dashboard-mouth.happy-1 {
  bottom: 10px;

  width: 23px;
  height: 10px;

  border-bottom: 3px solid currentColor;

  border-radius: 0 0 50% 50%;
}


.dashboard-mouth.happy-2 {
  bottom: 7px;

  width: 24px;
  height: 14px;

  border-bottom: 3px solid currentColor;

  border-radius: 0 0 50% 50%;
}


/* =========================================================
   RESEÑAS
========================================================= */

.reviews-header {
  align-items: center;
}


.review-count {
  flex-shrink: 0;

  padding: 6px 9px;

  border: 1px solid var(--border);

  border-radius: 999px;

  background: var(--surface-secondary);

  color: var(--text-secondary);

  font-size: 9px;

  font-weight: 650;
}


.reviews-list {
  width: 100%;

  max-height: 420px;

  display: flex;

  flex-direction: column;

  overflow-y: auto;
  overflow-x: hidden;

  border: 1px solid var(--border);

  border-radius: var(--radius-medium);

  background: var(--surface);

  overscroll-behavior: contain;

  scrollbar-width: thin;

  scrollbar-color:
    #d1d1d6
    transparent;
}


.reviews-list::-webkit-scrollbar {
  width: 6px;
}


.reviews-list::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background: #d1d1d6;
}


/* =========================================================
   RESEÑA INDIVIDUAL
========================================================= */

.review-card {
  flex-shrink: 0;

  min-width: 0;

  padding: 14px 16px;

  background: var(--surface);

  transition: background 0.15s ease;
}


.review-card:not(:last-child) {
  border-bottom: 1px solid var(--border);
}


.review-card:hover {
  background: #fafafa;
}


.review-top {
  min-width: 0;

  display: grid;

  grid-template-columns:
    44px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 12px;
}


.review-face {
  width: 44px;

  display: flex;

  align-items: center;
  justify-content: center;
}


.review-main {
  min-width: 0;
}


.review-point {
  display: block;

  max-width: 100%;

  overflow: hidden;

  font-size: 11px;

  font-weight: 680;

  white-space: nowrap;

  text-overflow: ellipsis;
}


.review-email {
  display: block;

  max-width: 100%;

  margin-top: 3px;

  overflow: hidden;

  color: var(--text-secondary);

  font-size: 11px;

  text-decoration: none;

  white-space: nowrap;

  text-overflow: ellipsis;
}


.review-email[href]:hover {
  color: var(--text);

  text-decoration: underline;
}


.review-date {
  color: var(--text-tertiary);

  font-size: 12px;

  white-space: nowrap;
}


.review-comment {

  padding-left: 56px;

  color: #55555a;

  font-size: 12px;

  line-height: 1.55;

  overflow-wrap: anywhere;
}


/* =========================================================
   CARITA MINI
========================================================= */

.mini-face {
  width: 39px;
  height: 39px;

  border-width: 2px;
}


.mini-face .dashboard-eyes::before,
.mini-face .dashboard-eyes::after {
  top: 12px;

  width: 3px;
  height: 6px;
}


.mini-face .dashboard-eyes::before {
  left: 10px;
}


.mini-face .dashboard-eyes::after {
  right: 10px;
}


.mini-face .dashboard-mouth.sad-1,
.mini-face .dashboard-mouth.sad-2,
.mini-face .dashboard-mouth.neutral,
.mini-face .dashboard-mouth.happy-1,
.mini-face .dashboard-mouth.happy-2 {
  width: 18px;

  border-width: 2px;
}


.mini-face .dashboard-mouth.sad-1 {
  bottom: 5px;
  height: 9px;
}


.mini-face .dashboard-mouth.sad-2 {
  bottom: 7px;
  height: 7px;
}


.mini-face .dashboard-mouth.neutral {
  bottom: 9px;
}


.mini-face .dashboard-mouth.happy-1 {
  bottom: 7px;
  height: 8px;
}


.mini-face .dashboard-mouth.happy-2 {
  bottom: 5px;
  height: 10px;
}


/* =========================================================
   VACÍO
========================================================= */

.empty-reviews {
  padding: 44px 16px;

  color: var(--text-secondary);

  text-align: center;

  font-size: 10px;

  line-height: 1.5;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 5px;

  margin-top: 22px;

  color: var(--text-tertiary);

  font-size: 8px;

  letter-spacing: 0.1em;
}


.footer strong {
  color: var(--text-secondary);

  font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .dashboard,
  .topbar-inner {
    width: calc(100% - 30px);
  }


  .dashboard-intro {
    grid-template-columns:
      minmax(0, 1fr)
      225px;
  }


  .filter-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .apply-button {
    grid-column: 1 / -1;

    width: 100%;
  }


  .metrics {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .metric:nth-child(2) {
    border-right: 0;
  }


  .metric:nth-child(1),
  .metric:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

}


/* =========================================================
   TABLET VERTICAL
========================================================= */

@media (max-width: 720px) {

  .dashboard-intro {
    grid-template-columns: 1fr;
  }


  .support-card {
    min-height: 0;
  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

  .topbar-inner {
    width: calc(100% - 20px);

    min-height: 56px;
  }


  .topbar-mark {
    width: 31px;
    height: 31px;
  }


  .topbar-copy strong {
    max-width: 180px;

    font-size: 12px;
  }


  .logout-button {
    min-height: 34px;

    padding: 0 11px;

    font-size: 9px;
  }


  /* DASHBOARD */

  .dashboard {
    width: calc(100% - 18px);

    margin: 27px auto 34px;
  }


  /* INTRO */

  .dashboard-intro {
    gap: 14px;

    margin-bottom: 12px;
  }


  .dashboard-heading h1 {
    font-size: 33px;
  }


  .dashboard-heading > p:not(.eyebrow) {
    font-size: 11px;
  }


  /* SOPORTE */

  .support-card {
    grid-template-columns:
      38px
      minmax(0, 1fr)
      auto;

    gap: 11px;

    padding: 13px;

    border-radius: 14px;
  }


  .support-icon {
    width: 38px;
    height: 38px;

    border-radius: 10px;
  }


  .support-copy strong {
    font-size: 16px;
  }


  /* FILTROS */

  .filters-card {
    margin-bottom: 12px;

    padding: 9px;

    border-radius: 13px;
  }


  .filters-top {
    display: block;

    margin-bottom: 9px;
  }


  .quick-ranges {
    width: 100%;

    display: grid;

    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 3px;

    margin-bottom: 8px;
  }


  .quick-ranges button {
    min-width: 0;

    min-height: 33px;

    padding: 0 3px;

    font-size: 9px;
  }


  .export-button {
    width: 100%;

    min-height: 39px;
  }


  .filter-grid {
    grid-template-columns:
      1fr
      1fr;

    gap: 7px;
  }


  .filter-grid label:nth-child(3),
  .filter-grid label:nth-child(4) {
    grid-column: 1 / -1;
  }


  .filter-grid input,
  .filter-grid select {
    min-height: 40px;

    font-size: 10px;
  }


  .apply-button {
    grid-column: 1 / -1;

    width: 100%;
  }


  /* MÉTRICAS */

  .metrics {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    margin-bottom: 12px;

    border-radius: 13px;
  }


  .metric {
    min-height: 104px;

    padding: 14px;
  }


  .metric > strong,
  .metric-value-row strong {
    font-size: 27px;
  }


  .metric-label,
  .metric > span {
    font-size: 9px;
  }


  /* CONTENIDO */

  .content-card {
    margin-bottom: 12px;

    padding: 14px;

    border-radius: 13px;
  }


  .section-header {
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 14px;
  }


  .section-header h2 {
    font-size: 20px;
  }


  .section-header p:not(.eyebrow) {
    font-size: 9px;
  }


  /* DISTRIBUCIÓN */

  .distribution {
    border-radius: 10px;
  }


  .distribution-card {
    min-height: 101px;

    padding: 11px 2px 9px;
  }


  .dashboard-face {
    width: 39px;
    height: 39px;

    border-width: 2px;
  }


  .dashboard-eyes::before,
  .dashboard-eyes::after {
    top: 12px;

    width: 3px;
    height: 6px;
  }


  .dashboard-eyes::before {
    left: 10px;
  }


  .dashboard-eyes::after {
    right: 10px;
  }


  .dashboard-mouth.sad-1,
  .dashboard-mouth.sad-2,
  .dashboard-mouth.neutral,
  .dashboard-mouth.happy-1,
  .dashboard-mouth.happy-2 {
    width: 17px;

    border-width: 2px;
  }


  .dashboard-mouth.sad-1 {
    bottom: 5px;
    height: 9px;
  }


  .dashboard-mouth.sad-2 {
    bottom: 7px;
    height: 7px;
  }


  .dashboard-mouth.neutral {
    bottom: 9px;
  }


  .dashboard-mouth.happy-1 {
    bottom: 7px;
    height: 8px;
  }


  .dashboard-mouth.happy-2 {
    bottom: 5px;
    height: 10px;
  }


  .distribution-card strong {
    margin-top: 7px;

    font-size: 14px;
  }


  .distribution-card > span:last-child {
    margin-top: 2px;

    font-size: 7px;
  }


  /* RESEÑAS */

  .review-count {
    padding: 5px 8px;

    font-size: 8px;
  }


  .reviews-list {
    max-height: 470px;

    border-radius: 10px;
  }


  .review-card {
    padding: 12px;
  }


  .review-top {
    grid-template-columns:
      42px
      minmax(0, 1fr);

    gap: 8px;
  }


  .review-date {
    grid-column: 2;

    margin-top: -2px;
  }


  .review-comment {
    margin-top: 9px;

    padding-left: 50px;

    font-size: 10px;
  }


  .mini-face {
    width: 36px;
    height: 36px;
  }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 380px) {

  .dashboard {
    width: calc(100% - 14px);
  }


  .topbar-copy strong {
    max-width: 145px;
  }


  .metric {
    padding: 12px;
  }


  .metric > strong,
  .metric-value-row strong {
    font-size: 24px;
  }


  .dashboard-face {
    width: 35px;
    height: 35px;
  }


  .distribution-card {
    min-height: 92px;
  }


  .review-comment {
    padding-left: 47px;
  }

}


/* =========================================================
   DESKTOP GRANDE
========================================================= */

@media (min-width: 1450px) {

  .dashboard,
  .topbar-inner {
    width: min(1240px, calc(100% - 60px));
  }


  .dashboard-heading h1 {
    font-size: 50px;
  }


  .reviews-list {
    max-height: 450px;
  }

}


/* =========================================================
   REDUCIR MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition: none !important;

    animation: none !important;
  }

}