/* ═══════════════════════════════════════════════════════════
   Leilma Beauty — style.css
   Stack: HTML · CSS · JS vanilla | Design: Clean Luxe Beauty
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --cream:        #FAFAF8;
  --cream-mid:    #EFE4D4;
  --cream-dark:   #E0CEBC;
  --espresso:     #1C1008;
  --espresso-mid: #3D2314;
  --gold:         #C9A96E;
  --gold-light:   #DFC08A;
  --gold-pale:    #F5ECD8;
  --nude:         #E8D5C4;
  --text:         #2C2018;
  --text-muted:   #7A6E65;
  --white:        #FFFFFF;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     16px;
  --radius-sm:  8px;
  --radius-pill:60px;

  --shadow-sm:   0 2px 12px rgba(28,16,8,0.06);
  --shadow-md:   0 4px 24px rgba(28,16,8,0.10);
  --shadow-lg:   0 8px 40px rgba(28,16,8,0.14);
  --shadow-gold: 0 6px 28px rgba(201,169,110,0.28);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--ff-display); line-height: 1.15; color: var(--espresso); }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
em { font-style: italic; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Section base ───────────────────────────────────────── */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-desc { color: var(--text-muted); font-size: 1rem; margin-top: 0.75rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label-light {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--espresso); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-primary:hover { box-shadow: var(--shadow-lg); background: var(--espresso-mid); }
.btn-ghost { background: transparent; color: var(--espresso); border: 1.5px solid rgba(28,16,8,0.18); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
.btn-outline-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(250,250,248,0.3); }
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.08em;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-logo span { color: var(--gold); font-style: italic; font-weight: 300; }
.loader-bar {
  width: 72px;
  height: 2px;
  background: var(--cream-mid);
  margin-top: 1.25rem;
  border-radius: 4px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 45%;
  background: var(--gold);
  border-radius: 4px;
  animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@keyframes loaderSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(280%); } }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#nav.scrolled {
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15), var(--shadow-sm);
  padding-block: 0.7rem;
}
.nav-container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); font-style: italic; font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links li a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover { color: var(--espresso); background: var(--cream-mid); }
.btn-nav {
  background: var(--espresso) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 500 !important;
}
.btn-nav:hover { background: var(--espresso-mid) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: calc(80px + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  max-width: 1100px;
  margin-inline: auto;
  position: relative;
}
.lash-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.lash-bg svg { width: 100%; height: 100%; opacity: 0.04; }

.hero-content { position: relative; z-index: 1; }
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.hero-title .line { display: block; }
.hero-title .line-italic { font-style: italic; font-weight: 300; color: var(--gold); }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 460px; margin-bottom: 2rem; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; }
.hero-image-frame {
  position: relative;
  width: clamp(260px, 38vw, 420px);
  aspect-ratio: 3/4;
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  border-radius: var(--radius);
  background: var(--cream-mid);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--nude-dark, var(--cream-dark));
}
.hero-photo-placeholder svg { opacity: 0.3; width: 80%; height: 80%; }

.hero-deco-ring {
  position: absolute;
  border: 1px solid rgba(201,169,110,0.22);
  pointer-events: none;
  border-radius: calc(var(--radius) + 4px);
}
.hero-deco-ring-1 { inset: -14px; }
.hero-deco-ring-2 { inset: -28px; border-radius: calc(var(--radius) + 10px); opacity: 0.45; }

.hero-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-badge-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.hero-badge-icon svg { width: 17px; height: 17px; }
.hero-badge-text strong { display: block; font-size: 0.82rem; color: var(--espresso); font-weight: 600; }
.hero-badge-text span { font-size: 0.7rem; color: var(--text-muted); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.1em; z-index: 1;
}
.scroll-line-container { width: 1px; height: 40px; background: var(--cream-mid); overflow: hidden; }
.scroll-line-anim { width: 100%; height: 50%; background: var(--gold); animation: scrollAnim 1.6s ease-in-out infinite; }
@keyframes scrollAnim { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* ══════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════ */
.trust-bar { background: var(--espresso); padding-block: 2.5rem; }
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item { flex: 1; min-width: 160px; text-align: center; padding: 0.5rem 2rem; }
.trust-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.trust-item span { font-size: 0.78rem; color: rgba(250,250,248,0.6); letter-spacing: 0.05em; }
.trust-divider { width: 1px; height: 48px; background: rgba(201,169,110,0.2); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
#sobre { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-visual { position: relative; }
.about-image-frame { position: relative; aspect-ratio: 3/4; max-width: 400px; }
.about-photo-placeholder {
  width: 100%; height: 100%;
  border-radius: var(--radius);
  background: var(--cream-mid);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.15);
  display: flex; align-items: center; justify-content: center;
}
.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge span { display: block; font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: var(--gold-light); }
.about-badge small { font-size: 0.68rem; opacity: 0.7; letter-spacing: 0.06em; }
.about-content h2 { margin-bottom: 1.1rem; }
.about-content h2 em { color: var(--gold); }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-features { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.feature-icon { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
#servicos { background: var(--gold-pale); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201,169,110,0.12);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon { background: var(--espresso); color: var(--gold-light); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.service-features { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.service-features li { font-size: 0.8rem; color: var(--text-muted); padding-left: 1rem; position: relative; }
.service-features li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--gold); font-size: 1.2rem; line-height: 1; top: 2px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 500; color: var(--espresso);
  transition: color var(--transition), gap var(--transition);
}
.service-link:hover { color: var(--gold); gap: 0.65rem; }
.service-link svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════════════════════
   PROCESS / COMO FUNCIONA
   ══════════════════════════════════════════════════════════ */
#processo { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--gold);
  position: relative; z-index: 1;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.process-step:hover .step-number { background: var(--espresso); color: var(--gold-light); border-color: var(--espresso); }
.step-content h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-content p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
#depoimentos { background: var(--cream-mid); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.1);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-family: var(--ff-display);
  font-size: 3.5rem; line-height: 1;
  color: var(--gold); opacity: 0.35;
  position: absolute; top: 1rem; left: 1.5rem;
}
.testimonial-card p {
  font-size: 0.9rem; color: var(--text-muted);
  font-style: italic; line-height: 1.7;
  margin-bottom: 1.5rem; padding-top: 1.5rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem; border-top: 1px solid var(--cream-mid);
}
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem;
  color: var(--gold); flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.85rem; color: var(--espresso); }
.testimonial-author span  { font-size: 0.72rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   INSTAGRAM
   ══════════════════════════════════════════════════════════ */
#instagram-section { background: var(--cream); }
.instagram-header { text-align: center; margin-bottom: 2.5rem; }
.instagram-header p { color: var(--text-muted); margin-top: 0.5rem; }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ig-post { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; }
.ig-post-inner { width: 100%; height: 100%; position: relative; cursor: pointer; }
.ig-bg { width: 100%; height: 100%; transition: transform 0.4s ease; }
.ig-post-inner:hover .ig-bg { transform: scale(1.05); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(28,16,8,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.ig-post-inner:hover .ig-overlay { background: rgba(28,16,8,0.3); }
.ig-post-last {
  background: var(--gold-pale);
  border: 1.5px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
}
.ig-see-more {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center; color: var(--espresso); padding: 1rem;
  font-size: 0.78rem;
  transition: color var(--transition);
}
.ig-see-more:hover { color: var(--gold); }
.ig-see-more svg { width: 24px; height: 24px; }
.ig-see-more span { font-weight: 500; font-size: 0.8rem; }
.ig-see-more small { color: var(--text-muted); font-size: 0.68rem; }

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.section-cta {
  background: var(--espresso);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative; overflow: hidden;
}
.cta-bg-deco { position: absolute; inset: 0; pointer-events: none; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 600px; margin-inline: auto; }
.cta-content h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-content h2 em { color: var(--gold-light); }
.cta-content p { color: rgba(250,250,248,0.65); margin-bottom: 2rem; font-size: 1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer { background: var(--espresso-mid); padding-block: 3rem 2rem; border-top: 1px solid rgba(201,169,110,0.1); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--gold-light); font-style: italic; font-weight: 300; }
.footer-tagline { font-size: 0.82rem; color: rgba(250,250,248,0.5); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(250,250,248,0.08);
  border: 1px solid rgba(201,169,110,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,248,0.6);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--espresso); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-nav h4, .footer-contact h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav ul li a { font-size: 0.85rem; color: rgba(250,250,248,0.6); transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { font-size: 0.85rem; color: rgba(250,250,248,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(250,250,248,0.4); }
.footer-credit a { color: var(--gold-light); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

.reveal-line {
  display: block; opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-line.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-line { opacity: 1 !important; transform: none !important; }
}

/* ══════════════════════════════════════════════════════════
   MEDIA QUERIES
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }

  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(72px + 2rem);
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-visual { display: none; }
  .hero-desc { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .scroll-indicator { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(250,250,248,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(201,169,110,0.12);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.65rem 0.75rem; border-radius: var(--radius-sm); display: block; }
  .btn-nav { text-align: center; border-radius: var(--radius-sm) !important; }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps     { grid-template-columns: 1fr; }
  .instagram-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }

  .trust-grid { flex-direction: column; gap: 1.5rem; }
  .trust-divider { width: 40px; height: 1px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}
