/**
 * MasajesMadrid.eu – Dark luxury theme
 * Prefix: mm-
 * Palette: dark backgrounds, orange/amber accents (#E8850A, #F59E0B)
 */

:root {
  --mm-bg: #0d0d0d;
  --mm-bg-alt: #141414;
  --mm-bg-card: #1a1a1a;
  --mm-bg-card-hover: #222;
  --mm-border: rgba(255,255,255,.08);
  --mm-orange: #E8850A;
  --mm-orange-dark: #c46e08;
  --mm-orange-light: #f5a623;
  --mm-amber: #F59E0B;
  --mm-green-wa: #25d366;
  --mm-text: #fff;
  --mm-text-body: #b8b8b8;
  --mm-text-muted: #777;
  --mm-shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --mm-shadow: 0 4px 20px rgba(0,0,0,.4);
  --mm-shadow-lg: 0 8px 35px rgba(0,0,0,.5);
  --mm-radius: 10px;
  --mm-transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Base ─── */

body.mm-theme {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--mm-bg);
  color: var(--mm-text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mm-theme main {
  background: var(--mm-bg);
}

body.mm-theme h1,
body.mm-theme h2,
body.mm-theme h3,
body.mm-theme h4,
body.mm-theme h5 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  color: var(--mm-text);
}

img { max-width: 100%; height: auto; }
a { transition: var(--mm-transition); }

.mm-text-orange { color: var(--mm-orange); }

/* ─── Promo Bar ─── */

.mm-promo-bar {
  background: linear-gradient(90deg, var(--mm-orange) 0%, var(--mm-orange-dark) 100%);
  color: #fff;
  text-align: center;
  padding: .55rem 0;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .02em;
}

/* ─── Navbar ─── */

.mm-navbar {
  background: rgba(10,10,10,.95) !important;
  backdrop-filter: blur(12px);
  padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  z-index: 1050;
  border-bottom: 1px solid var(--mm-border);
}

.mm-navbar .navbar-brand {
  padding: 0;
}

.mm-navbar .navbar-brand img {
  width: 206px;
  height: 82px;
  object-fit: contain;
}

.mm-navbar .nav-link {
  color: rgba(255,255,255,.75) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem 1rem !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
  transition: var(--mm-transition);
}

.mm-navbar .nav-link:hover,
.mm-navbar .nav-link.active {
  color: var(--mm-orange) !important;
}

.mm-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--mm-orange);
  transition: var(--mm-transition);
  transform: translateX(-50%);
}

.mm-navbar .nav-link:hover::after {
  width: 60%;
}

.mm-navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,.2);
  padding: .35rem .6rem;
}

.mm-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232,133,10,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── Buttons ─── */

.mm-btn-whatsapp,
.btn-mm-whatsapp {
  background: var(--mm-green-wa) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 4px;
  padding: .7rem 2rem;
  transition: var(--mm-transition);
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}

.mm-btn-whatsapp:hover,
.btn-mm-whatsapp:hover {
  background: #1ebe5a !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

.mm-btn-phone,
.btn-mm-phone {
  background: rgba(255,255,255,.1) !important;
  border: 2px solid rgba(255,255,255,.3) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 4px;
  padding: .7rem 2rem;
  transition: var(--mm-transition);
}

.mm-btn-phone:hover,
.btn-mm-phone:hover {
  background: rgba(255,255,255,.2) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.5) !important;
  transform: translateY(-2px);
}

.btn-mm-orange {
  background: var(--mm-orange) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 4px;
  padding: .6rem 1.5rem;
  transition: var(--mm-transition);
}

.btn-mm-orange:hover {
  background: var(--mm-orange-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-mm-outline {
  background: transparent;
  border: 2px solid var(--mm-orange);
  color: var(--mm-orange);
  font-weight: 600;
  border-radius: 4px;
  padding: .5rem 1rem;
}

.btn-mm-outline:hover {
  background: var(--mm-orange);
  color: #fff;
}

/* ─── Hero ─── */

.mm-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.mm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,.4) 0%,
    rgba(10,10,10,.35) 40%,
    rgba(10,10,10,.7) 100%
  );
  z-index: 0;
}

.mm-hero .container {
  position: relative;
  z-index: 1;
}

.mm-hero__logo {
  max-height: 70px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.5));
}

.mm-hero__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 3px 15px rgba(0,0,0,.5);
  margin-bottom: 1rem;
  color: #fff;
}

.mm-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.mm-hero__buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mm-hero .mm-btn-whatsapp,
.mm-hero .mm-btn-phone {
  padding: .85rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ─── Sections ─── */

.mm-section {
  background: var(--mm-bg);
}

.mm-section-alt {
  background: var(--mm-bg-alt);
}

.mm-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 0;
}

/* ─── Intro / Promo ─── */

.mm-intro {
  background: var(--mm-bg);
}

.mm-intro__heading {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .3rem;
}

.mm-intro__sub {
  font-size: .95rem;
  color: var(--mm-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}

.mm-intro__box {
  max-width: 650px;
  background: rgba(232,133,10,.08);
  border-left: 4px solid var(--mm-orange);
  border-radius: 0 var(--mm-radius) var(--mm-radius) 0;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .95rem;
  color: var(--mm-text-body);
}

.mm-intro__box strong {
  color: #fff;
}

/* ─── Cards – generic ─── */

.mm-card {
  background: var(--mm-bg-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
  transition: var(--mm-transition);
}

.mm-card:hover {
  background: var(--mm-bg-card-hover);
  border-color: rgba(232,133,10,.2);
  transform: translateY(-4px);
  box-shadow: var(--mm-shadow);
}

/* ─── Masajista Card ─── */

.mm-masajista-card {
  border: 1px solid var(--mm-border);
  display: flex;
  flex-direction: column;
}

.mm-masajista-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.mm-masajista-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.mm-masajista-card:hover .mm-masajista-card__img {
  transform: scale(1.05);
}

.mm-masajista-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.mm-masajista-card__name {
  padding: .9rem .75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.mm-masajista-card__info {
  padding: .9rem .85rem 1rem;
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--mm-border);
}

.mm-masajista-card__info .mm-masajista-card__name {
  padding: 0;
  margin-bottom: .65rem;
}

.mm-masajista-card__meta {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  width: 100%;
  color: var(--mm-text-body);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  padding: .4rem .55rem;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: .86rem;
  font-weight: 400;
  line-height: 1.45;
}

.mm-masajista-card__meta + .mm-masajista-card__meta {
  margin-top: .4rem;
}

.mm-masajista-card__meta i {
  color: var(--mm-orange);
  flex-shrink: 0;
  font-size: .9rem;
  line-height: 1.45;
}

/* ─── Masaje Card ─── */

.mm-masaje-card {
  display: flex;
  flex-direction: column;
}

.mm-masaje-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.mm-masaje-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.mm-masaje-card:hover .mm-masaje-card__img {
  transform: scale(1.04);
}

.mm-masaje-card__body,
.mm-masaje-card.no-img {
  padding: 1.25rem;
  flex: 1;
}

.mm-masaje-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}

.mm-masaje-card__desc {
  font-size: .9rem;
  color: var(--mm-text-muted);
  line-height: 1.6;
  margin-bottom: .75rem;
}

.mm-masaje-card__price {
  display: inline-block;
  font-weight: 700;
  color: var(--mm-orange);
  font-size: 1.05rem;
}

.mm-masaje-card__footer {
  padding: 0 1.25rem 1.25rem;
}

/* ─── Review Card ─── */

.mm-review-card {
  background: var(--mm-bg-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 1.5rem;
  border-top: 3px solid var(--mm-orange);
  transition: var(--mm-transition);
  display: flex;
  flex-direction: column;
}

.mm-review-card:hover {
  border-color: rgba(232,133,10,.25);
  border-top-color: var(--mm-orange);
  box-shadow: var(--mm-shadow-sm);
}

.mm-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}

.mm-review-card__stars {
  color: var(--mm-amber);
  font-size: 1.1rem;
  letter-spacing: .08em;
}

.mm-review-card__content {
  font-size: .93rem;
  color: var(--mm-text-muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin-bottom: .75rem;
}

.mm-review-card__author {
  font-size: .9rem;
  color: #fff;
  font-weight: 600;
}

/* ─── Gallery ─── */

.mm-gallery-img-wrap {
  overflow: hidden;
  border-radius: var(--mm-radius);
  aspect-ratio: 4/3;
  box-shadow: var(--mm-shadow-sm);
  border: 1px solid var(--mm-border);
}

.mm-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.mm-gallery-img-wrap:hover .mm-gallery-img {
  transform: scale(1.06);
}

/* ─── Features / Why Choose Us ─── */

.mm-feature {
  padding: 1.5rem 1rem;
  text-align: center;
}

.mm-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(232,133,10,.15);
  border: 1px solid rgba(232,133,10,.3);
  color: var(--mm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
  transition: var(--mm-transition);
}

.mm-feature:hover .mm-feature__icon {
  background: var(--mm-orange);
  color: #fff;
}

.mm-feature__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.mm-feature__text {
  font-size: .9rem;
  color: var(--mm-text-muted);
  line-height: 1.6;
}

/* ─── Location ─── */

.mm-location-info {
  font-size: 1rem;
  line-height: 2;
  color: var(--mm-text-body);
}

.mm-location-info a {
  color: var(--mm-text-body);
  text-decoration: none;
}

.mm-location-info a:hover {
  color: var(--mm-orange);
}

.mm-map-wrap {
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: var(--mm-shadow);
  border: 1px solid var(--mm-border);
}

.mm-map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* ─── CTA ─── */

.mm-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.mm-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.75);
  z-index: 0;
}

.mm-cta .container {
  position: relative;
  z-index: 1;
}

.mm-cta__title {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  color: #fff;
}

.mm-cta__text {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
}

/* ─── Page Header ─── */

.mm-page-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border-bottom: 1px solid var(--mm-border);
  color: #fff;
  padding: 2.5rem 0;
}

.mm-page-header__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* ─── Gradient text ─── */

.mm-gradient-text {
  background: linear-gradient(135deg, var(--mm-orange) 0%, var(--mm-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Prose ─── */

.mm-prose {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mm-text-body);
}

.mm-prose p { margin-bottom: 1rem; }

.mm-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: var(--mm-radius);
}

.mm-article {
  max-width: 1080px;
  margin: 0 auto;
}

.mm-prose h2,
.mm-prose h3 {
  color: #fff;
}

/* ─── Detail ─── */

.mm-detail-img {
  border-radius: var(--mm-radius);
  border: 1px solid var(--mm-border);
}

.mm-detail-info {
  padding: 1.5rem;
  background: var(--mm-bg-card);
  border-radius: var(--mm-radius);
  border: 1px solid var(--mm-border);
}

.mm-detail-info__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.mm-info-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .75rem;
  color: var(--mm-text-body);
}

.mm-info-item__icon {
  color: var(--mm-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mm-info-item__label {
  font-weight: 600;
  flex-shrink: 0;
  color: #fff;
}

.mm-detail-info__buttons,
.mm-cta-buttons {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ─── Price table ─── */

.mm-price-table-wrap {
  padding: 0;
  background: var(--mm-bg-card);
  border-radius: var(--mm-radius);
  border: 1px solid var(--mm-border);
  overflow: hidden;
}

.mm-price-table-wrap .mm-card__heading {
  padding: 1.25rem 1.25rem 0;
}

.mm-price-table th,
.mm-price-table td {
  padding: .75rem 1rem;
  color: var(--mm-text-body);
  border-color: var(--mm-border);
}

.mm-price-table th {
  background: rgba(232,133,10,.08);
  font-weight: 600;
  color: #fff;
}

/* ─── Features list ─── */

.mm-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mm-features-list__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  color: var(--mm-text-body);
}

.mm-features-list__icon {
  color: var(--mm-green-wa);
  flex-shrink: 0;
}

.mm-card__heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

/* ─── Carousel ─── */

.mm-carousel-wrap {
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: var(--mm-shadow);
  border: 1px solid var(--mm-border);
}

.mm-carousel .carousel-inner { border-radius: var(--mm-radius); }

.mm-carousel__img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.mm-carousel__placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

/* ─── Blog Card ─── */

.mm-blog-card {
  background: var(--mm-bg-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
  transition: var(--mm-transition);
}

.mm-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,133,10,.2);
  box-shadow: var(--mm-shadow);
}

.mm-blog-card__img-link {
  display: block;
  overflow: hidden;
}

.mm-blog-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .3s;
}

.mm-blog-card:hover .mm-blog-card__img {
  transform: scale(1.03);
}

.mm-blog-card__body { padding: 1.25rem; }

.mm-blog-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #fff;
}

.mm-blog-card__title a { color: inherit; text-decoration: none; }
.mm-blog-card__title a:hover { color: var(--mm-orange); }

.mm-blog-card__excerpt {
  font-size: .9rem;
  color: var(--mm-text-muted);
  margin-bottom: .5rem;
}

.mm-blog-card__date {
  font-size: .85rem;
  color: var(--mm-text-muted);
  margin-bottom: 1rem;
}

.mm-article__date {
  font-size: .85rem;
  color: var(--mm-text-muted);
}

/* ─── 404 ─── */

.mm-404 {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #fff;
  padding: 5rem 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.mm-404__title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--mm-orange);
}

.mm-404__subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.mm-404__text {
  opacity: .9;
  margin-bottom: 2rem;
  color: var(--mm-text-body);
}

/* ─── Footer ─── */

.mm-footer {
  background: #080808;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid var(--mm-border);
}

.mm-footer .footer-brand {
  display: block;
  margin-bottom: .75rem;
}

.mm-footer .footer-brand img {
  max-height: 36px;
  width: auto;
}

.mm-footer h5,
.mm-footer h6 {
  color: #fff;
  font-family: 'Lora', serif;
  margin-bottom: 1.25rem;
}

.mm-footer a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}

.mm-footer a:hover {
  color: var(--mm-orange);
}

.mm-footer .footer-links {
  list-style: none;
  padding: 0;
}

.mm-footer .footer-links li {
  margin-bottom: .5rem;
}

.mm-footer .footer-links a::before {
  content: '›';
  margin-right: .5rem;
  color: var(--mm-orange);
}

.mm-footer .footer-contact {
  list-style: none;
  padding: 0;
}

.mm-footer .footer-contact li {
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.mm-footer .footer-contact i {
  color: var(--mm-orange);
  width: 18px;
  text-align: center;
}

.mm-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-right: .5rem;
  transition: var(--mm-transition);
}

.mm-footer .footer-social a:hover {
  background: var(--mm-orange);
  color: #fff;
  transform: translateY(-2px);
}

.mm-footer hr {
  border-color: rgba(255,255,255,.08);
  margin: 2rem 0 1.25rem;
}

.mm-footer .footer-bottom {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}

/* ─── Override BS card inside theme ─── */

body.mm-theme .card {
  background: var(--mm-bg-card);
  border: 1px solid var(--mm-border);
  color: var(--mm-text-body);
}

body.mm-theme .bg-light {
  background: var(--mm-bg-alt) !important;
}

body.mm-theme .table {
  color: var(--mm-text-body);
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(255,255,255,.03);
  --bs-table-hover-bg: rgba(255,255,255,.05);
  border-color: var(--mm-border);
}

/* ─── Portada / Image CTA ─── */

.mm-portada {
  position: relative;
  overflow: hidden;
}

.mm-portada__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.mm-portada__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10,10,10,.85) 0%,
    rgba(10,10,10,.4) 50%,
    rgba(10,10,10,.2) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}

.mm-portada__content {
  text-align: center;
  color: #fff;
}

.mm-portada__content h2 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.mm-portada__content p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
}

/* ─── Floating CTA (Mobile) ─── */

.mm-floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(10px);
  padding: .75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
  z-index: 1040;
  display: none;
  border-top: 1px solid var(--mm-border);
}

@media (max-width: 768px) {
  .mm-floating-cta { display: block; }
  body.mm-theme { padding-bottom: 70px; }
}

/* ─── Responsive ─── */

@media (max-width: 992px) {
  .mm-navbar .navbar-collapse {
    background: #111;
    border-radius: var(--mm-radius);
    padding: 1rem;
    margin-top: .5rem;
    box-shadow: var(--mm-shadow);
    border: 1px solid var(--mm-border);
  }
}

@media (max-width: 768px) {
  .mm-hero {
    padding: 4rem 0 3rem;
    min-height: 380px;
  }

  .mm-hero__title { font-size: 1.9rem; }
  .mm-hero__logo { max-height: 50px; }

  .mm-section__title { font-size: 1.25rem; }
  .mm-intro__heading { font-size: 1.2rem; }

  .mm-page-header { padding: 2rem 0 1.5rem; }
  .mm-page-header__title { font-size: 1.4rem; }

  .mm-portada__img { height: 250px; }
}

@media (max-width: 576px) {
  .mm-hero__title { font-size: 1.5rem; }
  .mm-hero { min-height: 320px; }
  .mm-hero__logo { max-height: 40px; }
}

html { scroll-behavior: smooth; }
