/* ============================================================
   GALI ODONTOLOGIA INTEGRADA — style.css
   ============================================================ */

/* ── Design tokens ── */
:root {
  --gold:        #C9973A;
  --gold-light:  #E4C57A;
  --gold-pale:   #F5EDD8;
  --gold-subtle: rgba(201,151,58,0.08);
  --cream:       #FDFAF4;
  --white:       #FFFFFF;
  --dark:        #1A1610;
  --text:        #1E1810;
  --muted:       #4A3D30;
  --radius:      3px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.09);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.12);
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

/* ── Utilities ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 1.4rem;
  border-radius: 2px;
}

.section-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
}

.section-header { text-align: center; margin-bottom: 4rem; }

/* ── Animated fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   NAVIGATION
   ====================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 98;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

nav.scrolled {
  background: rgba(253,250,244,0.97);
  box-shadow: 0 1px 0 rgba(201,151,58,0.15), var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: var(--radius);
  letter-spacing: 0.14em !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 2px 10px rgba(201,151,58,0.3);
}
.nav-cta:hover {
  background: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ======================================================
   HERO
   ====================================================== */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--cream) 48%, var(--gold-pale) 100%);
  z-index: 0;
}

/* Grain texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-arc {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero-arc-1 {
  width: 560px; height: 560px;
  top: -130px; right: -130px;
  border: 1px solid rgba(201,151,58,0.14);
}
.hero-arc-2 {
  width: 360px; height: 360px;
  top: 50px; right: 50px;
  border: 1px solid rgba(201,151,58,0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 3rem 90px 4.5rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--text);
  max-width: 420px;
  margin-bottom: 2.6rem;
  opacity: 0.85;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-block;
  box-shadow: 0 4px 16px rgba(201,151,58,0.35);
}
.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero visual – logo */
.hero-visual {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap {
  position: relative;
  width: 720px; height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(228,197,122,0.22) 0%, transparent 68%);
}

.hero-logo-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.2);
  animation: spin-slow 22s linear infinite;
}
.hero-logo-ring-2 {
  position: absolute;
  inset: -58px;
  border-radius: 50%;
  border: 1px dashed rgba(201,151,58,0.1);
  animation: spin-slow 38s linear infinite reverse;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-logo-img {
  width: 440px; height: 440px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 40px rgba(201,151,58,0.22));
  transition: filter var(--transition), transform 0.4s ease;
}
.hero-logo-img:hover {
  filter: drop-shadow(0 14px 48px rgba(201,151,58,0.32));
  transform: scale(1.02);
}

/* ======================================================
   STATS STRIP
   ====================================================== */
#stats {
  background: var(--dark);
  padding: 3.8rem 0;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,151,58,0.04) 50%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(201,151,58,0.15);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,151,58,0.04); }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.9rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ======================================================
   SERVICES
   ====================================================== */
#servicos {
  padding: 7rem 0 5rem;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201,151,58,0.14);
  border-radius: 12px;
  padding: 2.6rem 2rem 2.2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 12px 12px 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201,151,58,0.15), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(201,151,58,0.35);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), rgba(228,197,122,0.3));
  border: 1px solid rgba(201,151,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(201,151,58,0.25);
}

.service-icon {
  font-size: 1.8rem;
  display: block;
  line-height: 1;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.service-desc {
  font-size: 0.87rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}

/* "E muitos outros serviços" */
.services-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 3rem;
}
.services-more p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.services-more-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.services-more-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* ======================================================
   ABOUT / DRA.
   ====================================================== */
#sobre {
  padding: 7rem 0;
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
}
#sobre::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.1);
  top: -200px; right: -200px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Doctor photo container ── */
.about-deco {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-deco-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,151,58,0.12) 0%, rgba(201,151,58,0.04) 100%);
  border: 1px solid rgba(201,151,58,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md), inset 0 0 40px rgba(201,151,58,0.06);
}
.about-deco-circle::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(201,151,58,0.18);
  z-index: 2;
  pointer-events: none;
}

/* When there IS a photo */
.about-deco-circle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  z-index: 1;
}

/* Placeholder letter (shows when no photo) */
.about-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  z-index: 1;
  position: relative;
  user-select: none;
}

.about-tag {
  display: inline-block;
  margin-top: 1.2rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(201,151,58,0.35);
  text-align: center;
}

.about-text .section-tag { margin-bottom: 0.4rem; }

.about-text p {
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.88;
  color: var(--text);
  margin-bottom: 1.3rem;
  opacity: 0.9;
}

.about-cred {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,151,58,0.2);
}

.cred-item { display: flex; flex-direction: column; gap: 0.3rem; }

.cred-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.cred-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 400;
}

/* ======================================================
   GALLERY
   ====================================================== */
#clinica {
  padding: 7rem 0;
  background: var(--white);
}

.gallery-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,151,58,0.16);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7;
  background: var(--gold-pale);
}

.gallery-slider { width: 100%; height: 100%; position: relative; }

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-slide.active { opacity: 1; z-index: 1; }

.gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
  text-align: center;
}
.gallery-icon { font-size: 3.5rem; }
.gallery-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
}
.gallery-placeholder small {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(253,250,244,0.92);
  border: 1px solid rgba(201,151,58,0.28);
  color: var(--gold);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.gallery-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.gallery-prev { left: 1.2rem; }
.gallery-next { right: 1.2rem; }

.gallery-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.55rem;
  align-items: center;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,151,58,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.45);
}

.gallery-hint {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}
.gallery-hint code {
  background: rgba(201,151,58,0.1);
  color: var(--gold);
  padding: 0.12em 0.45em;
  border-radius: 3px;
  font-size: 0.78rem;
}

/* ======================================================
   CTA SECTION
   ====================================================== */
#agendar {
  padding: 7.5rem 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#agendar::before {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
#agendar::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
#agendar .container { position: relative; z-index: 1; }

#agendar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.2rem;
}
#agendar h2 em { font-style: italic; color: var(--gold-light); }

#agendar p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: #1aad52;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

/* ======================================================
   CONTACT & MAP
   ====================================================== */
#contato {
  padding: 6.5rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 2.2rem;
  position: relative;
  padding-bottom: 1rem;
}
.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 1.5px;
  background: var(--gold);
}

.contact-item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.7rem;
  align-items: flex-start;
}

.contact-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
  background: rgba(201,151,58,0.04);
  transition: background var(--transition), border-color var(--transition);
}
.contact-item:hover .contact-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.contact-detail { display: flex; flex-direction: column; gap: 0.2rem; }

.contact-detail span:first-child {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-detail a,
.contact-detail p {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.55;
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--gold); }

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,151,58,0.16);
  box-shadow: var(--shadow-md);
  position: relative;
}
.map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(201,151,58,0.1);
  z-index: 1;
  pointer-events: none;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
  filter: sepia(18%) saturate(85%) brightness(1.02);
}

/* ======================================================
   FOOTER
   ====================================================== */
footer {
  background: var(--dark);
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(201,151,58,0.1);
}

footer img {
  height: 52px;
  margin: 0 auto 1.4rem;
  opacity: 0.88;
  transition: opacity var(--transition), transform var(--transition);
}
footer img:hover { opacity: 1; transform: scale(1.05); }

footer p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  line-height: 1.7;
}
footer a { color: rgba(201,151,58,0.65); text-decoration: none; transition: color var(--transition); }
footer a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.4rem 0;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,151,58,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,151,58,0.55);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: #fff;
  background: var(--gold);
  transform: translateY(-2px);
}

/* ======================================================
   FLOATING WHATSAPP
   ====================================================== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* Pulse ring */
.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ======================================================
   MOBILE MENU
   ====================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1;
}
.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: 1.5px solid rgba(201,151,58,0.4);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--gold);
  cursor: pointer;
  z-index: 201;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu .close-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 110px 2rem 3rem; }
  .hero-visual { height: 55vw; min-height: 280px; }
  .hero-logo-wrap { width: 240px; height: 240px; }
  .hero-logo-img { width: 180px; height: 180px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(201,151,58,0.15); }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.8rem; }

  .about-deco { display: flex; }
  .about-deco-circle {
    width: 260px;
    height: 260px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .service-card { border-right: unset !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cred { flex-wrap: wrap; gap: 1.5rem; }
  .hero-content { padding: 100px 1.5rem 2.5rem; }
  .contact-grid { gap: 2rem; }
  .gallery-wrap { aspect-ratio: 4/3; }
}

@media (max-width: 380px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}
