/* ============================================================
   CLÍNICA VILLAREAL — style.css
   Design: Elegante, Clean, Feminino, Premium
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #faf7f4;
  --white:      #ffffff;
  --blush:      #f5ede8;
  --rose-light: #fce4ec;
  --gold:       #c9975a;
  --gold-light: #d4af7c;
  --gold-pale:  #f0e0cc;
  --text-dark:  #2c2118;
  --text-mid:   #6b5744;
  --text-soft:  #9b8476;
  --border:     rgba(201,151,90,0.2);
  --shadow-sm:  0 2px 12px rgba(44,33,24,0.06);
  --shadow-md:  0 8px 32px rgba(44,33,24,0.1);
  --shadow-lg:  0 20px 60px rgba(44,33,24,0.12);
  --radius:     16px;
  --radius-sm:  10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.8;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 12px auto 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: white;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,151,90,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,151,90,0.45);
  filter: brightness(1.05);
}
.btn-primary.mt-1 { margin-top: 8px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--white);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 18px 36px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #20bc5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.4);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(201,151,90,0.3);
}
.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(201,151,90,0.45);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250,247,244,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-ornament {
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn-nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:not(.btn-nav-cta):hover { color: var(--gold); }
.nav-links a:not(.btn-nav-cta):hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #faf7f4 0%, #f5ede8 50%, #faf7f4 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 30%, rgba(245,220,200,0.4) 0%, transparent 70%);
}
.hero-blob {
  position: absolute;
  pointer-events: none;
}
.blob-1 { width: 500px; top: -100px; right: -100px; }
.blob-2 { width: 300px; bottom: 100px; left: -50px; }
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--gold-light);
  background: rgba(240,224,204,0.4);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: fit-content;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-image-side { position: relative; z-index: 1; }
.hero-img-wrap {
  position: relative;
  height: 580px;
  border-radius: 200px 200px 60px 60px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { border-radius: 200px 200px 60px 60px; }
.hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
  background: var(--white);
}
.card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
}
.card-body { flex: 1; }
.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.card-body p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }
.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 10px;
}
.card-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: color 0.2s, letter-spacing 0.2s;
}
.card-cta:hover { color: var(--text-dark); letter-spacing: 0.06em; }

.service-card--cta {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3d2e22 100%);
  border-color: transparent;
  align-items: center;
  justify-content: center;
}
.service-card--cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(44,33,24,0.25);
  border-color: transparent;
  background: linear-gradient(135deg, var(--text-dark) 0%, #3d2e22 100%);
}
.card-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
}
.card-cta-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
}
.card-cta-inner p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.card-cta-inner svg { color: var(--gold); }

/* ── BOOKING CTA ── */
.booking-cta {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.booking-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-blob { position: absolute; inset: 0; width: 100%; height: 100%; }
.booking-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 64px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.booking-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 24px 24px 0 0;
}
.booking-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.booking-text h2 em { font-style: italic; color: var(--gold); }
.booking-text p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 20px; }
.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.booking-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-note {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* ── GALLERY ── */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,33,24,0.7) 0%, transparent 100%);
  padding: 24px 20px 16px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay span {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 540px;
}
.about-img-main {
  width: 80%;
  height: 100%;
  border-radius: 200px 200px 60px 60px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,151,90,0.35);
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.85;
  line-height: 1.4;
}
.about-img-float {
  position: absolute;
  bottom: 0; right: 10%;
  width: 38%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}
.about-content { max-width: 520px; }
.about-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-body {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.feature p {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-light);
}
.stars {
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-soft);
}
.testimonial-card--cta {
  background: linear-gradient(135deg, var(--blush), var(--gold-pale));
  border-color: var(--gold-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.testimonial-card--cta p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-style: italic;
}

/* ── LOCATION ── */
.location {
  padding: 100px 0;
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-block strong { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.info-block p, .info-block a { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }
.info-block a { transition: color 0.2s; }
.info-block a:hover { color: var(--gold); }
.location-map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-ornament { color: var(--gold-light); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-2px);
}
.footer-links-col h4, .footer-contact-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--gold-light); }
.footer-contact-col { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: floatPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--text-dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text-dark);
}
.whatsapp-float:hover .float-tooltip { opacity: 1; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.65); }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 32px 60px;
  }
  .hero-image-side { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-subtitle { margin: 0 auto 36px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 320px; margin-bottom: 24px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 320px; }
  .booking-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .booking-perks { align-items: center; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .stat-divider { width: 60px; height: 1px; }

  .hero { padding: 100px 20px 60px; }
  .about-images { height: 280px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .btn-whatsapp { width: 100%; justify-content: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}
