/* =====================================================
   BAÑOS TURCOS LAS VEGAS — Spa Premium Landing
   Colores del logo: azul petróleo + verde turquesa
   ===================================================== */

:root {
  /* Brand palette (from logo) */
  --petrol: #1F6F78;
  --petrol-dark: #0F4C54;
  --petrol-soft: #2D8590;
  --turquoise: #4FBFAF;
  --turquoise-soft: #7FD3C6;
  --turquoise-tint: #E6F6F3;

  /* Neutrals */
  --ink: #0E2A2E;
  --ink-soft: #3A5358;
  --muted: #6E7F83;
  --line: #E4ECEE;
  --paper: #FFFFFF;
  --cream: #F7FAFA;
  --mist: #EEF5F5;

  /* Type */
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 220ms;
  --t-med: 450ms;
  --t-slow: 900ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 76, 84, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 76, 84, 0.10);
  --shadow-lg: 0 24px 64px rgba(15, 76, 84, 0.14);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--petrol); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--turquoise); color: var(--paper); }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 96px 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
}

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head .eyebrow { display: inline-flex; }

.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.section__grid--reverse .section__media { order: 2; }
@media (max-width: 900px) {
  .section__grid { grid-template-columns: 1fr; gap: 48px; }
  .section__grid--reverse .section__media { order: 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--turquoise-tint);
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section__title em {
  color: var(--petrol);
  font-style: italic;
  font-weight: 600;
}

.section__text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}
.section__head .section__text { margin: 0 auto; }
.section__body .section__text { margin: 0 0 28px; }

/* ==========================================================
   Decorative fluid shapes (logo-inspired droplets)
   ========================================================== */
.fluid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fluid-shape {
  position: absolute;
  filter: blur(80px);
  opacity: 0.45;
  border-radius: 50%;
  animation: floaty 18s var(--ease) infinite;
}
.fluid-shape--1 {
  width: 520px; height: 520px;
  background: var(--turquoise-soft);
  top: -140px; right: -120px;
  animation-delay: -2s;
}
.fluid-shape--2 {
  width: 420px; height: 420px;
  background: var(--petrol);
  bottom: -120px; left: -140px;
  opacity: 0.28;
  animation-delay: -8s;
}
.fluid-shape--3 {
  width: 300px; height: 300px;
  background: var(--turquoise);
  top: 45%; left: 60%;
  opacity: 0.18;
  animation-delay: -14s;
}
@keyframes floaty {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(30px,-40px,0) scale(1.08); }
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition:
    transform var(--t-fast) var(--ease),
    background-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }

.btn--primary {
  background: var(--petrol);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(31, 111, 120, 0.28);
}
.btn--primary:hover {
  background: var(--petrol-dark);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31, 111, 120, 0.34);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--paper);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--petrol);
}
.btn--outline:hover {
  background: var(--petrol);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--t-med) var(--ease);
}
.navbar.is-scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 16px rgba(15,76,84,0.06);
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
}
.navbar__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--paper);
  transition: color var(--t-med) var(--ease);
}
.navbar.is-scrolled .navbar__brand-text { color: var(--ink); }
.navbar__brand-text strong {
  font-size: 1.15rem;
  font-weight: 600;
}
.navbar__brand-text em {
  font-size: 0.8rem;
  font-style: italic;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--turquoise-soft);
  margin-top: 2px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__nav a {
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.navbar.is-scrolled .navbar__nav a { color: var(--ink); }
.navbar__nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--turquoise);
  transition: width var(--t-med) var(--ease);
}
.navbar__nav a:not(.btn):hover::after { width: 100%; }
.navbar__nav a:hover { color: var(--turquoise); }

.navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: all var(--t-fast) var(--ease);
}
.navbar.is-scrolled .navbar__toggle span { background: var(--ink); }
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .navbar__toggle { display: flex; }
  .navbar__nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    box-shadow: -8px 0 40px rgba(15,76,84,0.12);
  }
  .navbar__nav.is-open { transform: translateX(0); }
  .navbar__nav a { color: var(--ink) !important; font-size: 1.05rem; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  padding: 140px 0 80px;
}
.hero__slides {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1500ms ease-in-out;
  will-change: opacity;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(15,76,84,0.82) 0%, rgba(31,111,120,0.70) 50%, rgba(79,191,175,0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 28px;
}
.hero__eyebrow i { color: var(--turquoise-soft); }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--turquoise-soft);
  font-weight: 400;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 58ch;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__meta-item i {
  font-size: 1.3rem;
  color: var(--turquoise-soft);
}
.hero__meta-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}
.hero__meta-item span {
  font-size: 0.82rem;
  opacity: 0.75;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--paper);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.section--about { background: var(--paper); }
.about__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
}
.about__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 48px;
}
.about__blob {
  position: absolute;
  border-radius: 50% 60% 42% 55% / 55% 45% 60% 48%;
  filter: blur(2px);
  z-index: 1;
  animation: blobMorph 14s var(--ease) infinite alternate;
}
.about__blob--1 {
  width: 70%; height: 70%;
  top: 10%; left: 8%;
  background: var(--turquoise-tint);
}
.about__blob--2 {
  width: 55%; height: 55%;
  bottom: 5%; right: 5%;
  background: linear-gradient(145deg, var(--turquoise-soft), var(--petrol-soft));
  opacity: 0.25;
  animation-delay: -6s;
}
@keyframes blobMorph {
  0% { border-radius: 50% 60% 42% 55% / 55% 45% 60% 48%; }
  100% { border-radius: 62% 48% 58% 45% / 42% 60% 48% 55%; }
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 28px 0 36px;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.about__features i {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--turquoise-tint);
  color: var(--petrol);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .about__features { grid-template-columns: 1fr; }
}

/* ==========================================================
   SERVICES
   ========================================================== */
.section--services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--mist) 100%);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--turquoise), var(--petrol));
  transition: height var(--t-med) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--turquoise-tint);
}
.service-card:hover::before { height: 100%; }

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--turquoise-tint);
  color: var(--petrol);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--t-med) var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--petrol);
  color: var(--paper);
  transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.section--testimonials { background: var(--paper); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: var(--turquoise-tint);
  border-radius: 999px;
  margin-top: 24px;
}
.rating-badge__stars {
  color: var(--turquoise);
  font-size: 1.05rem;
  letter-spacing: 3px;
}
.rating-badge__text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--petrol);
  line-height: 1;
}
.rating-badge__text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--t-med) var(--ease);
  border: 1px solid var(--line);
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial--feature {
  background: linear-gradient(145deg, var(--petrol) 0%, var(--petrol-soft) 100%);
  color: var(--paper);
  border: 0;
  transform: scale(1.03);
}
.testimonial--feature:hover { transform: scale(1.03) translateY(-4px); }

.testimonial__mark {
  font-size: 1.8rem;
  color: var(--turquoise);
  opacity: 0.6;
  margin-bottom: 14px;
}
.testimonial--feature .testimonial__mark { color: var(--turquoise-soft); opacity: 0.9; }

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 22px;
}
.testimonial--feature p { color: var(--paper); }

.testimonial footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial--feature footer { border-color: rgba(255,255,255,0.2); }

.testimonial__stars {
  color: var(--turquoise);
  letter-spacing: 2px;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.testimonial--feature cite { color: rgba(255,255,255,0.85); }

/* ==========================================================
   GALLERY
   ========================================================== */
.section--gallery { background: var(--cream); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--mist);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: 1fr; gap: 16px; }
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item figcaption {
  position: absolute;
  left: 18px; bottom: 18px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.92);
  color: var(--petrol);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--t-med) var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery__note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.9rem;
}
.gallery__note i { color: var(--turquoise); margin-right: 8px; }

/* ==========================================================
   CONTACT
   ========================================================== */
.section--contact { background: var(--paper); }

.contact__list {
  display: grid;
  gap: 20px;
  margin: 32px 0;
}
.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--turquoise-tint);
  color: var(--petrol);
  border-radius: 14px;
  font-size: 1.1rem;
}
.contact__list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact__list p, .contact__list a {
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.contact__list a:hover { color: var(--petrol); }

.map-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.cta-final {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--petrol-dark) 0%, var(--petrol) 50%, var(--turquoise) 120%);
  overflow: hidden;
  color: var(--paper);
  text-align: center;
}
.cta-final::before,
.cta-final::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.cta-final::before {
  width: 400px; height: 400px;
  background: var(--turquoise-soft);
  top: -120px; left: -120px;
}
.cta-final::after {
  width: 400px; height: 400px;
  background: var(--petrol-soft);
  bottom: -150px; right: -120px;
}
.cta-final__inner { position: relative; z-index: 2; }

.cta-final h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-final h2 em {
  font-style: italic;
  color: var(--turquoise-soft);
}
.cta-final p {
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-final .btn--primary {
  background: var(--paper);
  color: var(--petrol);
}
.cta-final .btn--primary:hover {
  background: var(--turquoise-soft);
  color: var(--petrol-dark);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 48px;
}
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 36px; } }

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__brand img {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
  padding: 6px;
}
.footer__brand strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--paper);
  font-size: 1.3rem;
  font-weight: 600;
}
.footer__brand span {
  font-size: 0.88rem;
  color: var(--turquoise-soft);
  font-style: italic;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 560px) { .footer__cols { grid-template-columns: 1fr; } }
.footer__cols h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--paper);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer__cols p, .footer__cols a {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.68);
}
.footer__cols a:hover { color: var(--turquoise-soft); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================
   FLOATING WHATSAPP
   ========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 14px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  font-weight: 600;
}
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.55);
}
.whatsapp-float i {
  font-size: 1.4rem;
  background: rgba(255,255,255,0.18);
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.whatsapp-float__label {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  z-index: 0;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 560px) {
  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: 14px; }
}

/* ==========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.reveal.is-visible ~ .reveal.is-visible { transition-delay: 80ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
