:root {
  --white: #FAFAF8;
  --offwhite: #F2EFE9;
  --cream: #E8E2D9;
  --wine: #6B1D2E;
  --wine-dark: #4A1220;
  --wine-light: #8B2D42;
  --black: #0F0F0D;
  --gray: #6B6860;
  --gray-light: #B0ADA6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(250, 250, 248, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--black);
  text-decoration: none;
}
.nav-logo span { color: var(--wine); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--wine); }
.nav-cta {
  background: var(--wine);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--wine-dark) !important; color: var(--white) !important; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 400;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--wine);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--wine); }
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 420px;
  font-weight: 300;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--wine);
  color: var(--white);
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--wine-dark); transform: translateY(-1px); }
.btn-outline {
  color: var(--black);
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--cream);
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--wine); color: var(--wine); }
.hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--cream);
  padding-top: 36px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-photo-frame {
  position: absolute;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(107,29,46,0.04), transparent);
}
.hero-deco-line {
  position: absolute;
  top: 80px; right: 80px;
  width: 1px; height: 180px;
  background: linear-gradient(to bottom, transparent, var(--wine-light), transparent);
  opacity: 0.4;
}
.hero-deco-circle {
  position: absolute;
  bottom: 100px; left: 60px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(107,29,46,0.15);
}
.hero-tag {
  position: absolute;
  bottom: 60px;
  right: 40px;
  background: var(--white);
  padding: 18px 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  z-index: 3;
}
.hero-tag-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 4px;
}
.hero-tag-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
}
.hero-abstract {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  opacity: 0.06;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18vw;
  font-weight: 300;
  color: var(--wine);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ─── SOBRE ─── */
#sobre {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-visual { position: relative; }
.about-photo-box {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius:4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-content { padding-left: 20px; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--wine);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--black);
}
.section-title em { font-style: italic; color: var(--wine); }
.about-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar-icon svg { width: 14px; height: 14px; stroke: var(--wine); }
.pillar-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  color: var(--black);
}
.pillar-text span { font-size: 0.82rem; color: var(--gray); font-weight: 300; }

/* ─── ÁREAS ─── */
#areas { background: var(--wine); padding: 120px 60px; }
#areas .inner { max-width: 1200px; margin: 0 auto; }
#areas .section-label { color: rgba(255,255,255,0.65); }
#areas .section-label::before { background: rgba(255,255,255,0.65); }
#areas .section-title { color: var(--white); }
#areas .section-title em { color: rgba(255,255,255,0.75); font-style: italic; }
.areas-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.areas-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 400px;
  align-self: end;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.area-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 32px;
  cursor: default;
  transition: background 0.35s;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.area-card:hover { background: rgba(0,0,0,0.15); }
.area-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--white);
  transition: width 0.4s ease;
}
.area-card:hover::after { width: 100%; }
.area-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.12);
  font-weight: 300;
  margin-bottom: 16px;
  display: block;
}
.area-icon { margin-bottom: 20px; }
.area-icon svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.7); stroke-width: 1.5; }
.area-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.area-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* ─── AVALIAÇÕES ─── */
#avaliacoes { padding: 120px 60px; background: var(--offwhite); }
#avaliacoes .inner { max-width: 1200px; margin: 0 auto; }
.reviews-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  padding: 28px 36px;
  border-radius: 2px;
}
.rating-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
}
.stars-row { display: flex; gap: 4px; margin-bottom: 6px; }
.star { color: var(--wine); font-size: 1rem; }
.rating-count { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.06em; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gray-light);
}
.google-g {
  width: 16px; height: 16px;
  background: linear-gradient(135deg, #4285F4 25%, #EA4335 25%, #EA4335 50%, #FBBC05 50%, #FBBC05 75%, #34A853 75%);
  border-radius: 2px;
  flex-shrink: 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--wine);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 16px;
}
.review-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 20px; color: var(--wine); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--wine);
  font-weight: 500;
}
.review-name { font-size: 0.85rem; font-weight: 500; color: var(--black); }
.review-date { font-size: 0.72rem; color: var(--gray-light); }

/* ─── CONTATO ─── */
#contato { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--offwhite);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--wine); }
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.contact-value { font-size: 0.95rem; color: var(--black); font-weight: 400; }
.contact-value a { color: var(--black); text-decoration: none; transition: color 0.3s; }
.contact-value a:hover { color: var(--wine); }
.whatsapp-btn {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 16px 32px;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: background 0.3s, transform 0.2s;
}
.whatsapp-btn:hover { background: #1fbe5c; transform: translateY(-1px); }
.whatsapp-btn svg { width: 20px; height: 20px; fill: white; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--cream);
  background: var(--offwhite);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--wine); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--wine);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--wine-dark); }
.form-note {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 12px;
  text-align: center;
  line-height: 1.6;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--black);
}
.form-subtitle {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 28px;
  font-weight: 300;
}

/* ─── MAPA ─── */
.contato-mapa { display: flex; flex-direction: column; gap: 16px; }
.mapa-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  display: flex;
  align-items: center;
  gap: 14px;
}
.mapa-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--wine);
}
.mapa-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 340px;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--cream);
}
.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mapa-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  transition: background 0.3s;
}
.mapa-wrapper:hover .mapa-overlay {
  background: rgba(107,29,46,0.08);
}
.mapa-overlay-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wine);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.mapa-wrapper:hover .mapa-overlay-inner {
  opacity: 1;
  transform: translateY(0);
}
.mapa-overlay-inner svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  flex-shrink: 0;
}
.mapa-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--offwhite);
  border-radius: 2px;
}
.mapa-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}
.mapa-end {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── FAQ ─── */
#faq { background: var(--offwhite); padding: 120px 60px; }
#faq .inner { max-width: 800px; margin: 0 auto; }
#faq .section-label,
#faq .section-title { text-align: center; justify-content: center; }
#faq .section-label::before { display: none; }
.faq-list { margin-top: 56px; }
.faq-item { border-bottom: 1px solid var(--cream); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--wine); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.faq-icon svg { width: 10px; height: 10px; stroke: var(--wine); transition: transform 0.3s; }
.faq-item.open .faq-question { color: var(--wine); }
.faq-item.open .faq-icon { background: var(--wine); border-color: var(--wine); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 28px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--gray);
  font-weight: 300;
}

/* ─── FOOTER ─── */
footer {
  background: var(--wine-dark);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
}
.footer-logo span { color: rgba(255,255,255,0.5); }
.footer-mandi { font-size: 0.92rem; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }

/* ─── ANIMAÇÕES ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ─── MENU MOBILE ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--black);
  text-decoration: none;
  font-weight: 300;
}
.mobile-menu a:hover { color: var(--wine); }
.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gray);
  background: none;
  border: none;
}

/* ─── RESPONSIVO ─── */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 60vw; max-height: 420px; }
  .hero-left { padding: 120px 32px 60px; }
  #sobre { grid-template-columns: 1fr; padding: 80px 32px; gap: 48px; }
  .about-content { padding-left: 0; }
  #areas { padding: 80px 32px; }
  .areas-intro { grid-template-columns: 1fr; gap: 24px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  #avaliacoes { padding: 80px 32px; }
  .reviews-header { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  #contato { padding: 80px 32px; }
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  #faq { padding: 80px 32px; }
  footer { padding: 40px 32px; flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 640px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .nav-cta { display: none; }
}

/* ─── BOTÃO FLUTUANTE WHATSAPP ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 22px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: transform 0.3s, box-shadow 0.3s, padding 0.3s;
  overflow: hidden;
  max-width: 230px;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: white;
  flex-shrink: 0;
}
.whatsapp-float span {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 50%;
    max-width: 52px;
  }
  .whatsapp-float span { display: none; }
}

/* ─── MAPA ─── */
.contato-mapa { display: flex; flex-direction: column; gap: 16px; }
.mapa-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  display: flex;
  align-items: center;
  gap: 14px;
}
.mapa-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--wine);
}
.mapa-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 340px;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--cream);
}
.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mapa-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  transition: background 0.3s;
}
.mapa-wrapper:hover .mapa-overlay { background: rgba(107,29,46,0.08); }
.mapa-overlay-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wine);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.mapa-wrapper:hover .mapa-overlay-inner { opacity: 1; transform: translateY(0); }
.mapa-overlay-inner svg { width: 14px; height: 14px; stroke: var(--white); flex-shrink: 0; }
.mapa-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--offwhite);
  border-radius: 2px;
}
.mapa-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}
.mapa-end { font-size: 0.8rem; color: var(--gray); font-weight: 300; line-height: 1.6; }