/* =========================================================
   ATMAIA TENANT CSS (namespaced)
   Solo aplica cuando <body class="tenant-atmaia"> existe.
   ========================================================= */

.tenant-atmaia {
  --bg: #f7f5f2;
  --bg-contrast: #ffffff;
  --text: #2c2a28;
  --muted: #6e6a67;
  --accent: #c9a15b;
  --accent-soft: #e7d8b4;
  --maxw: 1100px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(3, 2, 2, 0.06);
  --logo-h-desktop: 140px;
  --logo-h-mobile: 95px;
  --wordmark-w-desktop: 520px;
  --wordmark-w-mobile: 360px;
}

/* Base (scoped) */
.tenant-atmaia * {
  box-sizing: border-box;
}
.tenant-atmaia {
  margin: 0;
  padding-top: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.6;
}

/* Si quieres scroll suave, solo en Atmaia */
.tenant-atmaia {
  scroll-behavior: smooth;
}

.tenant-atmaia a {
  color: inherit;
  text-decoration: none;
}
.tenant-atmaia img {
  max-width: 100%;
  height: auto;
  display: block;
}
.tenant-atmaia .wrap,
.tenant-atmaia .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.tenant-atmaia .h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0 0 0.4em;
}
.tenant-atmaia .muted {
  color: var(--muted);
}

/* Header */
.tenant-atmaia .topbar.header-three {
  position: relative;
  background: var(--bg-contrast);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 8px 0;
  z-index: 20;
  margin-top: 0;
}
.tenant-atmaia .header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 32px);
}
.tenant-atmaia .brand-mark {
  flex-shrink: 0;
  margin-left: 0;
}
.tenant-atmaia .brand-mark img {
  height: clamp(90px, 12vw, var(--logo-h-desktop));
  width: auto;
  -webkit-user-drag: none;
  user-select: none;
}
.tenant-atmaia .brand-wordmark {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(8px, 1.5vw, 18px);
}
.tenant-atmaia .brand-wordmark img {
  width: min(var(--wordmark-w-desktop), 55vw);
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
}
.tenant-atmaia .taglines {
  min-width: clamp(220px, 26vw, 320px);
  text-align: right;
  line-height: 1.25;
}
.tenant-atmaia .tagline.sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  background: linear-gradient(90deg, var(--accent), #b78c3d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.4px;
  margin: 0;
}

/* =========================================================
   HERO
   ========================================================= */

.tenant-atmaia .hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  overflow: hidden;
}
@supports (min-height: 100dvh) {
  .tenant-atmaia .hero {
    min-height: 100dvh;
  }
}
@media (max-width: 760px) {
  .tenant-atmaia .hero {
    min-height: 80svh;
  }
}
@supports (min-height: 80dvh) {
  @media (max-width: 760px) {
    .tenant-atmaia .hero {
      min-height: 80dvh;
    }
  }
}

.tenant-atmaia .hero-gallery.gallery-fade {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.tenant-atmaia .hero-gallery .gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}
.tenant-atmaia .hero-gallery .gallery-slide.is-active {
  opacity: 1;
}
.tenant-atmaia .hero-gallery .gallery-dots {
  display: none;
}
.tenant-atmaia .hero-gallery img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}
.tenant-atmaia .hero-gallery .hero-picture {
  width: 100%;
  height: 100%;
  display: block;
}
.tenant-atmaia .hero-gallery .hero-picture,
.tenant-atmaia .hero-gallery .hero-picture > img {
  width: 100%;
  height: 100%;
  display: block;
}

.tenant-atmaia .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.2));
  z-index: -1;
}
.tenant-atmaia .hero .hero-inner {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 clamp(32px, 5vw, 60px);
  z-index: 0;
}
.tenant-atmaia .hero h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.tenant-atmaia .hero .sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin: 8px 0 0;
  line-height: 1.5;
}
.tenant-atmaia .hero-cta {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

/* Acciones */
.tenant-atmaia .actions {
  background: var(--bg);
  padding: 18px 0 28px;
}
.tenant-atmaia .cta-row {
  display: flex;
  gap: 12px;
  row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.tenant-atmaia .btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: linear-gradient(180deg, var(--accent), #b88c40);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 161, 91, 0.25);
  transition:
    transform 180ms ease,
    box-shadow 220ms ease;
}
.tenant-atmaia .btn:hover,
.tenant-atmaia .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 161, 91, 0.35);
}
.tenant-atmaia .btn-alt {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text);
  transition:
    transform 180ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 220ms ease;
}
.tenant-atmaia .btn-alt:hover,
.tenant-atmaia .btn-alt:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(201, 161, 91, 0.16);
}
.tenant-atmaia .btn:focus-visible,
.tenant-atmaia .btn-alt:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0);
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--accent);
}

.tenant-atmaia .btn-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  line-height: 1;
}
.tenant-atmaia .btn-with-icon .btn-icon {
  color: #ffffff;
  flex: 0 0 auto;
  width: 2em;
  height: 2em;
  display: inline-block;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
}
.tenant-atmaia .btn-with-icon .btn-icon .icon-fill {
  fill: currentColor;
}
.tenant-atmaia .btn-with-icon .btn-icon .icon-stroke {
  fill: none;
  stroke: rgba(0, 0, 0, 0.45);
}
.tenant-atmaia .btn-with-icon .btn-icon path {
  fill: currentColor;
  stroke: none;
}
.tenant-atmaia .btn-primary {
  color: #fff;
}
.tenant-atmaia .btn-primary .btn-icon {
  color: currentColor;
}

/* Secciones / Cards */
.tenant-atmaia .section {
  padding: 56px 0;
}
.tenant-atmaia .grid {
  display: grid;
  gap: 18px;
}
.tenant-atmaia .grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.tenant-atmaia .grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tenant-atmaia .card {
  background: var(--bg-contrast);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  font-style: italic;
}
.tenant-atmaia .card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 0.4em;
  color: var(--text);
  transition: color 0.35s ease;
  font-style: normal;
}
.tenant-atmaia .card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  transition: color 0.35s ease;
  min-height: 3.8em;
}
.tenant-atmaia .card .btn,
.tenant-atmaia .card .btn-alt {
  display: inline-block;
  margin-top: 15px;
}
.tenant-atmaia .card:hover {
  background: linear-gradient(180deg, var(--accent-soft), #f4e8c8);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 161, 91, 0.25);
}
.tenant-atmaia .card:hover h3 {
  color: var(--accent);
}
.tenant-atmaia .card:hover p {
  color: var(--text);
}
.tenant-atmaia #nosotros .grid,
.tenant-atmaia #clases .grid {
  margin-top: 24px;
}

/* Clases */
.tenant-atmaia #clases .grid {
  align-items: stretch;
}
.tenant-atmaia #clases .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.tenant-atmaia #clases .card p {
  margin-bottom: 0.5rem;
  min-height: 5.4em;
}
.tenant-atmaia #clases .card .btn,
.tenant-atmaia #clases .card .btn-alt {
  margin-top: auto;
  align-self: center;
}

/* Anclas */
.tenant-atmaia #nosotros,
.tenant-atmaia #clases,
.tenant-atmaia #planes,
.tenant-atmaia #profesores,
.tenant-atmaia #talleres,
.tenant-atmaia #ubicacion,
.tenant-atmaia #contacto {
  scroll-margin-top: 16px;
}

/* Responsive header */
@media (max-width: 980px) {
  .tenant-atmaia .taglines {
    min-width: 220px;
  }
}
@media (max-width: 760px) {
  .tenant-atmaia .header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .tenant-atmaia .brand-mark {
    margin-left: 0;
  }
  .tenant-atmaia .brand-mark img {
    height: clamp(70px, 18vw, var(--logo-h-mobile));
  }
  .tenant-atmaia .brand-wordmark {
    padding-left: 0;
    justify-content: center;
  }
  .tenant-atmaia .brand-wordmark img {
    width: min(var(--wordmark-w-mobile), 80vw);
  }
  .tenant-atmaia .taglines {
    text-align: center;
    min-width: 0;
  }
  .tenant-atmaia .wrap,
  .tenant-atmaia .container {
    padding: 0 18px;
  }
  .tenant-atmaia .cta-row {
    gap: 10px;
  }
}

/* Contacto */
.tenant-atmaia .contacto {
  text-align: left;
}
.tenant-atmaia .contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.tenant-atmaia .contact-list li {
  display: grid;
  grid-template-columns: 26px auto;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.tenant-atmaia .contact-list a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s ease;
}
.tenant-atmaia .contact-list a:hover {
  color: var(--accent);
}
.tenant-atmaia .icon {
  width: 22px;
  height: 22px;
  stroke: var(--muted);
  flex-shrink: 0;
  transition: stroke 0.25s ease;
}
.tenant-atmaia .contact-list li:hover .icon {
  stroke: var(--accent);
}
@media (max-width: 600px) {
  .tenant-atmaia .contact-list {
    gap: 14px;
  }
  .tenant-atmaia .contact-list li {
    font-size: 1rem;
  }
}

/* Footer */
.tenant-atmaia .footer {
  background: var(--bg-contrast);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 0;
  text-align: left;
  font-size: 0.95rem;
  color: var(--muted);
}
.tenant-atmaia .footer .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.tenant-atmaia .footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
.tenant-atmaia .footer a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Ubicación mapa */
.tenant-atmaia .map-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  height: 0;
  margin-top: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tenant-atmaia .map-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}
.tenant-atmaia .ubicacion-content {
  margin-top: 20px;
}
.tenant-atmaia #ubicacion .btn-row {
  justify-content: flex-start;
}

/* Reveal */
.tenant-atmaia [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.6s ease;
}
.tenant-atmaia [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .tenant-atmaia [data-reveal] {
    transition: none;
    transform: none;
  }
}
.tenant-atmaia .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}

/* Horario figure */
.tenant-atmaia .horario-figure {
  max-width: 720px;
  margin: 24px auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-contrast);
}
.tenant-atmaia .horario-figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* Accesibilidad */
.tenant-atmaia .visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* TESTIMONIOS */
.tenant-atmaia .testimonial-slider {
  position: relative;
  margin-top: 16px;
  background: var(--bg-contrast);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 26px;
  overflow: hidden;
}
.tenant-atmaia .ts-slides {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
  position: relative;
  height: auto;
  transition: height 300ms ease;
}
.tenant-atmaia .ts-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 600ms ease,
    transform 650ms ease;
  pointer-events: none;
}
.tenant-atmaia .ts-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.tenant-atmaia .ts-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-template-areas: "avatar quote" "author quote";
  align-items: start;
  gap: 12px 22px;
  text-align: left;
  padding: 14px 16px 18px;
}
.tenant-atmaia .ts-avatar {
  grid-area: avatar;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
  justify-self: start;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  filter: none !important;
}
.tenant-atmaia .ts-avatar:hover {
  filter: none !important;
}
.tenant-atmaia .ts-author {
  grid-area: author;
  justify-self: center;
  align-self: start;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-top: 2px;
}
.tenant-atmaia .ts-quote {
  grid-area: quote;
  position: relative;
  margin: 0 0 6px 0;
  overflow: hidden;
  line-height: 1.45;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text);
}
.tenant-atmaia .ts-slide:not(.is-expanded) .ts-quote {
  max-height: 7.5em;
}
.tenant-atmaia .ts-slide.is-expanded .ts-quote {
  max-height: none;
}
.tenant-atmaia .ts-more {
  grid-column: 2;
  align-self: start;
  justify-self: start;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.tenant-atmaia .ts-more:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 16px rgba(201, 161, 91, 0.12);
}
.tenant-atmaia .ts-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.18ms ease,
    box-shadow 0.22s ease,
    background 0.2s ease;
  z-index: 2;
}
.tenant-atmaia .ts-control:hover {
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
.tenant-atmaia .ts-prev {
  left: 8px;
}
.tenant-atmaia .ts-next {
  right: 8px;
}
.tenant-atmaia .ts-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
.tenant-atmaia .ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.tenant-atmaia .ts-dot.is-active {
  background: var(--accent);
}
@media (max-width: 760px) {
  .tenant-atmaia .ts-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 16px 14px 20px;
    gap: 10px;
  }
  .tenant-atmaia .ts-avatar {
    width: 88px;
    height: 88px;
    margin: 0 auto 4px;
  }
  .tenant-atmaia .ts-author {
    text-align: center;
  }
  .tenant-atmaia .ts-quote {
    width: 100%;
    text-align: left;
  }
  .tenant-atmaia .ts-more {
    align-self: center;
  }
  .tenant-atmaia .ts-control {
    display: none;
  }
}

/* Galerías con fundido (Nosotros + Profesores) */
.tenant-atmaia .nosotros-gallery,
.tenant-atmaia .profesores-gallery {
  margin: 18px auto 0;
  max-width: 720px;
  aspect-ratio: 3 / 2;
  max-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-contrast);
  position: relative;
}
.tenant-atmaia .nosotros-gallery .gallery-slide,
.tenant-atmaia .profesores-gallery .gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}
.tenant-atmaia .nosotros-gallery .gallery-slide.is-active,
.tenant-atmaia .profesores-gallery .gallery-slide.is-active {
  opacity: 1;
}
.tenant-atmaia .nosotros-gallery img,
.tenant-atmaia .profesores-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tenant-atmaia .nosotros-gallery .gallery-dots,
.tenant-atmaia .profesores-gallery .gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.tenant-atmaia .nosotros-gallery .gallery-dots button,
.tenant-atmaia .profesores-gallery .gallery-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.tenant-atmaia .nosotros-gallery .gallery-dots button.is-active,
.tenant-atmaia .profesores-gallery .gallery-dots button.is-active {
  background: var(--accent);
}
@supports not (aspect-ratio: 3 / 2) {
  .tenant-atmaia .nosotros-gallery,
  .tenant-atmaia .profesores-gallery {
    height: 0;
    padding-top: 66.6667%;
  }
  .tenant-atmaia .nosotros-gallery .gallery-slide,
  .tenant-atmaia .profesores-gallery .gallery-slide,
  .tenant-atmaia .nosotros-gallery img,
  .tenant-atmaia .profesores-gallery img {
    position: absolute;
  }
}

/* Mini-galerías dentro de cards */
.tenant-atmaia .card .mini-gallery {
  position: relative;
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  margin: 10px 0 12px;
  aspect-ratio: 16 / 9;
}
.tenant-atmaia .card .mini-gallery .mg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease-in-out;
}
.tenant-atmaia .card .mini-gallery .mg-slide.is-active {
  opacity: 1;
}
.tenant-atmaia .card .mini-gallery picture,
.tenant-atmaia .card .mini-gallery img {
  width: 100%;
  height: 100%;
  display: block;
}
.tenant-atmaia .card .mini-gallery img {
  object-fit: cover;
}
.tenant-atmaia .card .mini-gallery .mg-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.tenant-atmaia .card .mini-gallery .mg-dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
}
.tenant-atmaia .card .mini-gallery .mg-dots button.is-active {
  background: var(--accent);
}
@supports not (aspect-ratio: 16 / 9) {
  .tenant-atmaia .card .mini-gallery {
    height: 0;
    padding-top: 56.25%;
  }
  .tenant-atmaia .card .mini-gallery .mg-slide,
  .tenant-atmaia .card .mini-gallery picture,
  .tenant-atmaia .card .mini-gallery img {
    position: absolute;
    inset: 0;
  }
}

/* Rating Testimonios */
.tenant-atmaia .rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 8px 0 6px;
}
.tenant-atmaia .rating-stars {
  position: relative;
  width: 110px;
  height: 22px;
  line-height: 1;
  font-size: 22px;
}
.tenant-atmaia .rating-stars .stars-base,
.tenant-atmaia .rating-stars .stars-fill {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  letter-spacing: 2px;
}
.tenant-atmaia .rating-stars .stars-base {
  color: rgba(0, 0, 0, 0.15);
}
.tenant-atmaia .rating-stars .stars-fill {
  color: var(--accent);
  width: 0%;
  overflow: hidden;
}
.tenant-atmaia .rating-text {
  color: var(--text);
  font-size: 0.98rem;
}
.tenant-atmaia .rating-value {
  font-weight: 700;
}
.tenant-atmaia .rating-count {
  color: var(--muted);
  margin-left: 4px;
}
.tenant-atmaia .rating-link {
  margin-left: auto;
}
@media (max-width: 600px) {
  .tenant-atmaia .rating-summary {
    justify-content: center;
  }
  .tenant-atmaia .rating-link {
    margin-left: 0;
  }
}

/* Layout específico "Nosotros" */
.tenant-atmaia .grid.cols-3.nosotros-grid {
  margin-top: 24px;
  display: grid;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 880px) {
  .tenant-atmaia .grid.cols-3.nosotros-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }
  .tenant-atmaia .card-nosotros-wide {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }
}

.tenant-atmaia .parking-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--muted);
}
.tenant-atmaia .parking-list li {
  background: var(--bg-contrast);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  line-height: 1.5;
}
.tenant-atmaia .parking-list strong {
  color: var(--text);
  font-weight: 600;
}
.tenant-atmaia .parking-list em {
  font-style: italic;
  color: var(--accent);
}
.tenant-atmaia .parking-link {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
.tenant-atmaia .parking-link:hover,
.tenant-atmaia .parking-link:focus-visible {
  color: #b78c3d;
  background-color: rgba(201, 161, 91, 0.12);
  box-shadow: 0 0 0 1px rgba(201, 161, 91, 0.45);
  transform: translateY(-1px);
}