/* ============================================================
   FONOS ATUANDO · Shared stylesheet
   Mobile-first · responsive · dark hero + light body
   ============================================================ */

:root{
  /* brand */
  --wine:        #6B2D3E;
  --wine-deep:   #4F1F2E;
  --wine-soft:   #8A4254;
  --mauve-deep:  #5B202D;
  --blush:       #F2C4CE;
  --blush-pale:  #F9DDE3;
  --cream:       #FAF3EE;
  --cream-warm:  #F4E9E1;
  --white:       #FFFFFF;
  --ink:         #2A1B23;
  --ink-soft:    #6E5560;
  --dark:        #1A1818;
  --dark-2:      #232020;

  /* Casa Teca accents (use sparingly) */
  --teca-yellow: #F5C518;
  --teca-magenta:#E91E63;

  /* support */
  --wa-green:    #25D366;
  --wa-green-d:  #128C7E;
  --success:     #2EA76B;
  --warning:     #B85C2E;

  /* type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --hand:  "Caveat", cursive;

  /* layout */
  --max-content: 1180px;
  --max-narrow:  900px;
  --max-read:    680px;
  --pad-x: clamp(20px, 4vw, 40px);
  --radius:  18px;
  --radius-s: 12px;
  --radius-l: 28px;

  --shadow-sm: 0 4px 12px rgba(80,30,46,.06);
  --shadow:    0 10px 30px rgba(80,30,46,.08);
  --shadow-lg: 0 24px 60px rgba(80,30,46,.14);
}

/* ============================================================
   reset
   ============================================================ */
*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}
body{
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }

/* ============================================================
   typography
   ============================================================ */
.h1, .h2, .h3, .h4{
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .005em;
  color: var(--wine);
  margin: 0;
}
.h1{
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: -.01em;
}
.h2{
  font-size: clamp(30px, 5.2vw, 48px);
  line-height: 1.05;
}
.h3{
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1.15;
}
.h4{
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.25;
}
.h1 em, .h2 em, .h3 em{
  font-style: italic;
  font-weight: 400;
  color: var(--wine-soft);
}
.eyebrow{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--wine-soft);
}
.eyebrow.on-dark{ color: var(--blush); }
.lead{
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--ink);
}
p{ margin: 0 0 16px; }
.muted{ color: var(--ink-soft); }
.accent{ color: var(--wine); font-weight: 600; }
.hand{
  font-family: var(--hand);
  font-weight: 500;
}

/* ============================================================
   layout primitives
   ============================================================ */
.section{
  padding: clamp(64px, 9vw, 120px) var(--pad-x);
  position: relative;
}
.section.tight{ padding: clamp(48px, 7vw, 88px) var(--pad-x); }
.section.dark{
  background: var(--dark);
  color: var(--cream);
}
.section.dark .h1,
.section.dark .h2,
.section.dark .h3,
.section.dark .h4{ color: var(--cream); }
.section.dark .h1 em,
.section.dark .h2 em,
.section.dark .h3 em{ color: var(--blush); }
.section.dark .lead,
.section.dark p{ color: rgba(250,243,238,.85); }
.section.dark .muted{ color: rgba(250,243,238,.6); }
.section.dark .accent{ color: var(--blush); }

.section.wine{
  background: var(--mauve-deep);
  color: var(--cream);
}
.section.wine .h1,
.section.wine .h2,
.section.wine .h3,
.section.wine .h4{ color: var(--cream); }
.section.wine .h1 em,
.section.wine .h2 em,
.section.wine .h3 em{ color: var(--blush); }
.section.wine p,
.section.wine .lead{ color: rgba(250,243,238,.92); }
.section.wine .accent{ color: var(--blush); }

.section.warm{ background: var(--cream-warm); }
.section.white{ background: var(--white); }

.container{
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
}
.container-narrow{
  width: 100%;
  max-width: var(--max-narrow);
  margin: 0 auto;
}
.container-read{
  width: 100%;
  max-width: var(--max-read);
  margin: 0 auto;
}

.section-head{
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.section-head .eyebrow{
  display: inline-block;
  margin-bottom: 14px;
}
.section-head .lead{
  max-width: 640px;
  margin: 18px auto 0;
}

/* ============================================================
   buttons
   ============================================================ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn svg{ width: 18px; height: 18px; flex: none; }

.btn-primary{
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 10px 22px rgba(107,45,62,.28);
}
.btn-primary:hover{ background: var(--wine-deep); box-shadow: 0 14px 26px rgba(107,45,62,.35); }

.btn-blush{
  background: var(--blush);
  color: var(--wine-deep);
  box-shadow: 0 8px 18px rgba(242,196,206,.5);
}
.btn-blush:hover{ background: #ecb5c1; }

.btn-ghost{
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-ghost:hover{ background: var(--wine); color: var(--cream); }

.section.dark .btn-ghost,
.section.wine .btn-ghost,
.hero .btn-ghost{
  color: var(--blush);
  border-color: var(--blush);
}
.section.dark .btn-ghost:hover,
.section.wine .btn-ghost:hover,
.hero .btn-ghost:hover{ background: var(--blush); color: var(--wine-deep); }

.btn-wa{
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37,211,102,.35);
}
.btn-wa:hover{ background: var(--wa-green-d); }

.btn-sm{ padding: 10px 16px; font-size: 13.5px; }
.btn-lg{ padding: 16px 28px; font-size: 16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,243,238,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(107,45,62,.08);
  transition: background .25s ease;
}
.site-header.scrolled{
  background: rgba(250,243,238,.95);
  box-shadow: 0 4px 24px rgba(80,30,46,.06);
}
.nav{
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
}
.nav-logo .mark{
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav-logo .mark img{
  width: 100%; height: 100%;
  object-fit: contain;
}
.nav-logo .wordmark{
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .wordmark b{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--wine);
  letter-spacing: .01em;
}
.nav-logo .wordmark small{
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine-soft);
  margin-top: 3px;
  font-weight: 500;
}
.nav-links{
  display: flex;
  gap: 4px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a{
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover{ color: var(--wine); background: rgba(107,45,62,.06); }
.nav-links a.active{
  color: var(--wine);
  background: rgba(107,45,62,.08);
  font-weight: 600;
}
.nav-cta{ flex: none; }

.nav-toggle{
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: auto;
  color: var(--wine);
}
.nav-toggle svg{ width: 26px; height: 26px; }

@media (max-width: 880px){
  .nav-links, .nav-cta{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .nav-drawer.open .nav-links{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--cream);
    padding: 80px 24px 24px;
    gap: 6px;
    box-shadow: -20px 0 40px rgba(0,0,0,.08);
    z-index: 60;
  }
  .nav-drawer.open .nav-cta{
    display: inline-flex;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 61;
  }
  .nav-drawer.open .nav-links a{
    font-size: 17px;
    padding: 12px 14px;
  }
  .nav-drawer.open::before{
    content: "";
    position: fixed; inset: 0;
    background: rgba(26,24,24,.55);
    z-index: 55;
    animation: fade-in .25s ease;
  }
}
@keyframes fade-in{ from{opacity:0} to{opacity:1} }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero{
  position: relative;
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  opacity: .42;
}
.hero-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 70% 30%, rgba(91,32,45,0) 0%, rgba(26,24,24,.5) 60%, rgba(26,24,24,.95) 100%),
    linear-gradient(180deg, rgba(26,24,24,.55) 0%, rgba(26,24,24,.4) 50%, rgba(26,24,24,.92) 100%);
}
.hero-inner{
  max-width: var(--max-content);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) var(--pad-x) clamp(56px, 8vw, 100px);
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px){
  .hero-inner{
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    padding-top: clamp(96px, 12vw, 160px);
  }
}
.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,196,206,.12);
  border: 1px solid rgba(242,196,206,.32);
  color: var(--blush);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-weight: 500;
  white-space: nowrap;
}
.hero-eyebrow .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: 0 0 0 3px rgba(242,196,206,.25);
}
.hero h1{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.012em;
  color: var(--cream);
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero h1 em{
  color: var(--blush);
  font-style: italic;
  font-weight: 400;
}
.hero .sub{
  font-size: clamp(15.5px, 1.8vw, 18px);
  color: rgba(250,243,238,.85);
  margin: 0 0 32px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-meta{
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  font-size: 13px;
  color: rgba(250,243,238,.65);
}
.hero-meta span{ display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg{ width: 14px; height: 14px; color: var(--blush); }

.hero-card{
  position: relative;
  background: rgba(250,243,238,.06);
  border: 1px solid rgba(242,196,206,.18);
  border-radius: var(--radius-l);
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-card-photo{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--dark-2);
  position: relative;
}
.hero-card-photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.hero-card-photo::after{
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 65%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.4) 35%, rgba(0,0,0,.85) 100%);
}
.hero-card-photo .photo-cap{
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-card-photo .photo-cap b{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .02em;
  display: block;
  line-height: 1.1;
  color: #FFFFFF;
}
.hero-card-photo .photo-cap small{
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
  opacity: .95;
}
.hero-card-photo .casa-badge{
  background: var(--teca-yellow);
  color: var(--teca-magenta);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  padding: 6px 10px;
  border-radius: 6px;
  transform: rotate(-3deg);
  line-height: 1;
}
.hero-card-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-card-row a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(250,243,238,.08);
  border: 1px solid rgba(242,196,206,.2);
  border-radius: 14px;
  transition: background .2s ease;
}
.hero-card-row a:hover{ background: rgba(242,196,206,.15); }
.hero-card-row .av{
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blush);
  flex: none;
}
.hero-card-row .av img{ width: 100%; height: 100%; object-fit: cover; }
.hero-card-row .who{ line-height: 1.2; }
.hero-card-row .who b{
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  display: block;
}
.hero-card-row .who small{
  color: rgba(242,196,206,.85);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.hero-card-row .who small::before{
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 3px rgba(37,211,102,.25);
}

/* ============================================================
   trust strip · CAROUSEL of testimonials
   ============================================================ */
.trust{
  background: var(--cream);
  padding: clamp(56px, 7vw, 84px) var(--pad-x);
  border-bottom: 1px solid rgba(107,45,62,.08);
  overflow: hidden;
}
.trust-wrap{
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.trust-viewport{
  overflow: hidden;
  border-radius: var(--radius);
}
.trust-track{
  display: flex;
  transition: transform .6s cubic-bezier(.4,.0,.2,1);
  will-change: transform;
}
.trust-slide{
  flex: 0 0 100%;
  padding: 8px clamp(16px, 6vw, 64px);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr;
  align-items: center;
  box-sizing: border-box;
}
.trust-mark{
  width: 56px; height: 56px;
  background: var(--wine);
  color: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  line-height: 0;
  padding-top: 18px;
  flex: none;
}
.trust blockquote{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 23px);
  line-height: 1.4;
  color: var(--wine-deep);
  margin: 0 0 10px;
  text-wrap: pretty;
}
.trust blockquote b{ font-style: normal; font-weight: 600; color: var(--wine); }
.trust .who{
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine-soft);
  font-weight: 500;
}
.trust .stars{
  display: inline-flex;
  gap: 2px;
  margin-right: 10px;
  color: var(--teca-yellow);
  vertical-align: -2px;
}
.trust .stars svg{ width: 13px; height: 13px; }

/* arrows */
.trust-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(107,45,62,.12);
  box-shadow: 0 6px 18px rgba(80,30,46,.10);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.trust-arrow:hover{ background: var(--wine); color: var(--cream); }
.trust-arrow:active{ transform: translateY(-50%) scale(.95); }
.trust-arrow svg{ width: 20px; height: 20px; }
.trust-arrow.prev{ left: -8px; }
.trust-arrow.next{ right: -8px; }
@media (min-width: 760px){
  .trust-arrow.prev{ left: -22px; }
  .trust-arrow.next{ right: -22px; }
}

/* dots */
.trust-dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 26px;
}
.trust-dots button{
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(107,45,62,.22);
  padding: 0;
  cursor: pointer;
  transition: all .2s ease;
}
.trust-dots button:hover{ background: rgba(107,45,62,.45); }
.trust-dots button.active{
  background: var(--wine);
  transform: scale(1.4);
}

@media (max-width: 540px){
  .trust-slide{ grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .trust-mark{ width: 44px; height: 44px; font-size: 28px; padding-top: 14px; }
}

/* ============================================================
   URGENCY banner
   ============================================================ */
.urgency{
  background: var(--mauve-deep);
  color: var(--cream);
  padding: clamp(48px, 6vw, 76px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency::before, .urgency::after{
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.urgency::before{
  background: var(--blush);
  top: -120px; left: -80px;
}
.urgency::after{
  background: var(--wine-soft);
  bottom: -150px; right: -80px;
}
.urgency-inner{
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.urgency .eyebrow{
  color: var(--blush);
  margin-bottom: 16px;
  display: inline-block;
}
.urgency h2{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.18;
  color: var(--cream);
  margin: 0 0 16px;
  text-wrap: balance;
}
.urgency h2 em{ color: var(--blush); font-style: italic; }
.urgency p{
  color: rgba(250,243,238,.85);
  font-size: clamp(15px, 1.7vw, 17px);
  max-width: 580px;
  margin: 0 auto 26px;
}

/* ============================================================
   PROFILES (Quem somos preview + full)
   ============================================================ */
.profiles{
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  grid-template-columns: 1fr;
}
@media (min-width: 760px){
  .profiles{ grid-template-columns: 1fr 1fr; }
}
.profile{
  background: var(--white);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(107,45,62,.06);
  display: flex;
  flex-direction: column;
}
.profile .photo{
  aspect-ratio: 4 / 5;
  width: 100%;
  background: var(--cream-warm);
  overflow: hidden;
  position: relative;
}
.profile .photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.profile .photo .badge{
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(250,243,238,.95);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
}
.profile .body{
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.profile .body h3{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--wine);
  margin: 0 0 4px;
}
.profile .body .role{
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine-soft);
  font-size: 17px;
  margin-bottom: 6px;
}
.profile .body .crfa{
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 16px;
}
.profile .body p{
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.55;
}
.profile .specialties{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 18px;
}
.profile .specialties span{
  background: var(--blush-pale);
  color: var(--wine);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.profile .cta-row{
  display: flex;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* ============================================================
   DIFERENCIAIS grid
   ============================================================ */
.diff-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .diff-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px){ .diff-grid{ grid-template-columns: repeat(4, 1fr); } }

.diff{
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(107,45,62,.06);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.diff .ico{
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(107,45,62,.22);
}
.diff .ico svg{ width: 26px; height: 26px; }
.diff h3{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--wine);
  margin: 0 0 8px;
  line-height: 1.2;
}
.diff p{
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   METODOS cards
   ============================================================ */
.methods-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .methods-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px){ .methods-grid{ grid-template-columns: repeat(3, 1fr); } }

.method{
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid rgba(107,45,62,.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.method::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--wine);
}
.method .flag{
  width: 28px; height: 20px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  margin-bottom: 12px;
}
.method h3{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--wine);
  margin: 0 0 4px;
  line-height: 1.2;
}
.method .full-name{
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine-soft);
  font-size: 13.5px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.method p{
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}
.method .gold-standard{
  display: inline-block;
  background: var(--blush-pale);
  color: var(--wine);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ============================================================
   CASA TECA section
   ============================================================ */
.casa-teca{
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.casa-grid{
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 880px){
  .casa-grid{ grid-template-columns: 1.1fr 1fr; }
}
.casa-photo{
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4 / 3;
}
.casa-photo img{
  width: 100%; height: 100%; object-fit: cover;
}
.casa-photo .photo-tag{
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(26,24,24,.78);
  color: var(--cream);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.casa-photo .photo-tag::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teca-yellow);
}
.casa-body .eyebrow{ display: inline-block; margin-bottom: 14px; }
.casa-body h2{
  margin-bottom: 18px;
}
.casa-body .casa-feats{
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.casa-body .casa-feats li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
}
.casa-body .casa-feats .ico{
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
}
.casa-body .casa-feats .ico svg{ width: 16px; height: 16px; }
.casa-body .casa-feats b{ color: var(--wine); font-weight: 600; display: block; }
.casa-body .casa-feats small{ font-size: 13.5px; color: var(--ink-soft); display: block; margin-top: 2px; line-height: 1.45; }

/* ============================================================
   PROCESS (steps)
   ============================================================ */
.steps{
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 760px){ .steps{ grid-template-columns: repeat(4, 1fr); } }

.step{
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(107,45,62,.08);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step .num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.step h3{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--wine);
  margin: 0 0 8px;
  line-height: 1.2;
}
.step p{
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .testimonials-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px){ .testimonials-grid{ grid-template-columns: repeat(3, 1fr); } }

.testimonial{
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(107,45,62,.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial .qmark{
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0;
  color: var(--blush);
  position: absolute;
  top: 28px; right: 22px;
  font-style: italic;
}
.testimonial .stars{
  display: inline-flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--teca-yellow);
}
.testimonial .stars svg{ width: 14px; height: 14px; }
.testimonial blockquote{
  margin: 0 0 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.testimonial .by{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial .by .av{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
}
.testimonial .by b{
  display: block;
  font-size: 14px;
  color: var(--wine);
  font-weight: 600;
  font-style: normal;
}
.testimonial .by small{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 1px;
}

/* ============================================================
   RECOGNITION
   ============================================================ */
.recog-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px){ .recog-grid{ grid-template-columns: 1fr 1fr; } }

.recog{
  background: rgba(250,243,238,.06);
  border: 1px solid rgba(242,196,206,.18);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.recog .logo{
  flex: none;
  width: 96px; height: 96px;
  background: var(--white);
  border-radius: var(--radius-s);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.recog .logo img{ width: 100%; height: 100%; object-fit: contain; }
.recog .body h3{
  font-family: var(--serif);
  font-weight: 600;
  color: var(--blush);
  margin: 0 0 4px;
  font-size: 20px;
}
.recog .body .unique{
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teca-yellow);
  font-weight: 600;
  margin-bottom: 6px;
}
.recog .body p{
  margin: 0;
  color: rgba(250,243,238,.82);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ============================================================
   MAP + COMO LLEGAR
   ============================================================ */
.map-wrap{
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 880px){
  .map-wrap{ grid-template-columns: 1.2fr 1fr; }
}
.map-embed{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-warm);
  min-height: 360px;
  position: relative;
  border: 1px solid rgba(107,45,62,.08);
}
.map-embed iframe{
  width: 100%; height: 100%;
  min-height: 360px;
  border: none;
  display: block;
}
.map-info{
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,45,62,.08);
  display: flex;
  flex-direction: column;
}
.map-info h3{
  font-family: var(--serif);
  font-weight: 600;
  color: var(--wine);
  font-size: 24px;
  margin: 0 0 6px;
}
.map-info .addr{
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
}
.map-info .addr b{ color: var(--wine); font-weight: 600; }
.hours{
  background: var(--cream);
  border-radius: var(--radius-s);
  padding: 16px 18px;
  margin-bottom: 22px;
}
.hours h4{
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wine-soft);
  margin: 0 0 10px;
  font-weight: 600;
}
.hours dl{ margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; font-size: 14px; }
.hours dt{ color: var(--ink-soft); }
.hours dd{ margin: 0; color: var(--ink); font-weight: 500; text-align: right; }

/* Como chegar dropdown */
.como-chegar{
  position: relative;
  margin-top: auto;
}
.como-chegar-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--wine);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(107,45,62,.25);
  transition: background .2s ease;
}
.como-chegar-btn:hover{ background: var(--wine-deep); }
.como-chegar-btn svg{ width: 18px; height: 18px; }
.como-chegar-btn .chev{ transition: transform .2s ease; }
.como-chegar.open .chev{ transform: rotate(180deg); }

.como-chegar-menu{
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 -8px 30px rgba(80,30,46,.15);
  border: 1px solid rgba(107,45,62,.1);
  padding: 8px;
  display: none;
  z-index: 5;
}
.como-chegar.open .como-chegar-menu{ display: block; animation: fade-up .2s ease; }
@keyframes fade-up{ from{opacity:0; transform: translateY(6px)} to{opacity:1; transform: none} }

.como-chegar-menu a{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background .15s ease;
}
.como-chegar-menu a:hover{ background: var(--cream); color: var(--wine); }
.como-chegar-menu .app-ico{
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  flex: none;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq{
  max-width: 760px;
  margin: 0 auto;
}
.faq-item{
  background: var(--white);
  border-radius: var(--radius-s);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(107,45,62,.08);
  box-shadow: var(--shadow-sm);
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--wine);
  position: relative;
  padding-right: 50px;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px; height: 12px;
  border-right: 2px solid var(--wine);
  border-bottom: 2px solid var(--wine);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}
.faq-item[open] summary::after{ transform: translateY(-30%) rotate(-135deg); }
.faq-item .answer{
  padding: 0 22px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.faq-item .answer p:last-child{ margin-bottom: 0; }

/* ============================================================
   QUIZ marcos da fala
   ============================================================ */
.quiz{
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-l);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(107,45,62,.08);
  position: relative;
  overflow: hidden;
}
.quiz-progress{
  height: 6px;
  background: var(--cream);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}
.quiz-progress .bar{
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--wine-soft));
  border-radius: 999px;
  transition: width .35s ease;
  width: 0%;
}
.quiz-stage{
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.quiz-stage h3{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--wine);
  margin: 0 0 8px;
  line-height: 1.2;
}
.quiz-stage .qhint{
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.quiz-options{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.quiz-options button{
  text-align: left;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  transition: all .15s ease;
}
.quiz-options button:hover{
  background: var(--blush-pale);
  border-color: var(--blush);
}
.quiz-options button.selected{
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}
.quiz-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}
.quiz-foot .step-i{ font-size: 12px; color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase; }
.quiz-result{
  text-align: center;
}
.quiz-result .rmark{
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 24px rgba(107,45,62,.25);
}
.quiz-result .rmark svg{ width: 32px; height: 32px; }
.quiz-result h3{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--wine);
  margin: 0 0 12px;
}
.quiz-result p{
  color: var(--ink);
  margin: 0 auto 22px;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.55;
}
.quiz-result .btn-row{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.leadmag{
  background: var(--wine);
  color: var(--cream);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 800px){ .leadmag{ grid-template-columns: auto 1fr; } }
.leadmag::before{
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,196,206,.32), transparent 70%);
  z-index: -1;
}
.leadmag-cover{
  width: 200px; height: 260px;
  background:
    linear-gradient(160deg, var(--blush) 0%, var(--blush-pale) 100%);
  border-radius: 8px;
  box-shadow: 0 30px 50px rgba(0,0,0,.25);
  position: relative;
  flex: none;
  transform: rotate(-3deg);
  transition: transform .35s ease;
  padding: 26px 22px;
  margin: 0 auto;
}
.leadmag-cover:hover{ transform: rotate(0); }
.leadmag-cover::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--wine-deep);
  border-radius: 8px 0 0 8px;
}
.leadmag-cover small{
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.leadmag-cover h4{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--wine-deep);
  line-height: 1.1;
  margin: 0 0 14px;
}
.leadmag-cover .pages{
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
  margin-top: 50px;
  display: block;
}
.leadmag-cover .pages::before{
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--wine);
  vertical-align: 3px;
  margin-right: 8px;
}
.leadmag-body h3{
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 0 0 12px;
  line-height: 1.1;
}
.leadmag-body h3 em{ color: var(--blush); font-style: italic; }
.leadmag-body p{ color: rgba(250,243,238,.85); font-size: 15px; margin-bottom: 18px; }
.leadmag-form{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.leadmag-form input{
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  background: rgba(250,243,238,.95);
  color: var(--ink);
  font-size: 15px;
  font-family: var(--sans);
}
.leadmag-form input:focus{ outline: 2px solid var(--blush); outline-offset: 2px; }
.leadmag-form button{
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: var(--blush);
  color: var(--wine-deep);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s ease;
}
.leadmag-form button:hover{ background: #ecb5c1; }
.leadmag-note{
  font-size: 11.5px;
  color: rgba(250,243,238,.55);
  margin-top: 10px;
}

/* ============================================================
   CTA final
   ============================================================ */
.final-cta{
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2{ color: var(--cream); margin-bottom: 16px; }
.final-cta p{ color: rgba(250,243,238,.85); font-size: 17px; margin-bottom: 28px; }
.final-cta .btn-row{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--dark);
  color: rgba(250,243,238,.7);
  padding: 56px var(--pad-x) 28px;
}
.foot-grid{
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px){ .foot-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.foot-brand .nav-logo{ margin-bottom: 14px; }
.foot-brand .nav-logo .wordmark b{ color: var(--cream); }
.foot-brand .nav-logo .wordmark small{ color: var(--blush); }
.foot-brand p{
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 18px;
  color: rgba(250,243,238,.65);
}
.foot-social{ display: flex; gap: 10px; }
.foot-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(242,196,206,.08);
  border: 1px solid rgba(242,196,206,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush);
  transition: background .2s ease, color .2s ease;
}
.foot-social a:hover{ background: var(--blush); color: var(--wine-deep); }
.foot-social svg{ width: 16px; height: 16px; }

.foot-col h4{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 16px;
}
.foot-col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a, .foot-col span{ font-size: 13.5px; color: rgba(250,243,238,.7); transition: color .2s ease; }
.foot-col a:hover{ color: var(--blush); }
.foot-bottom{
  max-width: var(--max-content);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(242,196,206,.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(250,243,238,.5);
}

/* ============================================================
   FLOATING WHATSAPP + chat
   ============================================================ */
.float-stack{
  position: fixed;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.fab{
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.fab:hover{ transform: scale(1.05); box-shadow: 0 16px 30px rgba(0,0,0,.22); }
.fab svg{ width: 28px; height: 28px; }

.fab-wa{
  background: var(--wa-green);
  color: #fff;
}
.fab-wa::before{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: .3;
  z-index: -1;
  animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
  0%   { transform: scale(1);   opacity: .35; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fab-chat{
  background: var(--wine);
  color: var(--cream);
}
.fab-chat .badge-dot{
  position: absolute;
  top: 8px; right: 8px;
  width: 10px; height: 10px;
  background: var(--blush);
  border-radius: 50%;
  border: 2px solid var(--wine);
}

/* WA submenu */
.fab-wa-menu{
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding: 10px;
  min-width: 240px;
  display: none;
  border: 1px solid rgba(107,45,62,.08);
}
.fab-wa.open + .fab-wa-menu,
.fab-wa-menu.open{ display: block; animation: fade-up .2s ease; }
.fab-wa-menu a{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  transition: background .15s ease;
}
.fab-wa-menu a:hover{ background: var(--cream); color: var(--wine); }
.fab-wa-menu a img,
.fab-wa-menu a .av-letter{
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blush);
  color: var(--wine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  flex: none;
}
.fab-wa-menu a b{ display: block; color: var(--wine); font-weight: 600; }
.fab-wa-menu a small{
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); display: block; margin-top: 1px;
}

/* ============================================================
   CHAT WIDGET (uses #chat-window)
   ============================================================ */
.chat-window{
  position: fixed;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(96px, 12vw, 110px);
  width: min(380px, calc(100vw - 28px));
  height: min(560px, calc(100vh - 130px));
  background: var(--cream);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 90;
  border: 1px solid rgba(107,45,62,.1);
}
.chat-window.open{
  display: flex;
  animation: chat-in .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes chat-in{
  from{ opacity: 0; transform: translateY(20px) scale(.96); }
  to  { opacity: 1; transform: none; }
}
.chat-head{
  background: var(--wine);
  color: var(--cream);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-head .av{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 5px;
}
.chat-head .av img{ width: 100%; height: 100%; object-fit: contain; }
.chat-head .meta{ flex: 1; line-height: 1.2; }
.chat-head .meta b{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  display: block;
  color: var(--cream);
}
.chat-head .meta small{
  font-size: 11px;
  color: var(--blush);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.chat-head .meta small::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(46,167,107,.25);
}
.chat-head .close{
  background: rgba(250,243,238,.12);
  border: none;
  color: var(--cream);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.chat-head .close:hover{ background: rgba(250,243,238,.2); }
.chat-head .close svg{ width: 16px; height: 16px; }

.chat-body{
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
}
.chat-msg{
  max-width: 85%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.chat-msg.bot{
  background: var(--white);
  color: var(--ink);
  border-radius: 16px 16px 16px 4px;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.chat-msg.user{
  background: var(--wine);
  color: var(--cream);
  border-radius: 16px 16px 4px 16px;
  align-self: flex-end;
}
.chat-msg.typing{
  display: flex;
  gap: 4px;
  padding: 14px 16px;
}
.chat-msg.typing span{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wine-soft);
  animation: blink 1.2s ease-in-out infinite;
}
.chat-msg.typing span:nth-child(2){ animation-delay: .15s; }
.chat-msg.typing span:nth-child(3){ animation-delay: .3s; }
@keyframes blink{
  0%, 60%, 100%{ opacity: .3; transform: translateY(0); }
  30%{ opacity: 1; transform: translateY(-3px); }
}

.chat-suggestions{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 18px 12px;
  background: var(--cream);
}
.chat-suggestions button{
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(107,45,62,.18);
  background: var(--white);
  color: var(--wine);
  font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.chat-suggestions button:hover{ background: var(--wine); color: var(--cream); border-color: var(--wine); }

.chat-input{
  display: flex;
  gap: 8px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid rgba(107,45,62,.08);
}
.chat-input input{
  flex: 1;
  border: 1px solid rgba(107,45,62,.12);
  background: var(--cream);
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
}
.chat-input input:focus{ outline: 2px solid var(--blush); outline-offset: 1px; }
.chat-input button{
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--wine);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background .2s ease;
}
.chat-input button:hover{ background: var(--wine-deep); }
.chat-input button:disabled{ background: var(--ink-soft); opacity: .5; cursor: not-allowed; }
.chat-input button svg{ width: 18px; height: 18px; }

.chat-footnote{
  text-align: center;
  padding: 6px 16px 10px;
  font-size: 10.5px;
  color: var(--ink-soft);
  background: var(--white);
  letter-spacing: .04em;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero{
  background: var(--dark);
  color: var(--cream);
  padding: clamp(80px, 12vw, 140px) var(--pad-x) clamp(56px, 8vw, 88px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 30% 0%, rgba(91,32,45,.5), transparent 70%),
    radial-gradient(40% 60% at 80% 100%, rgba(242,196,206,.12), transparent 70%);
  pointer-events: none;
}
.page-hero-inner{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero .eyebrow{
  color: var(--blush);
  display: inline-block;
  margin-bottom: 16px;
}
.page-hero h1{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.02;
  color: var(--cream);
  margin: 0 0 16px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.page-hero h1 em{ color: var(--blush); font-style: italic; }
.page-hero p{
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(250,243,238,.8);
  margin: 0 auto;
  max-width: 560px;
}

/* ============================================================
   LONG PROFILE (quem-somos)
   ============================================================ */
.long-profile{
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 96px);
}
@media (min-width: 880px){
  .long-profile{ grid-template-columns: 0.85fr 1.15fr; }
  .long-profile.reverse{ grid-template-columns: 1.15fr 0.85fr; }
  .long-profile.reverse .lp-photo{ order: 2; }
}
.lp-photo{
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.lp-photo img{ width: 100%; height: 100%; object-fit: cover; }
.lp-photo .badge{
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(250,243,238,.95);
  backdrop-filter: blur(6px);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
}
.lp-body .eyebrow{ display: inline-block; margin-bottom: 12px; }
.lp-body h2{
  margin-bottom: 6px;
}
.lp-body .role{
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine-soft);
  font-size: clamp(18px, 2.4vw, 22px);
  margin-bottom: 22px;
}
.lp-body p{
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 18px;
}
.lp-body .specialties{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 26px;
}
.lp-body .specialties span{
  background: var(--blush-pale);
  color: var(--wine);
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.lp-body .cta-row{
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 8px;
}

.profile-gallery{
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  margin: 8px 0 20px;
}
.profile-gallery a{
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--cream-warm);
  cursor: zoom-in;
  position: relative;
  transition: transform .25s ease;
  display: block;
}
.profile-gallery a:hover{ transform: translateY(-2px); }
.profile-gallery a img{ width: 100%; height: 100%; object-fit: cover; }

.formation{
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 22px 0;
  border-left: 3px solid var(--blush);
}
.formation h4{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
  margin: 0 0 14px;
  font-size: 18px;
}
.formation ul{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.formation li{
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
}
.formation li .dot{
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wine);
  margin-top: 7px;
}
.formation li b{ color: var(--wine); font-weight: 600; }

/* ============================================================
   METHOD DETAIL (metodos.html)
   ============================================================ */
.method-detail{
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid rgba(107,45,62,.1);
}
.method-detail:last-of-type{ border-bottom: none; }
@media (min-width: 760px){
  .method-detail{ grid-template-columns: 1fr 1.5fr; }
}
.method-detail .md-head{
  position: sticky;
  top: 100px;
}
.method-detail .md-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.method-detail .md-tag .flag{
  width: 28px; height: 20px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.method-detail .md-tag .gold-standard{
  background: var(--blush-pale);
  color: var(--wine);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.method-detail h2{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--wine);
  margin: 0 0 6px;
  line-height: 1.05;
}
.method-detail .md-full{
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine-soft);
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 18px;
}
.method-detail p{
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
}
.method-detail ul.benefits{
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.method-detail ul.benefits li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
.method-detail ul.benefits .ck{
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blush-pale);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.method-detail ul.benefits .ck svg{ width: 14px; height: 14px; }

/* ============================================================
   CONTATO page form
   ============================================================ */
.contact-grid{
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;
}
@media (min-width: 880px){ .contact-grid{ grid-template-columns: 1.2fr 1fr; } }

.contact-form{
  background: var(--white);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(107,45,62,.08);
  box-shadow: var(--shadow);
}
.contact-form h3{
  font-family: var(--serif);
  font-weight: 600;
  color: var(--wine);
  font-size: 26px;
  margin: 0 0 8px;
}
.contact-form .sub{ font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }
.field{
  display: flex; flex-direction: column;
  margin-bottom: 16px;
}
.field label{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wine-soft);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea{
  border: 1.5px solid rgba(107,45,62,.18);
  background: var(--cream);
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--wine);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field-row{
  display: grid;
  gap: 12px;
}
@media (min-width: 540px){ .field-row{ grid-template-columns: 1fr 1fr; } }

.radio-group{
  display: flex; gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.radio-group label{
  display: flex; align-items: center; gap: 8px;
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  border: 1.5px solid transparent;
  transition: border-color .15s ease, background .15s ease;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}
.radio-group input{ display: none; }
.radio-group input:checked + span{ color: var(--wine); }
.radio-group label:has(input:checked){
  background: var(--blush-pale);
  border-color: var(--wine);
}

.contact-side{
  display: flex; flex-direction: column;
  gap: 20px;
}
.contact-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(107,45,62,.08);
  box-shadow: var(--shadow-sm);
}
.contact-card h4{
  font-family: var(--serif);
  font-weight: 600;
  color: var(--wine);
  font-size: 20px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card h4 .ico{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blush-pale);
  color: var(--wine);
  display: flex; align-items: center; justify-content: center;
}
.contact-card h4 .ico svg{ width: 16px; height: 16px; }
.contact-card p{ margin: 0 0 12px; font-size: 14.5px; color: var(--ink); line-height: 1.6; }
.contact-card .row{
  display: flex; flex-direction: column; gap: 10px;
}
.contact-card .row a{
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 12px;
  transition: background .15s ease;
}
.contact-card .row a:hover{ background: var(--blush-pale); }
.contact-card .row .av{
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blush);
  flex: none;
}
.contact-card .row .av img{ width: 100%; height: 100%; object-fit: cover; }
.contact-card .row b{ display: block; font-size: 14.5px; color: var(--wine); font-weight: 600; }
.contact-card .row small{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 1px;
}
.gallery-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px){ .gallery-grid{ grid-template-columns: repeat(4, 1fr); } }
.gallery-grid .ph{
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--blush-pale) 0%, var(--cream-warm) 100%);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  border: 1px dashed rgba(107,45,62,.18);
  text-align: center;
  padding: 12px;
  line-height: 1.3;
}

.press{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px 56px;
  opacity: .8;
}
.press-item{
  font-family: var(--serif);
  font-weight: 500;
  color: var(--wine-soft);
  font-size: 18px;
  letter-spacing: .04em;
}

/* ============================================================
   GALLERY (Nossos espaços) — tabbed
   ============================================================ */
.gallery-tabs{
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 6px;
  background: var(--white);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,45,62,.06);
}
.gallery-tabs button{
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.gallery-tabs button:hover{ color: var(--wine); }
.gallery-tabs button.active{
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 4px 10px rgba(107,45,62,.25);
}

.gallery-panel{
  display: none;
}
.gallery-panel.active{
  display: block;
  animation: fade-in .35s ease;
}

.gallery-masonry{
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .gallery-masonry{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px){ .gallery-masonry{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px){ .gallery-masonry{ grid-template-columns: repeat(4, 1fr); } }

.gallery-masonry .ph{
  aspect-ratio: 3 / 4;
  background: var(--cream-warm);
  border-radius: var(--radius-s);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-masonry .ph:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery-masonry .ph img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-masonry .ph:hover img{ transform: scale(1.06); }

/* every 5th tile becomes wider (visual rhythm) */
.gallery-masonry .ph.tall{ aspect-ratio: 3 / 5; }
.gallery-masonry .ph.wide{ aspect-ratio: 5 / 4; }
@media (min-width: 980px){
  .gallery-masonry .ph.wide{ grid-column: span 2; }
}

/* lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(15,12,13,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.lightbox.open{ display: flex; animation: fade-in .25s ease; }
.lightbox img{
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox .close-lb{
  position: fixed;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(250,243,238,.12);
  border: 1px solid rgba(250,243,238,.18);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox .close-lb:hover{ background: rgba(250,243,238,.22); }
.lightbox .close-lb svg{ width: 20px; height: 20px; }
.lightbox .lb-nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(250,243,238,.10);
  border: 1px solid rgba(250,243,238,.18);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox .lb-nav:hover{ background: rgba(250,243,238,.20); }
.lightbox .lb-nav svg{ width: 22px; height: 22px; }
.lightbox .lb-nav.prev{ left: 18px; }
.lightbox .lb-nav.next{ right: 18px; }
.lightbox .lb-counter{
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: rgba(250,243,238,.7);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ============================================================
   MERGED LOCATION section (Casa Teca + map)
   ============================================================ */
.loc-grid{
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}
@media (min-width: 980px){
  .loc-grid{ grid-template-columns: 1fr 1fr; }
}
.loc-photo-stack{
  display: grid;
  gap: 12px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}
.loc-photo-stack.single{
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
.loc-photo-stack.single .ph{
  aspect-ratio: 4 / 5;
}
.loc-photo-stack .ph{
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--cream-warm);
  aspect-ratio: 4 / 3;
}
.loc-photo-stack .ph:first-child{
  grid-row: span 2;
  aspect-ratio: 3 / 5;
}
.loc-photo-stack .ph img{ width: 100%; height: 100%; object-fit: cover; }

.loc-feats{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}
.loc-feats li{
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
}
.loc-feats.loc-feats-2x2{
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: 22px;
}
@media (min-width: 760px){
  .loc-feats.loc-feats-2x2{ grid-template-columns: 1fr 1fr; gap: 24px 36px; }
}
.loc-feats.loc-feats-2x2 li{ font-size: 15px; }
.loc-feats .ico{
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--blush);
  display: flex; align-items: center; justify-content: center;
}
.loc-feats .ico svg{ width: 16px; height: 16px; }
.loc-feats b{ color: var(--wine); display: block; }
.loc-feats small{ color: var(--ink-soft); font-size: 13.5px; display: block; margin-top: 2px; }
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; }
  .fab-wa::before{ animation: none; }
  html{ scroll-behavior: auto; }
}

/* utility */
.center{ text-align: center; }
.mt-0{ margin-top: 0; }
.mb-0{ margin-bottom: 0; }
.hide-mobile{ }
@media (max-width: 640px){ .hide-mobile{ display: none !important; } }
.hide-desktop{ display: none; }
@media (max-width: 640px){ .hide-desktop{ display: block !important; } }
