:root {
  --navy: #111525;
  --navy-2: #171c31;
  --blue: #2f8fe8;
  --blue-soft: #58b8f4;
  --green: #27d366;
  --paper: #f7f8fb;
  --white: #ffffff;
  --ink: #101426;
  --muted: #697086;
  --line: rgba(17, 21, 37, 0.1);
  --shadow: 0 24px 80px rgba(13, 18, 38, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Tahoma", "Arial", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed; top: 8px; right: 8px; z-index: 200;
  transform: translateY(-160%); background: white; color: var(--ink);
  padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(17, 21, 37, 0.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 108px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 150px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.82); font-size: .96rem; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 5px; height: 2px; background: var(--blue-soft); transform: scaleX(0); transition: .25s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.language-button, .menu-button, #menuClose {
  border: 0; background: transparent; color: white; cursor: pointer;
}
.language-button { display: flex; align-items: center; gap: 7px; font-weight: 700; }
.menu-button { display: none; width: 44px; height: 44px; padding: 9px; }
.menu-button span { display: block; height: 2px; background: white; margin: 6px 0; transition: .25s; }

.mobile-menu {
  position: fixed; z-index: 150; top: 0; right: 0; width: min(88vw, 420px); height: 100dvh;
  background: #0f1425; color: white; padding: 30px 32px 44px;
  transform: translateX(105%); transition: transform .32s ease; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 24px; margin-bottom: 20px; }
.mobile-menu-head img { width: 126px; }
#menuClose { font-size: 2.3rem; line-height: 1; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 12px 0; font-size: 1.2rem; color: rgba(255,255,255,.82); }
.mobile-menu nav h2 { font-size: 1.25rem; margin: 24px 0 5px; }
.menu-backdrop { position: fixed; z-index: 140; inset: 0; background: rgba(3,5,14,.68); opacity: 0; visibility: hidden; transition: .25s; }
.menu-backdrop.show { opacity: 1; visibility: visible; }

.hero {
  min-height: 100svh; position: relative; display: grid; place-items: center;
  padding: 170px 24px 90px; color: white; text-align: center;
  background: var(--navy) url('/assets/hero-spa.webp') center / cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,19,36,.76) 0%, rgba(23,25,52,.7) 44%, rgba(13,15,32,.9) 100%); }
.hero-content { position: relative; z-index: 2; width: min(850px, 100%); }
.hero-kicker { color: #7cc8f8; font-size: .92rem; font-weight: 800; letter-spacing: .08em; margin: 0 0 18px; }
.hero h1 { font-size: clamp(2rem, 5vw, 4.6rem); line-height: 1.27; margin: 0 auto 24px; font-weight: 800; max-width: 900px; text-wrap: balance; }
.hero-description { max-width: 780px; margin: 0 auto; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 2; }
.store-row { display: flex; justify-content: center; align-items: center; gap: 14px; margin: 34px 0 24px; flex-wrap: wrap; }
.store-row a { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.68); background: rgba(17,21,37,.45); transition: transform .2s; }
.store-row a:hover { transform: translateY(-3px); }
.store-row img { width: 220px; height: 70px; object-fit: cover; }
.hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 10px; padding: 0 24px; font-weight: 800; border: 1px solid transparent; cursor: pointer; }
.cta-whatsapp { background: var(--green); color: #062c18; }
.cta-ghost { color: white; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.06); }
.cta-primary { width: 100%; background: var(--blue); color: white; }
.scroll-cue { position: absolute; z-index: 3; bottom: 22px; left: 50%; transform: translateX(-50%); font-size: 2rem; color: rgba(255,255,255,.7); }

.section { padding: 100px 0; }
.section-inner { width: min(1160px, calc(100% - 40px)); margin: auto; }
.section-light { background: #fff; }
.section-navy { background: var(--navy); color: white; }
.section-label { color: var(--blue); font-size: .9rem; font-weight: 900; letter-spacing: .08em; margin: 0 0 10px; }
.section h2, .contact-section h2 { font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.25; margin: 0 0 22px; text-wrap: balance; }
.section p { color: var(--muted); }
.section-navy p { color: rgba(255,255,255,.67); }
.centered { text-align: center; max-width: 770px; margin: 0 auto 48px; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.copy-column > p { font-size: 1.08rem; }
.feature-list { display: grid; gap: 12px; margin-top: 28px; }
.feature-list span { position: relative; padding: 12px 44px 12px 14px; background: #f6f8fc; border-radius: 12px; border: 1px solid var(--line); }
.feature-list span::before { content: "✓"; position: absolute; right: 16px; color: var(--blue); font-weight: 900; }
.visual-card { min-height: 540px; border-radius: 30px; overflow: hidden; background: var(--navy); color: white; box-shadow: var(--shadow); position: relative; }
.visual-card-image { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,21,37,.06), rgba(17,21,37,.78)), url('/assets/hero-spa.webp') center/cover; transform: scale(1.03); }
.visual-card-copy { position: absolute; z-index: 2; bottom: 0; inset-inline: 0; padding: 34px; display: grid; gap: 6px; }
.visual-card-copy span { font-size: .88rem; color: #77c8fb; text-transform: uppercase; letter-spacing: .12em; }
.visual-card-copy strong { font-size: 1.8rem; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); border-radius: 20px; padding: 30px; min-height: 310px; display: flex; flex-direction: column; }
.service-symbol { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: rgba(47,143,232,.15); color: #73c6fb; font-size: 1.6rem; }
.service-card h3 { font-size: 1.55rem; margin: 24px 0 10px; }
.service-card p { flex: 1; }
.service-link { color: #78cbff; font-weight: 800; margin-top: 18px; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps-grid article { border: 1px solid var(--line); background: white; padding: 30px; border-radius: 20px; box-shadow: 0 14px 50px rgba(16,20,38,.05); }
.steps-grid article > span { color: var(--blue); font-size: 2.4rem; font-weight: 900; }
.steps-grid h3 { font-size: 1.3rem; margin: 15px 0 8px; }

.provider-section { background: linear-gradient(135deg,#f4f7fc,#e9f1fb); }
.provider-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; }
.provider-copy ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.provider-copy li { position: relative; padding-right: 32px; }
.provider-copy li::before { content: "✓"; position: absolute; right: 0; color: var(--blue); font-weight: 900; }
.provider-form { background: white; border-radius: 24px; padding: 32px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.provider-form h3, .provider-form button, .provider-form .form-status, .provider-form label:last-of-type { grid-column: 1/-1; }
.provider-form label { display: grid; gap: 7px; color: #34394d; font-weight: 700; font-size: .92rem; }
.provider-form input, .provider-form select, .provider-form textarea { width: 100%; border: 1px solid #d8ddea; border-radius: 10px; background: #fafbfe; padding: 12px; outline: none; }
.provider-form input:focus, .provider-form select:focus, .provider-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,143,232,.12); }
.form-status { min-height: 24px; margin: 0; color: #a42020 !important; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 15px; background: #fbfcfe; padding: 0 20px; }
.faq-list summary { cursor: pointer; padding: 20px 0; font-weight: 800; }
.faq-list details p { margin: -3px 0 20px; }

.contact-section { background: #0f1425; color: white; padding: 78px 0; }
.contact-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 50px; }
.contact-section .section-label { color: #7ccaf8; }
.contact-section h2 { margin-bottom: 0; }
.whatsapp-number { min-height: 76px; padding: 0 28px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 14px; background: #61d778; color: white; font-size: clamp(1.15rem,3vw,1.75rem); font-weight: 800; }

.site-footer { background: #0c1120; color: rgba(255,255,255,.62); border-top: 1px solid rgba(255,255,255,.08); padding: 48px 0; }
.footer-inner { width: min(1160px, calc(100% - 40px)); margin: auto; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.footer-brand img { width: 125px; margin-bottom: 12px; }
.footer-brand p { max-width: 520px; margin: 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.copyright { grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; margin: 0; }

.floating-whatsapp { position: fixed; z-index: 90; left: 24px; bottom: 24px; width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 2rem; box-shadow: 0 16px 40px rgba(39,211,102,.33); }

.legal-page { min-height: 100vh; background: #fff; padding: 170px 0 80px; }
.legal-card { width: min(850px, calc(100% - 36px)); margin: auto; }
.legal-card h1 { font-size: clamp(2.2rem,5vw,4rem); }
.legal-card h2 { margin-top: 40px; }
.legal-card p, .legal-card li { color: var(--muted); }
.back-link { color: var(--blue); font-weight: 800; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .header-inner { min-height: 96px; }
  .split-layout, .provider-layout, .faq-layout, .contact-inner { grid-template-columns: 1fr; }
  .service-grid, .steps-grid { grid-template-columns: 1fr; }
  .visual-card { min-height: 430px; }
  .provider-form { grid-template-columns: 1fr; }
  .provider-form label { grid-column: 1/-1; }
  .contact-inner { text-align: center; }
}

@media (max-width: 640px) {
  .header-inner { width: calc(100% - 30px); min-height: 108px; }
  .brand img { width: 126px; }
  .language-button { padding: 0; }
  .hero { min-height: 100svh; padding: 155px 20px 75px; }
  .hero h1 { font-size: clamp(1.85rem,8vw,2.65rem); }
  .hero-description { font-size: 1rem; line-height: 1.9; }
  .store-row { gap: 8px; margin-top: 28px; }
  .store-row a { width: calc(50% - 4px); }
  .store-row img { width: 100%; height: auto; aspect-ratio: 2.8; }
  .hero-ctas { display: grid; }
  .cta { width: 100%; }
  .section { padding: 78px 0; }
  .section-inner { width: calc(100% - 32px); }
  .section h2, .contact-section h2 { font-size: 2.15rem; }
  .visual-card { min-height: 380px; }
  .provider-form { padding: 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { display: grid; gap: 8px; }
  .floating-whatsapp { width: 60px; height: 60px; left: 18px; bottom: 18px; }
}
