:root {
  --ocean: #061a1f;
  --ocean-2: #0a252c;
  --ocean-3: #0e3038;
  --cyan: #2dd4bf;
  --cream: #d4c5a9;
  --ink: #a8c5cb;
  --mist: #d0e4e8;
  --foam: #f2f8f9;
  --mute: #5a7a82;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background: var(--ocean); }
body {
  font-family: var(--font-sans);
  background: var(--ocean);
  color: var(--mist);
  min-height: 100svh;
}
img { max-width: 100%; display: block; outline: 1px solid rgba(242, 248, 249, 0.08); outline-offset: -1px; }
img.no-outline { outline: none; }
em { font-style: italic; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.rise { animation: rise 500ms var(--ease-out) both; }
.rise-2 { animation-delay: 80ms; }
.rise-3 { animation-delay: 160ms; }
.rise-4 { animation-delay: 240ms; }
.rise-5 { animation-delay: 320ms; }
.rise-6 { animation-delay: 400ms; }

header {
  position: fixed; inset-inline: 0; top: 0; z-index: 30; width: 100%;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
}
header.scrolled, body.sub header {
  border-bottom-color: rgba(45, 212, 191, 0.15);
  background: rgba(6, 26, 31, 0.92);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
}
.logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.logo img { width: 2.5rem; height: 2.5rem; border-radius: 999px; }
.logo-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  letter-spacing: -0.025em; color: #fff; line-height: 1;
}
.logo-name .visuals {
  display: inline; margin-left: 0.2em;
  font-size: 0.58em; font-weight: 400; color: #fff;
}
nav.desktop { display: none; align-items: center; gap: 1.75rem; }
nav.desktop a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
}
nav.desktop a:hover { color: var(--cyan); }
.nav-cta {
  border-radius: 999px; background: var(--cyan); color: var(--ocean);
  padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
}
.nav-cta:hover { background: rgba(45, 212, 191, 0.9); }
.hamburger {
  display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center;
  border: none; background: none; color: var(--cream); border-radius: 0.75rem;
}
.hamburger svg { width: 1.25rem; height: 1.25rem; }
.mobile-nav {
  display: none; flex-direction: column;
  border-top: 1px solid rgba(45, 212, 191, 0.1); background: var(--ocean-2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.875rem 1.25rem; font-size: 0.875rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--mist); text-decoration: none;
}
.mobile-nav a.wa { color: var(--cyan); }

.hero { position: relative; isolation: isolate; min-height: 100svh; overflow: hidden; }
.hero img.bg { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,26,31,0.4), rgba(6,26,31,0.5), var(--ocean));
}
.hero-content {
  position: relative; z-index: 10;
  display: flex; min-height: 100svh; flex-direction: column; justify-content: flex-end;
  padding: 7rem 1.25rem 3rem;
}
.hero-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cyan);
}
.hero h1 {
  margin-top: 1rem; max-width: 48rem;
  font-family: var(--font-display); font-size: 3rem; font-weight: 500;
  line-height: 1.05; color: var(--foam);
}
.hero h1 em { color: var(--cream); }
.hero-sub {
  margin-top: 1.25rem; max-width: 36rem;
  font-size: 1rem; line-height: 1.7; color: var(--mist);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 3.5rem; padding: 0 1.5rem; border-radius: var(--radius-2xl);
  background: var(--cyan); color: var(--ocean); text-decoration: none;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; overflow: hidden; }
.strip img { width: 100%; height: 10rem; object-fit: cover; will-change: transform; }

.wrap { max-width: 72rem; margin: 0 auto; }
.section { padding: 4rem 1rem; }
.section-alt { background: var(--ocean-2); }
.kicker {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cyan);
}
h2.display {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 400;
  line-height: 1.12; color: var(--foam);
}
h2.display em { color: var(--cream); }
.lead { margin-top: 1rem; max-width: 36rem; font-size: 1rem; color: var(--ink); line-height: 1.65; }

.cards { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
.card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-3xl); text-decoration: none; color: inherit;
}
.card-media { aspect-ratio: 4 / 5; overflow: hidden; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}
.card:hover .card-media img { transform: scale(1.03); }
.card-media.logo-fit {
  background: var(--foam);
  display: flex; align-items: center; justify-content: center;
}
.card-media.logo-fit img {
  width: 72%; height: 72%; object-fit: contain; outline: none;
}
.card-shade {
  pointer-events: none; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ocean), rgba(6,26,31,0.45), transparent);
}
.card-rank {
  position: absolute; left: 1.25rem; top: 1.25rem;
  border-radius: 999px; border: 1px solid rgba(45, 212, 191, 0.4);
  background: rgba(6, 26, 31, 0.7); padding: 0.25rem 0.625rem;
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan);
}
.card-body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.25rem; }
.card-body h2 {
  margin-top: 0.25rem;
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 500;
  line-height: 1.15; color: var(--cream);
}
.card-sub { margin-top: 0.25rem; font-size: 0.875rem; color: var(--mist); }
.card-meta {
  margin-top: 1rem; display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; font-size: 0.875rem; color: var(--foam);
}
.card-meta .price { font-variant-numeric: tabular-nums; font-weight: 500; color: var(--cream); }
.card-meta .price span { margin-left: 0.25rem; font-size: 0.75rem; font-weight: 400; color: var(--mute); }

.spots-grid { margin-top: 2rem; display: grid; gap: 2rem; }
.spots-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; overflow: hidden; }
.spots-photos img { width: 100%; height: 9rem; object-fit: cover; will-change: transform; }
.spots-photos img.wide { grid-column: 1 / -1; height: 14rem; }
.spots-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.spot-chip { border-left: 2px solid var(--cyan); background: var(--ocean-3); padding: 1rem; }
.spot-chip h3 { font-family: var(--font-display); font-size: 1.125rem; color: var(--foam); }

.photo-wall { margin-top: 2rem; columns: 2; column-gap: 0.5rem; }
.photo-wall img { width: 100%; margin-bottom: 0.5rem; break-inside: avoid; object-fit: cover; will-change: transform; }

.google-card {
  margin-top: 2rem; display: grid; overflow: hidden;
  border-radius: var(--radius-3xl); background: var(--ocean-3);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.16);
}
.google-score { padding: 2rem; border-bottom: 1px solid rgba(45, 212, 191, 0.1); }
.google-score .brand { font-weight: 500; color: var(--foam); }
.google-score .num { margin-top: 0.75rem; font-family: var(--font-display); font-size: 3.75rem; color: var(--foam); }
.google-score .stars { margin-top: 0.25rem; font-size: 1.125rem; letter-spacing: 0.2em; color: #fbbc04; }
.google-score p.hint { margin-top: 0.75rem; font-size: 0.875rem; color: var(--ink); line-height: 1.55; }
.google-score p.hint span { color: var(--foam); }
.google-links { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.google-reviews { padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.google-reviews blockquote { border-left: 2px solid var(--cyan); padding-left: 1rem; }
.google-reviews p { font-size: 0.875rem; line-height: 1.65; color: var(--mist); }
.google-reviews footer { margin-top: 0.25rem; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.btn-sm {
  display: inline-flex; align-items: center; height: 3rem; padding: 0 1.25rem;
  border-radius: var(--radius-xl); background: var(--cyan); color: var(--ocean);
  text-decoration: none; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; align-self: flex-start;
}
.btn-ghost {
  background: transparent; color: var(--cyan);
  border: 1px solid rgba(45, 212, 191, 0.45);
}

.cta { position: relative; isolation: isolate; padding: 6rem 1.25rem; text-align: center; overflow: hidden; }
.cta img.bg { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.cta-shade { position: absolute; inset: 0; background: rgba(6, 26, 31, 0.75); }
.cta .rel { position: relative; }
.cta h2 { font-family: var(--font-display); font-size: 2.25rem; color: var(--foam); }
.cta h2 em { color: var(--cream); }
.cta p { margin: 0.75rem auto 0; max-width: 28rem; font-size: 1rem; color: var(--mist); }
.cta .btn { margin-top: 2rem; }

footer.site {
  border-top: 1px solid rgba(45, 212, 191, 0.1);
  background: var(--ocean); padding: 2.5rem 1.25rem;
}
.footer-inner { max-width: 72rem; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.footer-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 2.5rem; }
.footer-brand img { height: 3rem; width: auto; }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
}
.footer-links a:hover { color: var(--cyan); }
.footer-place { font-size: 0.75rem; color: var(--mute); }

.float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 40;
  display: flex; flex-direction: column; gap: 0.625rem;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.float.is-hidden {
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px);
}
.float a {
  display: flex; width: 3rem; height: 3rem; align-items: center; justify-content: center;
  border-radius: 999px; box-shadow: 0 10px 26px rgba(0,0,0,0.38);
  transition: transform 0.2s;
}
.float a:hover { transform: translateY(-2px); }
.float svg { width: 1.5rem; height: 1.5rem; fill: #fff; }
.float-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.float-wa { background: #25d366; }

/* subpáginas */
.page-hero { padding-top: 4.25rem; overflow: hidden; }
.page-hero img { width: 100%; height: 18rem; object-fit: cover; will-change: transform; }
.page-body { padding: 1.5rem 1rem 7.5rem; max-width: 45rem; margin: 0 auto; }
.back {
  display: inline-block; margin-bottom: 1rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cyan); text-decoration: none;
}
.page-body h1 {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 500;
  line-height: 1.12; color: var(--cream);
}
.page-body .tag { margin-top: 0.35rem; font-size: 0.875rem; color: var(--mist); }
.page-body .desc { margin-top: 1rem; font-size: 1rem; line-height: 1.7; color: var(--mist); white-space: pre-line; }
.facts { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.fact { background: var(--ocean-2); border-radius: var(--radius-2xl); padding: 0.85rem 1rem; }
.fact dt { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.fact dd { margin-top: 0.3rem; font-size: 0.9rem; color: var(--foam); }
.includes { margin-top: 2rem; }
.includes h2 { font-family: var(--font-display); font-size: 1.75rem; color: var(--cream); }
.includes ul { list-style: none; margin-top: 1rem; }
.includes li {
  font-size: 0.95rem; color: var(--mist);
  padding: 0.35rem 0 0.35rem 1.1rem; position: relative;
}
.includes li::before {
  content: ""; position: absolute; left: 0; top: 0.85em;
  width: 6px; height: 1px; background: var(--cyan);
}
.act-gallery { margin-top: 2rem; }
.act-gallery h2 { font-family: var(--font-display); font-size: 1.75rem; color: var(--cream); }
.act-gallery .grid { margin-top: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.act-gallery img { width: 100%; height: 9rem; object-fit: cover; }
.page-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 20;
  border-top: 1px solid rgba(242, 248, 249, 0.1);
  background: rgba(6, 26, 31, 0.9); backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
}
.page-bar-inner {
  max-width: 45rem; margin: 0 auto;
  display: flex; align-items: center; gap: 0.75rem;
}
.page-bar .who { font-size: 0.7rem; color: var(--mute); }
.page-bar .amt {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.page-bar .btn { margin-left: auto; height: 3.25rem; min-width: 9rem; padding: 0 1.25rem; }

@media (min-width: 640px) {
  .header-inner { padding-inline: 1.5rem; }
  .hero-content { padding-inline: 2rem; }
  .hero h1 { font-size: 4.5rem; }
  .hero-sub { font-size: 1.125rem; }
  .section { padding: 5rem 1.5rem; }
  h2.display { font-size: 3rem; }
  .card-media { aspect-ratio: 5 / 4; }
  .card-body { padding: 1.5rem; }
  .card-body h2 { font-size: 2.25rem; }
  .strip { grid-template-columns: repeat(3, 1fr); }
  .strip img { height: 11rem; }
  .strip img.g1 { grid-column: span 2; grid-row: span 2; height: 100%; min-height: 22.5rem; }
  .photo-wall { columns: 3; }
  .cta h2 { font-size: 3rem; }
  .float { right: 1.25rem; bottom: 1.25rem; }
  .float a { width: 3.5rem; height: 3.5rem; }
  .footer-brand img { height: 3.5rem; }
  .page-hero img { height: 24rem; }
  .page-body { padding: 2rem 1.5rem 8rem; }
  .page-body h1 { font-size: 3rem; }
  .act-gallery img { height: 11rem; }
}
@media (min-width: 768px) {
  nav.desktop { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
  .google-card { grid-template-columns: 1fr 1fr; }
  .google-score { border-bottom: none; border-right: 1px solid rgba(45, 212, 191, 0.1); }
}
@media (min-width: 1024px) {
  .hero-content { padding-inline: 6vw; }
  .card-media { aspect-ratio: 16 / 9; }
  .spots-grid { grid-template-columns: 1fr 1fr; }
  .photo-wall { columns: 4; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero img.bg, .cta img.bg, .strip img, .card-media img, .spots-photos img, .photo-wall img, .page-hero img {
    transform: none !important; will-change: auto;
  }
}
