/**
 * MasajesEnPareja.madrid
 * Paleta: dorado/ámbar hero, rosa-magenta acentos, azul-lavanda secciones
 */

:root {
  --mp-gold: #c9a55a;
  --mp-gold-dark: #a8863f;
  --mp-pink: #d4568a;
  --mp-pink-dark: #b93d6f;
  --mp-purple: #8e44ad;
  --mp-purple-dark: #7a3a96;
  --mp-pink-light: #fce4ec;
  --mp-lavender: #e8e0f0;
  --mp-lavender-dark: #bfa8d4;
  --mp-sky: #c8dff5;
  --mp-sky-light: #eef5fc;
  --mp-text: #2d2d3a;
  --mp-text-muted: #6b6b80;
  --mp-bg: #fafbff;
  --mp-section-alt-bg: #f4f0fa;
  --mp-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --mp-shadow: 0 4px 16px rgba(0,0,0,0.08);
  --mp-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --mp-radius: 14px;
  --mp-transition: all .3s cubic-bezier(.4,0,.2,1);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--mp-bg);
  color: var(--mp-text);
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

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

.mp-text-pink { color: var(--mp-pink); }

/* ─── Top Logo ─── */

.mp-top-logo {
  background: #fff;
  padding: 1.5rem 0 1rem;
}

.mp-top-logo__img {
  max-height: 120px;
  width: auto;
}

/* ─── Navbar ─── */

.mp-navbar {
  background: #fff !important;
  padding: .3rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 1050;
  border-top: 1px solid #eee;
}

.mp-navbar .nav-link {
  color: #555 !important;
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1rem !important;
  position: relative;
}

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

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

.mp-navbar .nav-link:hover::after {
  width: 70%;
}

.mp-navbar .navbar-toggler {
  border: none;
}

.mp-navbar .navbar-toggler-icon {
  filter: none;
}

.mp-navbar__lang-flags {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.mp-navbar__lang-flags a {
  display: inline-block;
  opacity: .5;
  transition: var(--mp-transition);
}

.mp-navbar__lang-flags a:hover,
.mp-navbar__lang-flags a.active {
  opacity: 1;
}

.mp-navbar__lang-flags img {
  width: 24px;
  height: auto;
  border-radius: 2px;
}

.btn-mp-whatsapp {
  background: #25d366 !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: .5rem 1.3rem;
}

.btn-mp-whatsapp:hover {
  background: #1ebe5a !important;
  color: #fff !important;
}

.btn-mp-phone {
  background: rgba(255,255,255,.15) !important;
  border: 2px solid rgba(255,255,255,.5) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: .5rem 1.3rem;
}

.btn-mp-phone:hover {
  background: rgba(255,255,255,.28) !important;
  color: #fff !important;
  border-color: #fff !important;
}

/* ─── Hero ─── */

.mp-hero {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  padding: 5rem 0 4rem;
  text-align: center;
  color: #fff;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.mp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(120,90,20,.35) 0%,
    rgba(80,60,10,.45) 50%,
    rgba(40,30,5,.55) 100%
  );
  z-index: 0;
}

.mp-hero .container {
  z-index: 1;
}

.mp-hero__logo {
  display: none;
}

.mp-hero__title {
  font-size: 2.8rem;
  font-style: italic;
  line-height: 1.2;
  text-shadow: 0 3px 12px rgba(0,0,0,.3);
  margin-bottom: 2rem;
}

.mp-hero__subtitle {
  display: none;
}

.mp-hero__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mp-hero .mp-btn-whatsapp,
.mp-hero .mp-btn-phone {
  background: var(--mp-purple) !important;
  border: none !important;
  color: #fff !important;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(142,68,173,.35);
}

.mp-hero .mp-btn-whatsapp:hover,
.mp-hero .mp-btn-phone:hover {
  background: var(--mp-purple-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142,68,173,.45);
}

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

.mp-intro {
  background: #fff;
}

.mp-intro__heading {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .3rem;
}

.mp-intro__sub {
  font-size: 1rem;
  color: var(--mp-pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
}

.mp-intro__box {
  max-width: 620px;
  background: var(--mp-sky-light);
  border-left: 4px solid var(--mp-pink);
  border-radius: 0 var(--mp-radius) var(--mp-radius) 0;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .95rem;
}

/* ─── Section Titles ─── */

.mp-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* ─── Section Backgrounds ─── */

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

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

.mp-masajista-card {
  background: #fff;
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: var(--mp-shadow-sm);
  transition: var(--mp-transition);
}

.mp-masajista-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mp-shadow);
}

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

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

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

.mp-masajista-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--mp-lavender) 0%, var(--mp-sky) 100%);
}

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

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

.mp-masaje-card {
  background: #fff;
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: var(--mp-shadow-sm);
  transition: var(--mp-transition);
  display: flex;
  flex-direction: column;
}

.mp-masaje-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mp-shadow-lg);
}

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

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

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

.mp-masaje-card__body {
  padding: 1.25rem;
  flex: 1;
}

.mp-masaje-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mp-text);
  margin-bottom: .5rem;
}

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

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

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

.btn-mp-pink {
  background: var(--mp-pink) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: .55rem 1.4rem;
  transition: var(--mp-transition);
}

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

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

.mp-review-card {
  background: #fff;
  border-radius: var(--mp-radius);
  padding: 1.5rem;
  box-shadow: var(--mp-shadow-sm);
  border-top: 3px solid var(--mp-gold);
  transition: var(--mp-transition);
  display: flex;
  flex-direction: column;
}

.mp-review-card:hover {
  box-shadow: var(--mp-shadow);
}

.mp-review-card__stars {
  color: var(--mp-gold);
  font-size: 1.1rem;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

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

.mp-review-card__author {
  font-size: .9rem;
  color: var(--mp-text);
}

/* ─── Gallery ─── */

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

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

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

/* ─── Features ─── */

.mp-feature {
  padding: 1.5rem 1rem;
}

.mp-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mp-pink) 0%, var(--mp-lavender-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(212,86,138,.25);
}

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

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

/* ─── Location ─── */

.mp-location-info {
  font-size: 1rem;
  line-height: 2;
}

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

.mp-location-info a:hover {
  color: var(--mp-pink);
}

.mp-map-wrap {
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: var(--mp-shadow);
}

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

/* ─── CTA ─── */

.mp-cta {
  background: linear-gradient(135deg, #3a2163 0%, #1e1b4b 50%, #0f172a 100%);
  color: #fff;
  text-align: center;
}

.mp-cta__title {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

.mp-cta__text {
  opacity: .88;
  font-size: 1.05rem;
}

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

.mp-page-header {
  background: linear-gradient(135deg, #3a2163 0%, #1e1b4b 100%);
  color: #fff;
  padding: 2.5rem 0;
}

.mp-page-header__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.mp-page-header__title.mp-gradient-text {
  -webkit-text-fill-color: #fff;
  background: none;
}

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

.mp-promo-bar {
  background: linear-gradient(90deg, var(--mp-pink) 0%, var(--mp-pink-dark) 100%);
  color: #fff;
  text-align: center;
  padding: .5rem 0;
  font-weight: 500;
  font-size: .85rem;
}

/* ─── Footer ─── */

.mp-footer {
  background: linear-gradient(180deg, #1e1b4b 0%, #0f0d2e 100%);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

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

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

.mp-footer a:hover {
  color: var(--mp-pink-light);
}

.mp-footer__logo {
  max-height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: .5rem;
}

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

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

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

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

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

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

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

.mp-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,.08);
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-right: .5rem;
}

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

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

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

/* ─── Generic card ─── */

.mp-card {
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow-sm);
  padding: 1.25rem;
  overflow: hidden;
}

.mp-cta-buttons {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.mp-price-table-wrap {
  padding: 0;
}

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

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

.mp-gradient-text {
  background: linear-gradient(135deg, var(--mp-pink) 0%, var(--mp-lavender-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Prose ─── */

.mp-prose {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

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

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

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

/* ─── Detail page ─── */

.mp-detail-img { border-radius: var(--mp-radius); }

.mp-detail-info { padding: 1.5rem; }

.mp-detail-info__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mp-info-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .75rem;
}

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

.mp-info-item__label {
  font-weight: 600;
  flex-shrink: 0;
}

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

.mp-price-table th,
.mp-price-table td {
  padding: .75rem 1rem;
}

.mp-price-table th {
  background: var(--mp-section-alt-bg);
  font-weight: 600;
}

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

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

.mp-features-list__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.mp-features-list__icon {
  color: #25d366;
  flex-shrink: 0;
}

.mp-card__heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ─── Carousel ─── */

.mp-carousel-wrap {
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: var(--mp-shadow);
}

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

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

.mp-carousel__placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--mp-lavender) 0%, var(--mp-sky) 100%);
  opacity: .3;
}

/* ─── Blog card ─── */

.mp-blog-card {
  background: #fff;
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: var(--mp-shadow-sm);
  transition: var(--mp-transition);
}

.mp-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mp-shadow);
}

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

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

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

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

.mp-blog-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.mp-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.mp-blog-card__title a:hover { color: var(--mp-pink); }

.mp-blog-card__excerpt {
  font-size: .9rem;
  color: #666;
  margin-bottom: .5rem;
}

.mp-blog-card__date {
  font-size: .85rem;
  color: #999;
  margin-bottom: 1rem;
}

/* ─── 404 ─── */

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

.mp-404__title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.mp-404__subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mp-404__text {
  opacity: .9;
  margin-bottom: 2rem;
}

/* ─── Responsive ─── */

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

@media (max-width: 768px) {
  .mp-top-logo { padding: 1rem 0 .5rem; }
  .mp-top-logo__img { max-height: 80px; }

  .mp-hero {
    padding: 4rem 0 3rem;
    min-height: 380px;
  }

  .mp-hero__title { font-size: 1.9rem; }

  .mp-section__title { font-size: 1.3rem; }
  .mp-intro__heading { font-size: 1.3rem; }

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

  body { padding-bottom: 70px; }
}

@media (max-width: 576px) {
  .mp-top-logo__img { max-height: 60px; }
  .mp-hero__title { font-size: 1.5rem; }
  .mp-hero { min-height: 320px; }
}

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

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

@media (max-width: 768px) {
  .mp-floating-cta { display: block; }
}

.mp-seo-copy {
  max-width: 1080px;
  color: #273142;
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: left;
}

.mp-seo-copy p:last-child {
  margin-bottom: 0;
}

html { scroll-behavior: smooth; }
