/* =============================================
   VARIABLES Y RESET
   ============================================= */
:root {
  --color-crema:      #F5F0E4;
  --color-crema-2:    #FBF7EC;
  --color-beige:      #C8BFAC;
  --color-beige-light:#E8E0CF;
  --color-beige-dark: #A89880;
  --color-marron:     #5C3A1E;
  --color-marron-dark:#2E1B0E;
  --color-blanco:     #FDFAF5;
  --color-whatsapp:   #25D366;
  --color-whatsapp-h: #1ebe5d;

  /* Pastel accents inspired by reference, tonal to paleta */
  --pastel-pink:   #F5E0DC;
  --pastel-lilac:  #E2D6EC;
  --pastel-green:  #D9F2DE;
  --pastel-yellow: #F5E6B8;

  --font-display: 'Playfair Display', serif;
  --font-italic:  'Instrument Serif', 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  background: var(--color-crema);
  color: var(--color-marron-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--color-marron-dark);
  color: #fff;
  padding: 8px 16px;
  z-index: 2000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; }

.reyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-beige-light);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-marron);
}

em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
}

/* =============================================
   NAV
   ============================================= */
.rnav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: color-mix(in srgb, var(--color-crema) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.rnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.rnav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-marron-dark);
}
.rnav__asterisk {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pastel-green);
  color: var(--color-whatsapp-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.rnav__links {
  display: flex;
  gap: 4px;
  background: #fff;
  padding: 5px;
  border-radius: 50px;
  border: 1px solid var(--color-beige-light);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.rnav__links a {
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-marron);
  transition: background 0.2s, color 0.2s;
}
.rnav__pill--active,
.rnav__links a:hover {
  background: var(--color-marron-dark);
  color: #fff;
}
.rnav__cta {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--color-whatsapp);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.rnav__cta:hover { background: var(--color-whatsapp-h); transform: translateY(-1px); }
.rnav__toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 8px;
}
.rnav__toggle span {
  display: block;
  height: 2px;
  background: var(--color-marron-dark);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .rnav__links, .rnav__cta { display: none; }
  .rnav__toggle { display: flex; }
  .rnav__links.rnav__links--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 70px; left: 16px; right: 16px;
    padding: 10px;
    border-radius: 20px;
    gap: 2px;
    box-shadow: 0 12px 40px rgba(46,27,14,0.15);
  }
  .rnav__links--open a { padding: 14px 16px; text-align: center; }
}

/* =============================================
   HERO
   ============================================= */
.rhero {
  position: relative;
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  padding: 40px 0 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.rhero > .container { width: 100%; }
.rhero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.rhero__main { max-width: 780px; }

.rhero__title-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.rhero__asterisk {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--pastel-green);
  color: var(--color-whatsapp-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin-top: 14px;
}
.rhero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--color-marron-dark);
}
.rhero__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--color-marron);
  letter-spacing: -0.01em;
}

.rhero__intro-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  max-width: 560px;
}
.rhero__profile {
  position: relative;
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 3px solid var(--pastel-lilac);
  padding: 4px;
  overflow: hidden;
  background: var(--color-blanco);
}
.rhero__profile::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
}
.rhero__profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.rhero__profile-play {
  position: absolute;
  top: -4px;
  left: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--color-marron-dark);
  padding-left: 2px;
  box-shadow: 0 2px 8px rgba(46,27,14,0.2);
  border: 2px solid var(--pastel-pink);
}
.rhero__intro {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-marron-dark);
  opacity: 0.85;
}

.rhero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.rtag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-marron-dark);
  transition: transform 0.2s;
}
.rtag:hover { transform: translateY(-2px); }
.rtag i { font-size: 0.68rem; opacity: 0.75; }
.rtag--pink   { background: var(--pastel-pink); }
.rtag--lilac  { background: var(--pastel-lilac); }
.rtag--green  { background: var(--pastel-green); }
.rtag--yellow { background: var(--pastel-yellow); }

.rhero__badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rhero__badge {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--pastel-lilac);
  animation: rspin 22s linear infinite;
}
.rhero__badge svg { width: 100%; height: 100%; }
.rhero__badge text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  fill: var(--color-marron-dark);
}
.rhero__badge-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--color-marron-dark);
  animation: rspin 22s linear infinite reverse;
}
@keyframes rspin { to { transform: rotate(360deg); } }

.rhero__curve {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}

.rhero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-marron);
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.rhero__scroll:hover { opacity: 1; }
.rhero__scroll-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--color-marron);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  animation: rscroll-bounce 1.8s ease-in-out infinite;
}
@keyframes rscroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

@media (max-width: 900px) {
  .rhero__inner { grid-template-columns: 1fr; }
  .rhero__badge-wrap { display: none; }
}
@media (max-width: 560px) {
  .rhero__title-row { gap: 14px; }
  .rhero__asterisk { width: 52px; height: 52px; font-size: 1.8rem; margin-top: 6px; }
  .rhero__intro-row { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   SERVICIOS (cards jugueton)
   ============================================= */
.rservicios {
  padding: 60px 0 100px;
}
.rservicios__header {
  text-align: center;
  margin-bottom: 48px;
}
.rservicios__header .reyebrow { margin-bottom: 18px; }
.rservicios__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-marron-dark);
  letter-spacing: -0.02em;
}
.rservicios__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--color-marron);
}
.rservicios__subtitle {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--color-marron);
  opacity: 0.75;
}

.rservicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rcard {
  position: relative;
  border-radius: 28px;
  padding: 26px 28px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46,27,14,0.14);
}

.rcard--green {
  background: var(--color-whatsapp);
  color: #fff;
}
.rcard--brown {
  background: var(--color-marron-dark);
  color: #fff;
  transform: scale(1.02);
}
.rcard--brown:hover { transform: scale(1.02) translateY(-6px); }
.rcard--beige {
  background: var(--color-beige);
  color: var(--color-marron-dark);
}

.rcard__pill {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 2;
  letter-spacing: 0.03em;
}
.rcard__pill--popular { background: var(--color-whatsapp); border-color: transparent; color: #fff; }
.rcard--beige .rcard__pill {
  background: rgba(46,27,14,0.12);
  border-color: rgba(46,27,14,0.18);
}

.rcard__body {
  position: relative;
  z-index: 2;
}
.rcard__kind {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 6px;
}
.rcard__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.rcard__name em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
}
.rcard__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.rcard__price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 4px;
}

.rcard__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.rcard:hover .rcard__arrow {
  background: rgba(255,255,255,0.35);
  transform: rotate(-8deg);
}
.rcard--beige .rcard__arrow {
  background: rgba(46,27,14,0.12);
  border-color: rgba(46,27,14,0.18);
}
.rcard--beige:hover .rcard__arrow {
  background: rgba(46,27,14,0.22);
}

.rcard__blob {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.rservicios__note {
  margin-top: 36px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
}
.rservicios__note a {
  color: var(--color-marron-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .rservicios__grid { grid-template-columns: 1fr; }
  .rcard--brown { transform: none; }
  .rcard--brown:hover { transform: translateY(-6px); }
}

/* =============================================
   SOBRE
   ============================================= */
.rsobre {
  padding: 80px 0;
  background: var(--color-blanco);
}
.rsobre__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
.rsobre__img {
  position: relative;
}
.rsobre__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 50% / 40%;
  box-shadow: 0 20px 50px rgba(46,27,14,0.12);
}
.rsobre__sticker {
  position: absolute;
  top: 16px;
  right: -12px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  transform: rotate(-8deg);
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}
.rsobre__text .reyebrow { margin-bottom: 18px; }
.rsobre__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.rsobre__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--color-marron);
}
.rsobre__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-marron);
  margin-bottom: 14px;
  max-width: 520px;
}
.rsobre__text blockquote {
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 20px;
  background: var(--color-crema);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.4;
  color: var(--color-marron-dark);
  max-width: 520px;
  position: relative;
}
.rsobre__text blockquote em { color: var(--color-marron); }

@media (max-width: 860px) {
  .rsobre__inner { grid-template-columns: 1fr; gap: 40px; }
  .rsobre__img img { height: 360px; }
}

/* =============================================
   STATS
   ============================================= */
.rstats {
  padding: 60px 0;
}
.rstats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rstat {
  padding: 28px 22px;
  border-radius: 24px;
  text-align: center;
  background: var(--color-blanco);
  border: 1px solid var(--color-beige-light);
  transition: transform 0.2s;
}
.rstat:hover { transform: translateY(-3px); }
.rstat--a { background: var(--pastel-pink); border-color: transparent; }
.rstat--b { background: var(--pastel-lilac); border-color: transparent; }
.rstat--c { background: var(--pastel-green); border-color: transparent; }
.rstat--d { background: var(--pastel-yellow); border-color: transparent; }

.rstat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-marron-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rstat__unit {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--color-marron-dark);
}
.rstat__label {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-marron);
  opacity: 0.85;
}
.rstat__label i { margin-right: 4px; }

@media (max-width: 700px) {
  .rstats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   PORTAFOLIO
   ============================================= */
.rportafolio {
  padding: 80px 0;
}
.rportafolio__header {
  text-align: center;
  margin-bottom: 44px;
}
.rportafolio__header .reyebrow { margin-bottom: 18px; }
.rportafolio__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.rportafolio__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--color-marron);
}

.rportafolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rport-card {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: var(--color-blanco);
  border: 1px solid var(--color-beige-light);
  transition: transform 0.25s, box-shadow 0.25s;
}
.rport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(46,27,14,0.14);
}
.rport-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}
.rport-card__info {
  padding: 14px 18px 18px;
  text-align: left;
}
.rport-card__info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-marron-dark);
  margin-bottom: 2px;
}
.rport-card__info span {
  font-size: 0.78rem;
  color: var(--color-marron);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .rportafolio__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .rportafolio__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* =============================================
   CTA
   ============================================= */
.rcta {
  padding: 90px 0;
  background: var(--color-marron-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rcta::before,
.rcta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}
.rcta::before {
  width: 400px; height: 400px;
  background: var(--color-whatsapp);
  top: -150px; left: -100px;
}
.rcta::after {
  width: 360px; height: 360px;
  background: var(--pastel-lilac);
  bottom: -150px; right: -80px;
}
.rcta__inner { position: relative; z-index: 1; }
.rcta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.rcta__title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--pastel-yellow);
}
.rcta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--color-whatsapp);
  color: #fff !important;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.rcta__btn:hover {
  background: var(--color-whatsapp-h);
  transform: translateY(-2px);
}
.rcta__contact {
  margin-top: 28px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.rcta__contact a {
  color: rgba(255,255,255,0.7);
}
.rcta__contact a:hover {
  color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.rfooter {
  padding: 28px 0;
  background: var(--color-marron-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}
.rfooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.rfooter__social {
  display: flex;
  gap: 14px;
  font-size: 1rem;
}
.rfooter__social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, color 0.2s;
}
.rfooter__social a:hover {
  background: var(--color-whatsapp);
  color: #fff;
}

/* =============================================
   VIDEO LIGHTBOX (reutilizado)
   ============================================= */
.video-modal {
  position: fixed; inset: 0;
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.video-modal[aria-hidden="false"] { display: flex; animation: vm-fade 0.22s ease; }
@keyframes vm-fade { from { opacity: 0; } to { opacity: 1; } }
.video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,5,2,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.video-modal__dialog {
  position: relative;
  width: min(360px, calc(100vw - 48px));
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - 48px);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  animation: vm-pop 0.25s cubic-bezier(0.2,0.8,0.2,1);
}
@keyframes vm-pop { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.video-modal__frame { width: 100%; height: 100%; }
.video-modal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal__close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 2010;
}
.video-modal[aria-hidden="false"] .video-modal__close { display: flex; }
.video-modal__close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.08);
}
body.video-modal-open { overflow: hidden; }

/* =============================================
   AJUSTES SIN-VERDE (paleta unificada)
   Verde solo en botones WhatsApp específicos.
   El resto usa café/peach/amarillo/rosa/lila pastel.
   ============================================= */

:root { --pastel-green: #FCE2C9; } /* peach en vez de mint */

/* Asterisks: café en vez de verde */
.rnav__asterisk,
.rhero__asterisk { color: var(--color-marron-dark); }

/* Nav CTA: café oscuro */
.rnav__cta { background: var(--color-marron-dark); }
.rnav__cta:hover { background: var(--color-marron); }

/* Card "green" (servicio Historias) → peach pastel */
.rcard--green {
  background: var(--pastel-green);
  color: var(--color-marron-dark);
}
.rcard--green .rcard__pill {
  background: rgba(46,27,14,0.1);
  border-color: rgba(46,27,14,0.18);
  color: var(--color-marron-dark);
}
.rcard--green .rcard__arrow {
  background: rgba(46,27,14,0.12);
  border-color: rgba(46,27,14,0.2);
  color: var(--color-marron-dark);
}
.rcard--green:hover .rcard__arrow { background: rgba(46,27,14,0.22); }

/* Card "brown" (popular) → amarillo pastel */
.rcard--brown {
  background: var(--pastel-yellow);
  color: var(--color-marron-dark);
}
.rcard--brown .rcard__pill:not(.rcard__pill--popular) {
  background: rgba(46,27,14,0.1);
  border-color: rgba(46,27,14,0.18);
  color: var(--color-marron-dark);
}
.rcard--brown .rcard__arrow {
  background: rgba(46,27,14,0.12);
  border-color: rgba(46,27,14,0.2);
  color: var(--color-marron-dark);
}
.rcard--brown:hover .rcard__arrow { background: rgba(46,27,14,0.22); }

/* Badge "Más popular" destaca en café oscuro */
.rcard__pill--popular {
  background: var(--color-marron-dark);
  color: #fff;
  border-color: var(--color-marron-dark);
}

/* CTA blur blob: peach en vez de verde */
.rcta::before { background: var(--pastel-green); }

/* Sticker "UGC Creator" sobre la foto: café oscuro (no verde) */
.rsobre__sticker {
  background: var(--color-marron-dark);
  box-shadow: 0 6px 18px rgba(46,27,14,0.35);
}

/* Ocultar blobs decorativos en cards de servicios */
.rcard__blob { display: none; }

/* Botón flotante WhatsApp (verde oficial) */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  background: #1ebe5d;
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

/* =============================================
   REDUCE MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rhero__badge, .rhero__badge-core { animation: none; }
}
