:root {
  --sv-velvet: #750851;
  --sv-velvet-soft: #a31977;
  --sv-velvet-light: #f7edf4;
  --sv-velvet-deep: #1a0012;
  --sv-black: #050505;
  --sv-ink: #171217;
  --sv-white: #ffffff;
  --sv-mist: #faf7f9;
  --sv-muted: #645966;
  --sv-line: rgba(117, 8, 81, .18);
  --sv-head: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sv-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sv-radius: 28px;
  --sv-shadow: 0 24px 68px rgba(5, 5, 5, .13);
  --sv-staff-image-height: 500px;
  --sv-staff-image-height-mobile: 420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--sv-ink); background: var(--sv-white); font-family: var(--sv-body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.sv-modal-open { overflow: hidden; }
a { color: inherit; }
img, video { max-width: 100%; display: block; }
button, input { font: inherit; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

.sv-container { width: min(1180px, calc(100% - 42px)); margin-inline: auto; }
.sv-site { overflow: hidden; background: var(--sv-white); }

.sv-header { position: fixed; inset: 0 0 auto; z-index: 100; background: rgba(5, 5, 5, .76); border-bottom: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(18px); transition: background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.sv-header.is-scrolled { background: rgba(5, 5, 5, .94); border-color: rgba(117,8,81,.45); box-shadow: 0 18px 48px rgba(0,0,0,.25); }
.sv-header__inner { width: min(1240px, calc(100% - 34px)); margin: 0 auto; min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.sv-brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.sv-brand__logo { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(117,8,81,.35)); }
.sv-brand__name { display: block; font-family: var(--sv-head); font-size: 24px; font-weight: 700; line-height: 1; color: var(--sv-white); letter-spacing: -.02em; }
.sv-brand__tag { display: block; margin-top: 5px; font-size: 9px; text-transform: uppercase; letter-spacing: .28em; color: rgba(255,255,255,.62); font-weight: 800; }
.sv-nav { display: flex; align-items: center; gap: 24px; }
.sv-nav a { position: relative; text-decoration: none; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.72); transition: color .25s ease; white-space: nowrap; }
.sv-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--sv-velvet-soft); border-radius: 99px; transition: transform .25s ease; }
.sv-nav a:hover { color: var(--sv-white); }
.sv-nav a:hover::after { transform: scaleX(1); }
.sv-header__cta { flex: 0 0 auto; min-height: 42px !important; padding: 11px 18px !important; font-size: 11px !important; }
.sv-menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: var(--sv-white); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.sv-menu-toggle span { width: 23px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.sv-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sv-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.sv-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sv-mobile-menu { display: none; padding: 10px 20px 24px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(5,5,5,.97); }
.sv-mobile-menu a:not(.sv-btn) { display: block; padding: 13px 8px; text-decoration: none; color: rgba(255,255,255,.86); border-radius: 14px; }
.sv-mobile-menu a:hover { background: rgba(117,8,81,.22); color: var(--sv-white); }
.sv-mobile-menu.is-open { display: block; }

.sv-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 14px 28px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.sv-btn:hover { transform: translateY(-2px); }
.sv-btn--primary { color: var(--sv-white); background: linear-gradient(135deg, #750851 0%, #a31977 54%, #380027 100%); box-shadow: 0 18px 42px rgba(117,8,81,.36); }
.sv-btn--primary:hover { box-shadow: 0 24px 56px rgba(117,8,81,.48); }
.sv-btn--outline { color: var(--sv-white); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.sv-btn--outline:hover { border-color: var(--sv-white); background: rgba(255,255,255,.16); }
.sv-btn--dark { color: var(--sv-white); background: var(--sv-black); box-shadow: 0 18px 42px rgba(0,0,0,.16); }

.sv-hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 148px 0 96px; isolation: isolate; color: var(--sv-white); background: var(--sv-black); overflow: hidden; }
.sv-hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background-image: var(--sv-hero-bg); background-size: cover; background-position: center; transform: scale(1.04); filter: contrast(1.03) saturate(.9); }
.sv-hero::after { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 78% 28%, rgba(117,8,81,.54), transparent 29%), linear-gradient(100deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.78) 46%, rgba(117,8,81,.42) 100%); }
.sv-hero__texture { position: absolute; inset: 0; z-index: -1; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 58px 58px; mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%); }
.sv-hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .68fr); gap: 58px; align-items: center; }
.sv-hero__content { max-width: 780px; }
.sv-eyebrow, .sv-section-title p, .sv-final-cta p { margin: 0 0 16px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .34em; color: var(--sv-velvet-soft); }
.sv-hero h1, .sv-section-title h2, .sv-final-cta h2 { font-family: var(--sv-head); font-weight: 800; letter-spacing: -.045em; line-height: .96; margin: 0; }
.sv-hero h1 { max-width: 820px; font-size: clamp(72px, 10.8vw, 150px); }
.sv-hero h1 span { display: block; color: var(--sv-white); opacity: .86; text-shadow: 0 20px 60px rgba(117,8,81,.44); }
.sv-hero__lead { margin: 26px 0 0; max-width: 680px; font-family: var(--sv-head); font-weight: 700; font-size: clamp(28px, 3.5vw, 50px); line-height: 1.12; color: var(--sv-white); letter-spacing: -.03em; }
.sv-hero__copy { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.85; }
.sv-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.sv-hero-card { position: relative; overflow: hidden; min-height: 500px; padding: 34px; border: 1px solid rgba(255,255,255,.15); border-radius: 38px 12px 38px 12px; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); box-shadow: 0 34px 96px rgba(0,0,0,.36); backdrop-filter: blur(18px); }
.sv-hero-card::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px 10px 28px 10px; pointer-events: none; }
.sv-hero-card::after { content: ""; position: absolute; right: -90px; bottom: -120px; width: 260px; height: 260px; border-radius: 999px; background: radial-gradient(circle, rgba(117,8,81,.82), transparent 62%); filter: blur(4px); }
.sv-hero-card__logo { width: 138px; height: 138px; object-fit: contain; margin-bottom: 44px; filter: drop-shadow(0 18px 40px rgba(0,0,0,.34)); }
.sv-hero-card__label { display: inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(117,8,81,.32); color: var(--sv-white); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .22em; }
.sv-hero-card strong { position: relative; z-index: 1; display: block; margin-top: 22px; font-family: var(--sv-head); font-weight: 800; font-size: clamp(31px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -.035em; }
.sv-hero-card__badges { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.sv-hero-card__badges span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.82); font-size: 12px; background: rgba(0,0,0,.18); }
.sv-scroll-note { position: absolute; right: 30px; bottom: 34px; writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: .25em; font-size: 10px; color: rgba(255,255,255,.48); }

.sv-section { padding: 104px 0; background: var(--sv-white); scroll-margin-top: 92px; }
.sv-section--soft { background: linear-gradient(180deg, #fff 0%, var(--sv-mist) 100%); }
.sv-section-title { max-width: 760px; }
.sv-section-title--center { margin-inline: auto; text-align: center; }
.sv-section-title h2 { font-size: clamp(40px, 5vw, 68px); color: var(--sv-black); }
.sv-section-title h2 em, .sv-final-cta h2 em { color: var(--sv-velvet); font-style: normal; }
.sv-section-title > span { display: block; max-width: 700px; margin: 18px auto 0; color: rgba(20,16,20,.66); line-height: 1.75; }
.sv-text-lg { color: rgba(20,16,20,.74); font-size: 18px; line-height: 1.84; }
.sv-editorial-grid, .sv-location-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 68px; align-items: center; }
.sv-editorial-copy { max-width: 580px; }
.sv-checks, .sv-location-list { list-style: none; margin: 30px 0; padding: 0; display: grid; gap: 14px; }
.sv-checks li, .sv-location-list li { position: relative; padding-left: 34px; color: rgba(20,16,20,.76); line-height: 1.55; }
.sv-checks li::before, .sv-location-list li::before { content: ""; position: absolute; left: 0; top: .4em; width: 13px; height: 13px; border-radius: 50%; background: var(--sv-velvet); box-shadow: 0 0 0 5px rgba(117,8,81,.10); }

.sv-image-collage { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; grid-auto-rows: 300px; gap: 18px; padding: 14px; border: 1px solid rgba(117,8,81,.12); border-radius: 42px; background: linear-gradient(135deg, #fff, var(--sv-velvet-light)); box-shadow: 0 30px 90px rgba(117,8,81,.11); }
.sv-image-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; box-shadow: 0 18px 48px rgba(5,5,5,.12); filter: saturate(.94) contrast(1.02); transition: transform .6s ease, filter .3s ease; }
.sv-image-collage img:hover { transform: scale(1.018); filter: saturate(1) contrast(1.04); }
.sv-image-collage img:nth-child(1) { grid-row: span 2; }
.sv-image-collage img:nth-child(2) { border-radius: 30px 30px 30px 8px; }
.sv-image-collage img:nth-child(3) { border-radius: 30px 8px 30px 30px; }

.sv-team-section { position: relative; overflow: hidden; }
.sv-team-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55; background: radial-gradient(circle at 8% 12%, rgba(117,8,81,.12), transparent 32%), radial-gradient(circle at 90% 45%, rgba(117,8,81,.10), transparent 34%); }
.sv-team-section .sv-container { position: relative; }
.sv-staff-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 58px; }
.sv-staff-card { position: relative; padding: 0; border: 1px solid rgba(117,8,81,.16); border-radius: 32px 32px 12px 12px; overflow: hidden; background: var(--sv-white); text-align: left; cursor: pointer; transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease; }
.sv-staff-card::before { content: ""; position: absolute; inset: 14px; z-index: 2; border: 1px solid rgba(255,255,255,.28); border-radius: 22px; pointer-events: none; opacity: 0; transition: opacity .35s ease; }
.sv-staff-card:hover { transform: translateY(-9px); border-color: rgba(117,8,81,.38); box-shadow: 0 32px 70px rgba(117,8,81,.18); }
.sv-staff-card:hover::before { opacity: 1; }
.sv-staff-card__image { display: block; position: relative; height: var(--sv-staff-image-height, 500px); overflow: hidden; background: var(--sv-mist); }
.sv-staff-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s ease, filter .35s ease; }
.sv-staff-card:hover img { transform: scale(1.055); filter: saturate(.95) contrast(1.03); }
.sv-staff-card__image::after { content: "Ver foto"; position: absolute; left: 22px; bottom: 22px; padding: 10px 14px; border-radius: 999px; background: rgba(5,5,5,.72); color: var(--sv-white); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 900; opacity: 0; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease; }
.sv-staff-card:hover .sv-staff-card__image::after { opacity: 1; transform: translateY(0); }
.sv-staff-card__body { display: block; padding: 26px; }
.sv-staff-card__body strong { display: block; font-family: var(--sv-head); font-weight: 800; font-size: 30px; line-height: 1.08; color: var(--sv-black); letter-spacing: -.03em; }
.sv-staff-card__body em { display: block; margin-top: 8px; color: var(--sv-velvet); font-style: normal; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .2em; }
.sv-staff-card__body span { display: block; margin-top: 13px; color: rgba(20,16,20,.64); line-height: 1.62; }
.sv-empty-state { grid-column: 1 / -1; padding: 28px; border: 1px dashed rgba(117,8,81,.36); border-radius: 22px; background: rgba(255,255,255,.72); color: rgba(20,16,20,.66); text-align: center; }

.sv-team-videos { margin-top: 100px; padding-top: 84px; border-top: 1px solid rgba(117,8,81,.16); }
.sv-team-videos__title { max-width: 760px; }
.sv-video-slider { position: relative; margin-top: 56px; }
.sv-video-slider__viewport { overflow: hidden; width: 100%; }
.sv-video-slider__track { display: flex; gap: 26px; transition: transform .48s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.sv-video-slide { flex: 0 0 calc((100% - 52px) / 3); min-width: 0; }
.sv-video-card { width: 100%; border: 0; background: transparent; padding: 0; cursor: pointer; color: var(--sv-black); }
.sv-phone-frame { position: relative; display: block; aspect-ratio: 9 / 16; overflow: hidden; border-radius: 38px; border: 10px solid var(--sv-black); background: var(--sv-black); box-shadow: 0 30px 74px rgba(5,5,5,.22); }
.sv-phone-frame::before { content: ""; position: absolute; top: 12px; left: 50%; z-index: 2; transform: translateX(-50%); width: 64px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.22); }
.sv-phone-frame video { width: 100%; height: 100%; object-fit: cover; opacity: .88; transition: transform .8s ease, opacity .25s ease; }
.sv-video-card:hover video { transform: scale(1.045); opacity: 1; }
.sv-play { position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; display: grid; place-items: center; border-radius: 999px; background: var(--sv-white); color: var(--sv-velvet); box-shadow: 0 16px 36px rgba(0,0,0,.28); transition: transform .25s ease; }
.sv-video-card:hover .sv-play { transform: scale(1.08); }
.sv-video-card strong { display: block; margin-top: 20px; font-family: var(--sv-head); font-weight: 800; font-size: 30px; text-align: center; line-height: 1.08; letter-spacing: -.03em; }
.sv-video-card em { display: block; margin-top: 6px; color: var(--sv-velvet); font-size: 10px; font-style: normal; font-weight: 900; text-align: center; text-transform: uppercase; letter-spacing: .22em; }
.sv-slider-btn { position: absolute; top: 42%; z-index: 4; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(117,8,81,.22); border-radius: 999px; background: rgba(255,255,255,.94); color: var(--sv-velvet); font-size: 34px; line-height: 1; cursor: pointer; box-shadow: 0 14px 34px rgba(5,5,5,.13); transition: transform .25s ease, background .25s ease; }
.sv-slider-btn:hover { transform: translateY(-2px); background: var(--sv-mist); }
.sv-slider-btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.sv-slider-btn--prev { left: -20px; }
.sv-slider-btn--next { right: -20px; }

/* Servicios: nueva composición tipo editorial, no cards oscuras iguales */
.sv-services-section { position: relative; background: linear-gradient(180deg, #fff 0%, #f8f1f6 100%); }
.sv-services-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 8% 18%, rgba(117,8,81,.12), transparent 28%), radial-gradient(circle at 92% 78%, rgba(117,8,81,.10), transparent 26%); }
.sv-services-section .sv-container { position: relative; }
.sv-services-grid { counter-reset: sv-service; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 62px; align-items: stretch; }
.sv-service-card { counter-increment: sv-service; position: relative; min-height: 330px; display: grid; grid-template-columns: 1fr auto; grid-template-areas: "time badge" "title title" "desc desc" "price cta" "note note"; align-content: start; gap: 12px 24px; padding: 34px; border-radius: 10px 42px 10px 42px; border: 1px solid rgba(117,8,81,.16); background: rgba(255,255,255,.86); color: var(--sv-black); overflow: hidden; box-shadow: 0 20px 60px rgba(117,8,81,.09); transition: transform .36s ease, box-shadow .36s ease, border-color .36s ease; }
.sv-service-card::before { content: counter(sv-service, decimal-leading-zero); position: absolute; right: 26px; bottom: 18px; font-family: var(--sv-head); font-weight: 900; font-size: 104px; line-height: .8; color: rgba(117,8,81,.07); letter-spacing: -.08em; }
.sv-service-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: var(--sv-velvet); }
.sv-service-card:nth-child(even) { transform: translateY(34px); }
.sv-service-card:hover { transform: translateY(-7px); border-color: rgba(117,8,81,.36); box-shadow: 0 32px 78px rgba(117,8,81,.15); }
.sv-service-card:nth-child(even):hover { transform: translateY(22px); }
.sv-service-card--featured { background: linear-gradient(140deg, var(--sv-velvet) 0%, #2a001d 100%); color: var(--sv-white); }
.sv-service-card--featured::before { color: rgba(255,255,255,.08); }
.sv-service-card--featured::after { background: var(--sv-white); }
.sv-service-card > * { position: relative; z-index: 1; }
.sv-service-card > strong { grid-area: badge; justify-self: end; align-self: start; padding: 8px 13px; border-radius: 999px; background: var(--sv-black); color: var(--sv-white); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.sv-service-card--featured > strong { background: var(--sv-white); color: var(--sv-velvet); }
.sv-service-card > span { grid-area: time; width: fit-content; padding: 8px 12px; border-radius: 999px; background: rgba(117,8,81,.10); border: 1px solid rgba(117,8,81,.16); color: var(--sv-velvet); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.sv-service-card--featured > span { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.9); }
.sv-service-card h3 { grid-area: title; margin: 24px 0 0; font-family: var(--sv-head); font-weight: 800; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.02; letter-spacing: -.045em; }
.sv-service-card p { grid-area: desc; margin: 0; max-width: 500px; color: rgba(20,16,20,.72); line-height: 1.72; }
.sv-service-card--featured p { color: rgba(255,255,255,.75); }
.sv-price { grid-area: price; align-self: end; margin-top: 22px; font-family: var(--sv-head); font-weight: 900; font-size: clamp(42px, 4vw, 58px); line-height: .95; color: currentColor; letter-spacing: -.045em; }
.sv-service-card small { grid-area: note; color: rgba(20,16,20,.48); }
.sv-service-card--featured small { color: rgba(255,255,255,.54); }
.sv-service-card a { grid-area: cta; align-self: end; justify-self: end; display: inline-flex; align-items: center; justify-content: center; min-width: 156px; padding: 15px 18px; border-radius: 18px 18px 18px 4px; background: var(--sv-black); color: var(--sv-white); text-align: center; text-decoration: none; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; transition: background .25s ease, color .25s ease, transform .25s ease; }
.sv-service-card--featured a { background: var(--sv-white); color: var(--sv-black); }
.sv-service-card a:hover { background: var(--sv-velvet); color: var(--sv-white); transform: translateY(-2px); }
.sv-service-card--featured a:hover { background: var(--sv-black); color: var(--sv-white); }
.sv-service-card em { display: none; }

/* Comodidades: nueva grilla clara con ritmo horizontal */
.sv-features-section { position: relative; overflow: hidden; background: var(--sv-white); color: var(--sv-black); }
.sv-features-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(117,8,81,.08) 0%, transparent 36%), radial-gradient(circle at 86% 12%, rgba(117,8,81,.13), transparent 30%); }
.sv-features-section .sv-container { position: relative; }
.sv-features-section .sv-section-title h2 { color: var(--sv-black); }
.sv-feature-grid { counter-reset: sv-feature; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 56px; }
.sv-feature-card { counter-increment: sv-feature; position: relative; overflow: hidden; min-height: 158px; display: grid; grid-template-columns: 72px 1fr; column-gap: 22px; align-items: center; padding: 26px 30px; border: 1px solid rgba(117,8,81,.14); background: rgba(255,255,255,.9); border-radius: 28px; box-shadow: 0 18px 54px rgba(5,5,5,.06); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.sv-feature-card::after { content: counter(sv-feature, decimal-leading-zero); position: absolute; right: 24px; top: 18px; color: rgba(117,8,81,.14); font-weight: 900; letter-spacing: -.04em; font-size: 34px; }
.sv-feature-card:hover { transform: translateX(6px); border-color: rgba(117,8,81,.32); box-shadow: 0 26px 64px rgba(117,8,81,.11); }
.sv-feature-card__icon { width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(117,8,81,.16); border-radius: 22px; background: linear-gradient(135deg, var(--sv-velvet), #240019); color: var(--sv-white); font-size: 25px; box-shadow: 0 14px 34px rgba(117,8,81,.18); }
.sv-feature-card h3 { font-family: var(--sv-head); font-weight: 800; font-size: 25px; line-height: 1.12; margin: 0 0 8px; letter-spacing: -.03em; }
.sv-feature-card p { margin: 0; color: rgba(20,16,20,.68); line-height: 1.66; }

.sv-location-grid { grid-template-columns: .9fr 1.1fr; }
.sv-map-card { position: relative; min-height: 490px; border: 1px solid rgba(117,8,81,.16); border-radius: 34px; overflow: hidden; background: var(--sv-mist); box-shadow: 0 24px 70px rgba(5,5,5,.08); }
.sv-google-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.98); }
.sv-map-card__badge { position: absolute; left: 24px; bottom: 24px; z-index: 2; width: min(370px, calc(100% - 48px)); padding: 20px 22px; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 2px; align-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(5,5,5,.86); color: var(--sv-white); backdrop-filter: blur(14px); text-align: left; box-shadow: 0 20px 46px rgba(5,5,5,.28); }
.sv-map-card__badge span { grid-row: 1 / 3; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--sv-velvet); font-size: 26px; }
.sv-map-card__badge strong { font-family: var(--sv-head); font-weight: 800; font-size: 24px; line-height: 1.05; letter-spacing: -.03em; }
.sv-map-card__badge em { color: rgba(255,255,255,.62); font-size: 10px; text-transform: uppercase; letter-spacing: .22em; font-style: normal; }

/* Pagos: diseño dark tickets en vez de cajas blancas */
.sv-payment-section { position: relative; overflow: hidden; background: var(--sv-black); color: var(--sv-white); }
.sv-payment-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .9; background: radial-gradient(circle at 16% 18%, rgba(117,8,81,.5), transparent 32%), radial-gradient(circle at 88% 82%, rgba(117,8,81,.36), transparent 34%); }
.sv-payment-section .sv-container { position: relative; }
.sv-payment-section .sv-section-title h2 { color: var(--sv-white); }
.sv-payment-section .sv-section-title > span { color: rgba(255,255,255,.68); }
.sv-payment-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; max-width: 1080px; margin: 56px auto 0; }
.sv-payment-grid article { position: relative; min-height: 190px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 36px 36px 10px 36px; background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.035)); color: var(--sv-white); font-size: 36px; box-shadow: 0 24px 58px rgba(0,0,0,.18); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.sv-payment-grid article::after { content: ""; position: absolute; right: 24px; top: 24px; width: 34px; height: 8px; border-radius: 999px; background: var(--sv-velvet-soft); }
.sv-payment-grid article:hover { transform: translateY(-8px) rotate(-1deg); border-color: rgba(255,255,255,.3); background: linear-gradient(160deg, rgba(117,8,81,.42), rgba(255,255,255,.05)); }
.sv-payment-grid span { display: block; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.9); }

/* FAQ: tipografía legible y estilo listado */
.sv-faq-wrap { max-width: 980px; }
.sv-faq { display: grid; gap: 0; margin-top: 48px; border-top: 1px solid rgba(117,8,81,.18); }
.sv-faq details { border-bottom: 1px solid rgba(117,8,81,.18); background: transparent; overflow: hidden; }
.sv-faq summary { position: relative; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; font-family: var(--sv-head); font-weight: 800; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.18; color: var(--sv-black); letter-spacing: -.025em; }
.sv-faq summary::after { content: "+"; flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--sv-velvet-light); color: var(--sv-velvet); font-size: 28px; line-height: 1; transition: transform .25s ease, background .25s ease, color .25s ease; }
.sv-faq details[open] summary { color: var(--sv-velvet); }
.sv-faq details[open] summary::after { content: "−"; transform: rotate(180deg); background: var(--sv-velvet); color: var(--sv-white); }
.sv-faq p { margin: 0; max-width: 760px; padding: 0 0 28px; color: rgba(20,16,20,.72); line-height: 1.72; font-size: 16px; }

.sv-final-cta { position: relative; overflow: hidden; text-align: center; padding: 126px 0; color: var(--sv-white); background: linear-gradient(140deg, #050505 0%, #190011 48%, var(--sv-velvet) 100%); scroll-margin-top: 90px; }
.sv-final-cta::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 58px 58px; }
.sv-final-cta .sv-container { position: relative; max-width: 900px; }
.sv-final-cta p { color: rgba(255,255,255,.74); }
.sv-final-cta h2 { font-size: clamp(48px, 5.5vw, 80px); color: var(--sv-white); }
.sv-final-cta h2 em { color: #f2a4d8; }
.sv-final-cta span { display: block; max-width: 720px; margin: 26px auto 36px; color: rgba(255,255,255,.72); line-height: 1.78; }

.sv-footer { background: var(--sv-black); color: var(--sv-white); padding: 64px 0 30px; }
.sv-footer__grid { display: grid; grid-template-columns: 1.1fr .9fr .7fr; gap: 54px; }
.sv-footer__brand { display: flex; align-items: center; gap: 14px; font-family: var(--sv-head); font-weight: 800; font-size: 30px; color: var(--sv-white); letter-spacing: -.03em; }
.sv-footer__brand img { width: 74px; height: 74px; object-fit: contain; filter: drop-shadow(0 12px 26px rgba(117,8,81,.34)); }
.sv-footer p, .sv-footer li, .sv-footer a { color: rgba(255,255,255,.68); line-height: 1.72; text-decoration: none; }
.sv-footer a:hover { color: var(--sv-white); }
.sv-footer h3 { margin: 0 0 18px; color: var(--sv-white); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; }
.sv-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.sv-footer__adult { color: #f3a4d9 !important; }
.sv-footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.46); font-size: 13px; }
.sv-footer-contact li { display: flex; align-items: center; gap: 10px; }
.sv-footer-icon { width: 22px; height: 22px; display: inline-grid; place-items: center; flex: 0 0 auto; color: #25D366; }
.sv-footer-icon svg { width: 22px; height: 22px; display: block; }
.sv-whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 999px; background: #25D366; color: #fff; text-decoration: none; box-shadow: 0 18px 40px rgba(37,211,102,.35); transition: transform .25s ease; font-size: 0; }
.sv-whatsapp-float:hover { transform: scale(1.08); }
.sv-whatsapp-float::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: #25D366; opacity: .28; animation: sv-ping 1.8s ease-out infinite; }
.sv-whatsapp-float svg { position: relative; z-index: 1; width: 34px; height: 34px; display: block; }
@keyframes sv-ping { to { transform: scale(1.55); opacity: 0; } }

.sv-modal { position: fixed; inset: 0; z-index: 999; display: none; place-items: center; padding: 24px; }
.sv-modal.is-open { display: grid; }
.sv-modal__overlay { position: absolute; inset: 0; background: rgba(5,5,5,.84); backdrop-filter: blur(12px); }
.sv-modal__dialog { position: relative; width: min(940px, 100%); max-height: calc(100vh - 58px); display: grid; place-items: center; gap: 14px; }
.sv-modal__media { max-height: calc(100vh - 128px); display: grid; place-items: center; }
.sv-modal__media img, .sv-modal__media video { max-height: calc(100vh - 128px); max-width: 100%; border-radius: 24px; box-shadow: 0 28px 76px rgba(0,0,0,.52); background: #000; }
.sv-modal__media video { width: auto; aspect-ratio: 9 / 16; }
.sv-modal__title { margin: 0; color: var(--sv-white); font-family: var(--sv-head); font-weight: 800; font-size: 30px; text-align: center; letter-spacing: -.03em; }
.sv-modal__close { position: fixed; right: 24px; top: 18px; z-index: 1001; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; font-size: 32px; cursor: pointer; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .sv-nav { gap: 16px; }
  .sv-nav a { font-size: 11px; }
  .sv-hero__grid { grid-template-columns: 1fr; }
  .sv-hero-card { min-height: auto; }
  .sv-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .sv-nav, .sv-header__cta { display: none; }
  .sv-menu-toggle { display: flex; }
  .sv-editorial-grid, .sv-location-grid, .sv-footer__grid { grid-template-columns: 1fr; }
  .sv-image-collage { grid-auto-rows: 260px; }
  .sv-staff-grid, .sv-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-services-grid { grid-template-columns: 1fr; }
  .sv-service-card:nth-child(even) { transform: none; }
  .sv-service-card:nth-child(even):hover { transform: translateY(-7px); }
  .sv-video-slide { flex-basis: calc((100% - 26px) / 2); }
  .sv-payment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .sv-container { width: min(100% - 28px, 1180px); }
  .sv-header__inner { width: min(100% - 24px, 1240px); min-height: 72px; }
  .sv-brand__tag { display: none; }
  .sv-brand__name { font-size: 21px; }
  .sv-brand__logo { width: 48px; height: 48px; }
  .sv-hero { min-height: 100svh; padding: 104px 0 54px; }
  .sv-hero h1 { font-size: clamp(56px, 17vw, 88px); }
  .sv-hero__lead { font-size: 30px; }
  .sv-actions { flex-direction: column; }
  .sv-actions .sv-btn { width: 100%; }
  .sv-hero-card { padding: 26px; border-radius: 28px 10px 28px 10px; }
  .sv-hero-card__logo { width: 106px; height: 106px; margin-bottom: 28px; }
  .sv-scroll-note { display: none; }
  .sv-section { padding: 76px 0; }
  .sv-section-title h2 { font-size: clamp(36px, 10vw, 54px); }
  .sv-image-collage { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; padding: 10px; border-radius: 30px; }
  .sv-image-collage img, .sv-image-collage img:nth-child(1), .sv-image-collage img:nth-child(2), .sv-image-collage img:nth-child(3) { height: 260px; grid-row: auto; border-radius: 24px; }
  .sv-staff-grid, .sv-feature-grid, .sv-services-grid, .sv-payment-grid { grid-template-columns: 1fr; }
  .sv-staff-card__image { height: var(--sv-staff-image-height-mobile, 420px); }
  .sv-team-videos { margin-top: 72px; padding-top: 60px; }
  .sv-video-slide { flex-basis: 100%; }
  .sv-slider-btn--prev { left: 2px; }
  .sv-slider-btn--next { right: 2px; }
  .sv-service-card { min-height: auto; grid-template-columns: 1fr; grid-template-areas: "time" "badge" "title" "desc" "price" "cta" "note"; padding: 28px; border-radius: 8px 34px 8px 34px; }
  .sv-service-card > strong, .sv-service-card a { justify-self: start; }
  .sv-feature-card { grid-template-columns: 58px 1fr; padding: 22px; }
  .sv-feature-card__icon { width: 58px; height: 58px; border-radius: 18px; }
  .sv-map-card { min-height: 390px; }
  .sv-map-card__badge { left: 14px; bottom: 14px; width: calc(100% - 28px); padding: 16px; }
  .sv-payment-grid article { min-height: 150px; }
  .sv-faq summary { padding: 22px 0; }
  .sv-faq summary::after { flex-basis: 40px; width: 40px; height: 40px; }
  .sv-final-cta { padding: 86px 0; }
  .sv-footer__bottom { flex-direction: column; }
  .sv-whatsapp-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

/* --------------------------------------------------------------------------
   Sensual Velvet v2.2 — rediseño luxury premium
   -------------------------------------------------------------------------- */
:root {
  --sv-head: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sv-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sv-gold: #d9b36a;
  --sv-cream: #fffaf3;
}

.sv-hero h1,
.sv-section-title h2,
.sv-final-cta h2,
.sv-service-card h3,
.sv-feature-card h3,
.sv-faq summary,
.sv-footer__brand,
.sv-brand__name {
  font-family: var(--sv-head);
  font-weight: 700;
  letter-spacing: -.035em;
}

.sv-section-title h2 { font-size: clamp(38px, 4.6vw, 64px); line-height: 1.05; }
.sv-hero h1 { line-height: .98; }
.sv-hero__lead { font-family: var(--sv-head); font-weight: 700; }
.sv-eyebrow, .sv-section-title p, .sv-final-cta p, .sv-nav a, .sv-btn { font-family: var(--sv-body); }

/* Galería premium: sin cuadro superpuesto y con imágenes nuevas */
.sv-editorial-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 72px; }
.sv-image-collage {
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border-radius: 48px;
  border: 1px solid rgba(217, 179, 106, .28);
  background:
    radial-gradient(circle at 20% 10%, rgba(217,179,106,.18), transparent 26%),
    linear-gradient(135deg, #080608 0%, #170010 48%, #360126 100%);
  box-shadow: 0 34px 100px rgba(45, 0, 31, .26);
}
.sv-image-collage::before {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 36px;
  pointer-events: none;
}
.sv-image-collage::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(217,179,106,.42);
  background: radial-gradient(circle, rgba(217,179,106,.24), transparent 64%);
  pointer-events: none;
}
.sv-image-collage img {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  box-shadow: 0 28px 66px rgba(0,0,0,.28);
  filter: saturate(.86) contrast(1.05) brightness(.92);
}
.sv-image-collage img:nth-child(1) { grid-column: 5 / 13; grid-row: 1 / 9; border-radius: 36px; }
.sv-image-collage img:nth-child(2) { grid-column: 1 / 6; grid-row: 1 / 5; border-radius: 36px 18px 18px 36px; }
.sv-image-collage img:nth-child(3) { grid-column: 1 / 5; grid-row: 5 / 9; border-radius: 18px 36px 36px 36px; }

/* Servicios luxury: menú premium, primer servicio editorial y el resto en lista alta gama */
.sv-services-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(117,8,81,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf6f9 100%);
}
.sv-services-grid {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(460px, 1.12fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 58px;
}
.sv-service-card,
.sv-service-card:nth-child(even) {
  transform: none;
}
.sv-service-card:hover,
.sv-service-card:nth-child(even):hover {
  transform: translateY(-5px);
}
.sv-service-card {
  min-height: 168px;
  border-radius: 30px;
  border: 1px solid rgba(117,8,81,.15);
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 60px rgba(35, 0, 24, .08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "time price"
    "title price"
    "desc cta"
    "note cta";
  align-items: center;
  gap: 7px 26px;
  padding: 28px 30px;
}
.sv-service-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(117,8,81,.08);
  border-radius: 22px;
  pointer-events: none;
  background: transparent;
}
.sv-service-card::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 30px;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(117,8,81,.0), rgba(117,8,81,.55));
}
.sv-service-card--featured,
.sv-service-card:first-child {
  grid-row: span 3;
  min-height: 545px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 42px;
  color: var(--sv-white);
  border-color: rgba(217,179,106,.32);
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 18%, rgba(217,179,106,.24), transparent 30%),
    linear-gradient(145deg, #750851 0%, #350022 54%, #080407 100%);
  box-shadow: 0 36px 90px rgba(65,0,44,.28);
}
.sv-service-card:first-child::before {
  inset: 22px;
  border-color: rgba(255,255,255,.16);
  border-radius: 28px;
}
.sv-service-card:first-child::after {
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217,179,106,.25), transparent 68%);
}
.sv-service-card > strong {
  grid-area: badge;
  justify-self: end;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--sv-velvet);
  font-family: var(--sv-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}
.sv-service-card:first-child > strong {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
}
.sv-service-card > span {
  grid-area: time;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(117,8,81,.16);
  background: rgba(117,8,81,.07);
  color: var(--sv-velvet);
  font-family: var(--sv-body);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.sv-service-card:first-child > span {
  margin-bottom: 18px;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}
.sv-service-card h3 {
  grid-area: title;
  margin: 0;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.08;
}
.sv-service-card:first-child h3 {
  max-width: 420px;
  font-size: clamp(42px, 4vw, 58px);
  color: var(--sv-white);
}
.sv-service-card p {
  grid-area: desc;
  margin: 4px 0 0;
  max-width: 520px;
  color: rgba(20,16,20,.70);
  line-height: 1.65;
}
.sv-service-card:first-child p { color: rgba(255,255,255,.74); font-size: 17px; }
.sv-price {
  grid-area: price;
  align-self: center;
  justify-self: end;
  margin: 0;
  font-family: var(--sv-body);
  font-weight: 800;
  font-size: clamp(36px, 3.6vw, 52px);
  letter-spacing: -.045em;
}
.sv-service-card:first-child .sv-price {
  margin-top: 30px;
  font-size: clamp(58px, 5.3vw, 78px);
  color: var(--sv-white);
}
.sv-service-card small {
  grid-area: note;
  color: rgba(20,16,20,.52);
  font-family: var(--sv-body);
}
.sv-service-card:first-child small { color: rgba(255,255,255,.55); }
.sv-service-card a {
  grid-area: cta;
  justify-self: end;
  align-self: end;
  min-width: 146px;
  border-radius: 999px;
  background: var(--sv-black);
  color: var(--sv-white);
}
.sv-service-card:first-child a {
  margin-top: 24px;
  align-self: flex-start;
  background: var(--sv-white);
  color: var(--sv-black);
}
.sv-service-card em { display: none; }

/* Comodidades: layout editorial compacto, sin columnas con texto angosto */
.sv-features-section {
  background:
    linear-gradient(90deg, rgba(117,8,81,.055), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fcf8fb 100%);
}
.sv-features-section .sv-container {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 46px;
  align-items: start;
}
.sv-features-section .sv-section-title--center {
  margin: 0;
  text-align: left;
  position: sticky;
  top: 118px;
}
.sv-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}
.sv-feature-card {
  min-height: 144px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(117,8,81,.12);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 46px rgba(42, 0, 29, .065);
}
.sv-feature-card::after { display: none; }
.sv-feature-card:hover { transform: translateY(-5px); }
.sv-feature-card__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(217,179,106,.34);
  background: linear-gradient(145deg, #750851, #210016);
  box-shadow: 0 16px 30px rgba(117,8,81,.18);
}
.sv-feature-card__content { min-width: 0; }
.sv-feature-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.18;
}
.sv-feature-card p {
  margin: 0;
  max-width: none;
  color: rgba(20,16,20,.66);
  line-height: 1.62;
}

/* Pagos: concierge panel compacto y premium */
.sv-payment-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(117,8,81,.52), transparent 28%),
    radial-gradient(circle at 90% 84%, rgba(217,179,106,.15), transparent 28%),
    linear-gradient(135deg, #050505 0%, #12000d 58%, #2d0020 100%);
}
.sv-payment-section .sv-container {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
}
.sv-payment-section .sv-section-title--center {
  margin: 0;
  text-align: left;
}
.sv-payment-section .sv-section-title h2 { line-height: 1.02; }
.sv-payment-grid {
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.sv-payment-grid article {
  min-height: 126px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: 0 22px 52px rgba(0,0,0,.18);
}
.sv-payment-grid article::after { display: none; }
.sv-payment-grid article:hover { transform: translateY(-5px); }
.sv-payment-grid .sv-pay-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(217,179,106,.28);
  background: rgba(117,8,81,.34);
  color: var(--sv-white);
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.sv-payment-grid strong {
  display: block;
  color: var(--sv-white);
  font-family: var(--sv-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.sv-payment-grid p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .sv-editorial-grid { grid-template-columns: 1fr; }
  .sv-image-collage { max-width: 760px; margin-inline: auto; }
  .sv-services-grid { grid-template-columns: 1fr; }
  .sv-service-card:first-child { grid-row: auto; min-height: 460px; }
}

@media (max-width: 980px) {
  .sv-features-section .sv-container,
  .sv-payment-section .sv-container { grid-template-columns: 1fr; }
  .sv-features-section .sv-section-title--center,
  .sv-payment-section .sv-section-title--center { text-align: center; margin-inline: auto; position: static; }
  .sv-feature-grid { margin-top: 8px; }
  .sv-payment-grid { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 680px) {
  .sv-section-title h2 { font-size: clamp(34px, 10vw, 46px); }
  .sv-image-collage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    padding: 12px;
    border-radius: 32px;
  }
  .sv-image-collage::before,
  .sv-image-collage::after { display: none; }
  .sv-image-collage img,
  .sv-image-collage img:nth-child(1),
  .sv-image-collage img:nth-child(2),
  .sv-image-collage img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    height: 280px;
    border-radius: 24px;
  }
  .sv-service-card,
  .sv-service-card:not(:first-child) {
    grid-template-columns: 1fr;
    grid-template-areas: "time" "title" "desc" "price" "cta" "note";
    align-items: start;
    padding: 26px;
    border-radius: 26px;
  }
  .sv-service-card:first-child { min-height: 430px; padding: 32px; }
  .sv-service-card:first-child > strong { position: static; margin-bottom: 20px; }
  .sv-price { justify-self: start; margin-top: 12px; }
  .sv-service-card a { justify-self: start; margin-top: 12px; }
  .sv-feature-grid,
  .sv-payment-grid { grid-template-columns: 1fr; }
  .sv-feature-card { min-height: auto; }
  .sv-payment-section { padding: 78px 0; }
}


/* ===== Sensual Velvet v2.3: rediseño premium independiente ===== */
:root {
  --sv-head: "Marcellus", Georgia, serif;
  --sv-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sv-gold: #d8b56d;
  --sv-cream: #fbf7f2;
  --sv-smoke: #f3edf1;
}

body { font-family: var(--sv-body); background: var(--sv-cream); }
.sv-site { background: var(--sv-cream); }
.sv-container { width: min(1220px, calc(100% - 48px)); }
.sv-header { background: rgba(6, 3, 6, .82); }
.sv-brand__name { font-family: var(--sv-head); font-weight: 400; letter-spacing: .02em; }
.sv-btn { border-radius: 14px; letter-spacing: .14em; }
.sv-btn--primary { background: linear-gradient(135deg, var(--sv-velvet), #320021); box-shadow: 0 18px 44px rgba(117,8,81,.28); }
.sv-btn--dark { border: 1px solid rgba(255,255,255,.13); background: #050505; }
.sv-eyebrow, .sv-section-title p, .sv-final-cta p { color: var(--sv-velvet); letter-spacing: .42em; font-size: 10px; }
.sv-hero h1, .sv-section-title h2, .sv-final-cta h2 { font-family: var(--sv-head); font-weight: 400; letter-spacing: -.018em; line-height: 1.02; }
.sv-section-title h2 { font-size: clamp(36px, 4.35vw, 62px); }
.sv-section { padding: 112px 0; }

/* Portada: más editorial, menos clonada */
.sv-hero { min-height: 92vh; padding: 150px 0 110px; background: #060306; }
.sv-hero::before { filter: contrast(1.05) saturate(.82) brightness(.72); transform: scale(1.02); }
.sv-hero::after { background: linear-gradient(90deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.72) 47%, rgba(117,8,81,.22) 100%); }
.sv-hero__texture { opacity: .10; background-size: 86px 86px; }
.sv-hero__grid { grid-template-columns: minmax(0, 1fr) 360px; }
.sv-hero h1 { font-size: clamp(66px, 9vw, 126px); max-width: 760px; }
.sv-hero h1 span { display: inline; color: #f6d7ea; opacity: 1; }
.sv-hero__lead { font-family: var(--sv-body); font-weight: 700; font-size: clamp(24px, 2.5vw, 38px); letter-spacing: -.035em; max-width: 620px; }
.sv-hero-card { min-height: 410px; border-radius: 28px; background: rgba(255,255,255,.08); }
.sv-hero-card strong { font-family: var(--sv-head); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); }
.sv-scroll-note { display: none; }

/* El ritual: bloque oscuro tipo suite privada, con triptico de imágenes sin cuadro de texto */
.sv-experience {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(117,8,81,.32), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(216,181,109,.13), transparent 28%),
    linear-gradient(135deg, #050505 0%, #16000f 62%, #2a001c 100%);
  color: var(--sv-white);
}
.sv-experience::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 34px;
  pointer-events: none;
}
.sv-experience .sv-editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(540px, 1.08fr);
  gap: 44px;
  align-items: stretch;
}
.sv-experience .sv-editorial-copy {
  max-width: none;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: 0 34px 90px rgba(0,0,0,.24);
}
.sv-experience .sv-section-title h2 { color: var(--sv-white); font-size: clamp(38px, 5vw, 72px); }
.sv-experience .sv-section-title p { color: #f0a7d5; }
.sv-experience .sv-text-lg { color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.82; }
.sv-experience .sv-checks { grid-template-columns: 1fr; margin: 34px 0; gap: 12px; }
.sv-experience .sv-checks li { color: rgba(255,255,255,.76); padding: 14px 0 14px 34px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sv-experience .sv-checks li::before { top: 1.35em; width: 9px; height: 9px; background: var(--sv-gold); box-shadow: 0 0 0 7px rgba(216,181,109,.08); }
.sv-experience .sv-btn--dark { background: var(--sv-white); color: var(--sv-black); }
.sv-image-collage {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.05fr .92fr .78fr;
  grid-template-rows: 1fr;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.sv-image-collage::before,
.sv-image-collage::after { display: none; }
.sv-image-collage img,
.sv-image-collage img:nth-child(1),
.sv-image-collage img:nth-child(2),
.sv-image-collage img:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
}
.sv-image-collage img:nth-child(2) { transform: translateY(34px); }
.sv-image-collage img:nth-child(3) { transform: translateY(-24px); }
.sv-image-collage img:hover { transform: translateY(0) scale(1.018); }

/* Equipo: más limpio */
.sv-team-section { background: var(--sv-cream); }
.sv-staff-card { border-radius: 24px; background: #fff; }
.sv-staff-card__body strong { font-family: var(--sv-head); font-weight: 400; }
.sv-empty-state { display: none; }
.sv-team-videos { margin-top: 84px; padding-top: 72px; }
.sv-phone-frame { border-radius: 26px; border-width: 6px; }
.sv-phone-frame::before { display: none; }

/* Servicios: todos rectangulares en cascada, mismo fondo premium velvet */
.sv-services-section {
  position: relative;
  background:
    radial-gradient(circle at 6% 12%, rgba(117,8,81,.18), transparent 34%),
    linear-gradient(180deg, #faf7f2 0%, #f4edf1 100%);
}
.sv-services-section .sv-section-title { max-width: 820px; }
.sv-services-grid {
  counter-reset: sv-service;
  max-width: 1060px;
  margin: 58px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sv-service-card,
.sv-service-card:first-child,
.sv-service-card--featured,
.sv-service-card:nth-child(even) {
  counter-increment: sv-service;
  position: relative;
  min-height: 168px;
  width: calc(100% - 132px);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 180px 150px;
  grid-template-areas:
    "time title price cta"
    "badge desc price cta"
    "note desc price cta";
  align-items: center;
  gap: 8px 24px;
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(216,181,109,.22);
  background:
    radial-gradient(circle at 92% 16%, rgba(216,181,109,.16), transparent 26%),
    linear-gradient(135deg, #750851 0%, #3b0028 48%, #070507 100%);
  color: var(--sv-white);
  box-shadow: 0 30px 80px rgba(65,0,44,.18);
  overflow: hidden;
  transform: none;
}
.sv-service-card:nth-child(1) { margin-left: 0; }
.sv-service-card:nth-child(2) { margin-left: 44px; }
.sv-service-card:nth-child(3) { margin-left: 88px; }
.sv-service-card:nth-child(4) { margin-left: 132px; }
.sv-service-card:hover,
.sv-service-card:nth-child(even):hover,
.sv-service-card:first-child:hover { transform: translateX(8px); box-shadow: 0 36px 92px rgba(65,0,44,.25); }
.sv-service-card::before,
.sv-service-card:first-child::before {
  content: counter(sv-service, decimal-leading-zero);
  position: absolute;
  right: 26px;
  bottom: -8px;
  font-family: var(--sv-body);
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.08);
  border: 0;
  background: transparent;
  inset: auto 26px -8px auto;
  pointer-events: none;
}
.sv-service-card::after,
.sv-service-card:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: var(--sv-gold);
}
.sv-service-card > strong,
.sv-service-card:first-child > strong {
  position: static;
  grid-area: badge;
  justify-self: start;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-family: var(--sv-body);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0;
}
.sv-service-card:not(.sv-service-card--featured) > strong { display: none; }
.sv-service-card > span,
.sv-service-card:first-child > span {
  grid-area: time;
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.9);
  font-size: 10px;
  font-weight: 900;
}
.sv-service-card h3,
.sv-service-card:first-child h3 {
  grid-area: title;
  max-width: none;
  margin: 0;
  color: var(--sv-white);
  font-family: var(--sv-head);
  font-size: clamp(26px, 2.55vw, 38px);
  font-weight: 400;
  line-height: 1.06;
}
.sv-service-card p,
.sv-service-card:first-child p {
  grid-area: desc;
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  line-height: 1.62;
}
.sv-price,
.sv-service-card:first-child .sv-price {
  grid-area: price;
  justify-self: end;
  margin: 0;
  color: var(--sv-white);
  font-family: var(--sv-body);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 900;
  letter-spacing: -.06em;
}
.sv-service-card small,
.sv-service-card:first-child small { grid-area: note; color: rgba(255,255,255,.50); }
.sv-service-card a,
.sv-service-card:first-child a {
  grid-area: cta;
  align-self: center;
  justify-self: end;
  margin: 0;
  min-width: 136px;
  border-radius: 14px;
  background: var(--sv-white);
  color: var(--sv-black);
}
.sv-service-card a:hover { background: var(--sv-gold); color: var(--sv-black); }

/* Comodidades: grilla compacta dark-luxury */
.sv-features-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(117,8,81,.30), transparent 30%),
    linear-gradient(135deg, #050505 0%, #12000d 70%, #25001a 100%);
  color: var(--sv-white);
}
.sv-features-section::before { display: none; }
.sv-features-section .sv-container {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}
.sv-features-section .sv-section-title h2 { color: var(--sv-white); }
.sv-features-section .sv-section-title--center { text-align: left; margin: 0; position: sticky; top: 120px; }
.sv-feature-grid { margin: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sv-feature-card {
  min-height: 0;
  display: block;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 24px 58px rgba(0,0,0,.18);
}
.sv-feature-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(117,8,81,.62);
  color: #fff;
  box-shadow: none;
  font-size: 21px;
}
.sv-feature-card h3 { color: var(--sv-white); font-family: var(--sv-head); font-weight: 400; font-size: 23px; }
.sv-feature-card p { color: rgba(255,255,255,.62); font-size: 14px; }

/* Ubicación Los Dominicos */
.sv-location-grid { grid-template-columns: .86fr 1.14fr; }
.sv-map-card { border-radius: 28px; }
.sv-map-card__badge { border-radius: 18px; }
.sv-map-card__badge strong { font-family: var(--sv-head); font-weight: 400; }

/* Pagos: compacto y sin espacios muertos */
.sv-payment-section {
  padding: 96px 0;
  background: var(--sv-cream);
  color: var(--sv-black);
}
.sv-payment-section::before { display: none; }
.sv-payment-section .sv-container {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}
.sv-payment-section .sv-section-title h2 { color: var(--sv-black); }
.sv-payment-section .sv-section-title > span { color: rgba(20,16,20,.66); }
.sv-payment-section .sv-section-title--center { text-align: left; margin: 0; }
.sv-payment-grid {
  margin: 0;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(117,8,81,.13);
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 64px rgba(42,0,29,.08);
}
.sv-payment-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(117,8,81,.12);
  background: linear-gradient(180deg, #fff, #fbf6fa);
  color: var(--sv-black);
  box-shadow: none;
}
.sv-payment-grid .sv-pay-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--sv-velvet);
  color: var(--sv-white);
  font-size: 20px;
}
.sv-payment-grid strong { color: var(--sv-black); font-size: 12px; }
.sv-payment-grid p { color: rgba(20,16,20,.62); font-size: 13px; }

@media (max-width: 1120px) {
  .sv-experience .sv-editorial-grid,
  .sv-features-section .sv-container,
  .sv-payment-section .sv-container,
  .sv-location-grid { grid-template-columns: 1fr; }
  .sv-image-collage { min-height: 480px; }
  .sv-service-card,
  .sv-service-card:first-child,
  .sv-service-card--featured,
  .sv-service-card:nth-child(even) { width: 100%; margin-left: 0; }
  .sv-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-payment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .sv-container { width: min(100% - 30px, 1220px); }
  .sv-section { padding: 78px 0; }
  .sv-hero__grid { grid-template-columns: 1fr; }
  .sv-hero-card { min-height: auto; }
  .sv-experience::before { inset: 12px; }
  .sv-experience .sv-editorial-copy { padding: 28px; border-radius: 24px; }
  .sv-image-collage { min-height: auto; grid-template-columns: 1fr; gap: 12px; }
  .sv-image-collage img,
  .sv-image-collage img:nth-child(1),
  .sv-image-collage img:nth-child(2),
  .sv-image-collage img:nth-child(3) { height: 270px; transform: none; border-radius: 22px; }
  .sv-service-card,
  .sv-service-card:first-child,
  .sv-service-card--featured,
  .sv-service-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas: "time" "badge" "title" "desc" "price" "cta" "note";
    align-items: start;
    padding: 26px;
  }
  .sv-price, .sv-service-card:first-child .sv-price { justify-self: start; font-size: 42px; }
  .sv-service-card a, .sv-service-card:first-child a { justify-self: start; }
  .sv-feature-grid, .sv-payment-grid { grid-template-columns: 1fr; }
  .sv-payment-grid article { min-height: 132px; }
}

/* ===== Sensual Velvet v2.5: nuevo set fotográfico completo + reset de opciones antiguas ===== */
.sv-image-collage {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(216,181,109,.18);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    radial-gradient(circle at 12% 18%, rgba(216,181,109,.12), transparent 28%);
  box-shadow: 0 38px 96px rgba(0,0,0,.28);
}
.sv-image-collage img,
.sv-image-collage img:nth-child(1),
.sv-image-collage img:nth-child(2),
.sv-image-collage img:nth-child(3) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 58px rgba(0,0,0,.26);
}
.sv-image-collage img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
  object-position: 48% 55%;
  border-radius: 30px 10px 10px 30px;
}
.sv-image-collage img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  object-position: 48% 50%;
  border-radius: 10px 30px 10px 10px;
}
.sv-image-collage img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  object-position: 52% 48%;
  border-radius: 10px 10px 30px 10px;
}
.sv-image-collage img:hover {
  transform: scale(1.012);
  filter: saturate(1.04) contrast(1.04);
}
@media (max-width: 1120px) {
  .sv-image-collage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 12px;
  }
  .sv-image-collage img:nth-child(1),
  .sv-image-collage img:nth-child(2),
  .sv-image-collage img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    height: 360px;
    border-radius: 24px;
  }
}
@media (max-width: 760px) {
  .sv-image-collage img:nth-child(1),
  .sv-image-collage img:nth-child(2),
  .sv-image-collage img:nth-child(3) {
    height: 300px;
  }
}
