:root {
  --oro: #c4a77d;
  --slate-dark: #020617;
  --green: #16a34a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; }
.font-serif { font-family: 'Playfair Display', serif; }
.oro-text { color: var(--oro); }
.oro-bg { background-color: var(--oro); }

.hero-bg {
  background-image:
    linear-gradient(rgba(10, 15, 30, 0.84), rgba(10, 15, 30, 0.95)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  z-index: 9999;
}

.hero-cta-group a,
#tarifas button,
.floating-actions a,
.cookie-banner button {
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hero-cta-group a:hover,
#tarifas button:hover,
.floating-actions a:hover,
.cookie-banner button:hover {
  transform: translateY(-1px);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 140px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.floating-call {
  background: var(--slate-dark);
}

.floating-whatsapp {
  background: var(--green);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(2, 6, 23, 0.98);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  margin-bottom: .35rem;
}

.cookie-banner__text {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

.cookie-banner__text a { color: var(--oro); text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.cookie-banner button {
  border: 0;
  cursor: pointer;
  padding: .8rem 1rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.cookie-banner button:not(.secondary) {
  background: var(--oro);
  color: #0f172a;
}

.cookie-banner button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

.legal-page main {
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.legal-page h1,
.legal-page h2 {
  font-family: 'Playfair Display', serif;
}

.legal-page h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.legal-page p,
.legal-page li {
  color: #334155;
  line-height: 1.8;
}

.legal-page ul {
  padding-left: 1.2rem;
  list-style: disc;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    padding: 1.1rem 1.25rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
    min-width: 240px;
  }
}

@media (max-width: 767px) {
  .hero-bg { background-attachment: scroll; }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 100%;
    min-width: 0;
  }
}
