:root {
  --brand-cyan: #01a3d2;
  --brand-cyan-deep: #0d7ba0;
  --brand-rose: #e45290;
  --brand-rose-soft: #f8dce7;
  --ink: #14232b;
  --ink-soft: #5c6b74;
  --surface: #f7fbfc;
  --surface-strong: #ffffff;
  --line: #dbe8ee;
  --shadow: 0 18px 48px rgba(20, 35, 43, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(1, 163, 210, 0.08), transparent 34%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(228, 82, 144, 0.15), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

::selection {
  background: rgba(1, 163, 210, 0.2);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 1.25rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(20, 35, 43, 0.04);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid rgba(1, 163, 210, 0.16);
  box-shadow: 0 8px 18px rgba(20, 35, 43, 0.08);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.02rem;
  color: var(--ink);
}

.brand-copy small {
  font-size: 0.74rem;
  color: var(--ink-soft);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  position: relative;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-cyan-deep);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  padding: 4.4rem 0 3.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--brand-cyan-deep);
}

.hero-mark {
  display: none;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}

.hero-text,
.section-text {
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 35, 43, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-rose));
  color: var(--surface-strong);
}

.btn-secondary {
  background: var(--surface-strong);
  border-color: var(--line);
  color: var(--ink);
}

.hero-card {
  padding: 1.45rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: 1.3rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.hero-card li + li {
  margin-top: 0.55rem;
}

.hero-badge {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(1, 163, 210, 0.1);
  color: var(--brand-cyan-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.section {
  padding: 3.2rem 0;
}

.section-heading {
  margin-bottom: 1.3rem;
}

.section-heading h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.service-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.tab-button {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tab-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(20, 35, 43, 0.08);
}

.tab-button.active {
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-rose));
  color: var(--surface-strong);
  border-color: transparent;
}

.services-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-group {
  margin-bottom: 1.7rem;
}

.service-group-title {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(1, 163, 210, 0.08);
  color: var(--brand-cyan-deep);
  font-weight: 800;
}

.service-card {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: 0 10px 24px rgba(20, 35, 43, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 35, 43, 0.09);
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.04rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.gender-badge {
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(228, 82, 144, 0.1);
  color: var(--brand-rose);
  font-size: 0.76rem;
  font-weight: 700;
}

.package-label {
  margin: 0;
  font-weight: 700;
  color: var(--brand-cyan-deep);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.price-list strong {
  color: var(--ink);
  font-weight: 700;
}

.details-card {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.details-card summary {
  cursor: pointer;
  color: var(--brand-cyan-deep);
  font-weight: 700;
}

.details-content {
  padding-top: 0.8rem;
  display: grid;
  gap: 0.8rem;
}

.reference-note p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.before-after-grid {
  display: grid;
  gap: 0.7rem;
}

.before-after-box {
  display: grid;
  gap: 0.35rem;
}

.before-after-box span {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}

.before-after-box img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
}

.contact-banner {
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(1, 163, 210, 0.12), rgba(228, 82, 144, 0.09));
  border: 1px solid rgba(1, 163, 210, 0.12);
}

.contact-info {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
}

.site-footer {
  padding: 1.2rem 0 2rem;
  color: var(--ink-soft);
}

.brand-footer {
  margin: 0 0 0.4rem;
  font-weight: 800;
  color: var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-rose));
  color: white;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(1, 163, 210, 0.24);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

  flex-wrap: wrap;
}

.gender-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff4f8;
  color: var(--pink-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.package-label {
  margin: 0;
  color: var(--pink-deep);
  font-weight: 700;
}

.price-list {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: #fff9fc;
  border: 1px solid rgba(239, 94, 163, 0.08);
}

.price-list strong {
  color: var(--pink-deep);
}

.price-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.details-card {
  border: 1px solid rgba(239, 94, 163, 0.15);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 248, 251, 0.95), rgba(255, 255, 255, 0.95));
  overflow: hidden;
}

.details-card summary {
  cursor: pointer;
  list-style: none;
  padding: 0.8rem 0.95rem;
  font-weight: 700;
  color: var(--pink-deep);
}

.details-card summary::-webkit-details-marker {
  display: none;
}

.details-content {
  padding: 0 0.95rem 0.95rem;
  display: grid;
  gap: 0.8rem;
}

.reference-note {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(239, 94, 163, 0.08), rgba(215, 165, 140, 0.12));
  border: 1px solid rgba(239, 94, 163, 0.12);
  animation: softFadeIn 0.35s ease;
}

.reference-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.before-after-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
}

.before-after-box {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(239, 94, 163, 0.12);
}

.before-after-box span {
  display: block;
  padding: 0.35rem 0.6rem;
  background: rgba(239, 94, 163, 0.08);
  color: var(--pink-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.before-after-box img {
  width: 100%;
  height: 220px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.gallery-section {
  background: var(--pink-soft);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-card {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(45, 31, 39, 0.05);
  animation: fadeUp 0.9s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(239, 94, 163, 0.14);
}

.gallery-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.compare-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fdf0f6;
}

.compare-grid span {
  display: block;
  padding: 0.4rem 0.6rem;
  background: rgba(239, 94, 163, 0.1);
  color: var(--pink-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.compare-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.gallery-card p,
.gallery-card strong {
  margin: 0.25rem 0 0;
}

.contact-banner {
  display: grid;
  gap: 1.3rem;
  padding: 1.7rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(239, 94, 163, 0.14), rgba(215, 165, 140, 0.24));
}

.contact-info {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(239, 94, 163, 0.14);
}

.contact-info p {
  margin: 0.25rem 0;
}

.site-footer {
  padding: 1rem 0 1.5rem;
  color: var(--muted);
}

.brand-footer {
  margin: 0 0 0.5rem;
  font-weight: 800;
  color: var(--pink-deep);
}

.site-footer p {
  margin: 0.35rem 0;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 100;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
  animation: pulse 2s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  touch-action: manipulation;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrb {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(2%, 4%, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes softFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel[hidden] {
  display: none;
}

@media (min-width: 700px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .contact-banner {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }

  .footer-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .service-tabs {
    flex-direction: column;
  }

  .tab-button {
    width: 100%;
    text-align: center;
  }

  .contact-banner {
    padding: 1.2rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100%, calc(100% - 1rem));
  }

  .price-grid.three-col {
    grid-template-columns: 1fr;
  }

  .compare-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .hero-text,
  .section-text {
    font-size: 0.97rem;
  }

  .service-card,
  .gallery-card {
    padding: 0.9rem;
  }

  .service-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 0.7rem;
    left: 0.7rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom));
    text-align: center;
    justify-content: center;
  }
}
