﻿:root {
  --bg: #15110d;
  --panel: rgba(35, 27, 20, 0.82);
  --text: #fff8ec;
  --muted: #cbbda8;
  --subtle: #968876;
  --gold: #d7aa62;
  --gold-light: #ffe2a3;
  --line: rgba(255, 226, 163, 0.18);
  --radius: 8px;
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(215, 170, 98, 0.17), transparent 32rem),
    radial-gradient(circle at 86% 32%, rgba(255, 226, 163, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(21, 17, 13, 0.72), #15110d 660px),
    #15110d;
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
}

.gold,
.brand span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 48%, #9c6e2d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.back {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.back:hover {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 4px 0;
  transition: color 180ms ease;
}

.lang button:hover,
.lang button.is-active {
  color: var(--gold-light);
}

.lang span {
  opacity: 0.35;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 17, 13, 0.94), rgba(21, 17, 13, 0.62), rgba(21, 17, 13, 0.94)),
    var(--service-photo) center / cover;
  opacity: 0.78;
  transform: scale(1.04);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: -1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  max-width: 860px;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  letter-spacing: -0.015em;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 226, 163, 0.26);
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 700;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn.primary {
  color: #1b130c;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 42px rgba(215, 170, 98, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 226, 163, 0.58);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

section {
  padding: 82px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  display: flex;
  gap: 11px;
  color: var(--muted);
}

li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.72em;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(215, 170, 98, 0.34);
  flex: 0 0 auto;
}

.flow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.text-panel p {
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 300;
}

.prices {
  display: grid;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 226, 163, 0.12);
}

.price-row:last-child {
  border-bottom: 0;
}

.price {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  white-space: nowrap;
}

.cta {
  text-align: center;
  padding-bottom: 110px;
}

.cta h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.cta p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
}

footer {
  padding: 28px 0 38px;
  border-top: 1px solid rgba(255, 226, 163, 0.12);
  color: var(--subtle);
}

.floating-socials {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  gap: 12px;
}

.social-fab {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(21, 17, 13, 0.72);
  border: 1px solid rgba(255, 226, 163, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-fab-booking {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  gap: 2px;
  border-radius: 999px;
  color: #15110d;
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #ffe2a3, #d8a84f);
  border: 1px solid rgba(255, 226, 163, 0.8);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), 0 0 18px rgba(229, 177, 83, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-fab-booking svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.service-fab-booking:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.44), 0 0 22px rgba(229, 177, 83, 0.24);
}

.service-fab-booking:active,
.social-fab:active {
  transform: scale(0.96);
}

.social-fab::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 220ms ease;
}

.social-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff8ec;
  position: relative;
}

.social-fab:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 226, 163, 0.5);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}

@media (max-width: 768px), (hover: none) {
  .social-fab {
    backdrop-filter: none;
  }

  .service-fab-booking:hover,
  .social-fab:hover {
    transform: none;
  }

  .social-fab:hover::before {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.social-fab:hover::before {
  opacity: 1;
}

.social-fab.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-fab.instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 12%, #fd5949 38%, #d6249f 62%, #285aeb 100%);
}

.social-fab.whatsapp::before {
  background: rgba(37, 211, 102, 0.16);
}

.social-fab.instagram::before {
  background: rgba(214, 36, 159, 0.16);
}

@media (max-width: 900px) {
  .grid,
  .flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    height: 66px;
  }

  .brand {
    font-size: 1.28rem;
  }

  .nav-actions {
    gap: 10px;
  }

  .back {
    display: none;
  }

  .hero {
    min-height: 72vh;
    padding-top: 96px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-socials {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .social-fab {
    width: 56px;
    height: 56px;
  }

  section {
    padding: 64px 0;
  }
}
