/* =========================================================
   VIVI NEVES MASSOTERAPEUTA — Stylesheet
   Estética: boutique de bem-estar, premium, quente e elegante
   ========================================================= */

:root {
  --primary: #4A2E23;   /* Castanho Cacau Profundo */
  --secondary: #E6D8CC; /* Bege Amêndoa Quente */
  --accent: #C2A46D;    /* Dourado Suave Elegante */
  --accent-dark: #A8884F;
  --light: #F3ECE6;     /* Areia Clara */
  --dark: #1F1F1F;      /* Preto Aveludado */
  --white: #FFFDFB;
  --primary-soft: #6B4A3A;
  --shadow-sm: 0 4px 16px rgba(74, 46, 35, 0.08);
  --shadow-md: 0 12px 32px rgba(74, 46, 35, 0.12);
  --shadow-lg: 0 24px 60px rgba(74, 46, 35, 0.18);
  --radius: 22px;
  --radius-lg: 32px;
  --max: 1200px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--primary);
  line-height: 1.7;
  background-color: var(--light);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(194, 164, 109, 0.10), transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(230, 216, 204, 0.55), transparent 45%),
    linear-gradient(180deg, var(--light) 0%, #efe5dc 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  font-weight: 400;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--primary); letter-spacing: 0.2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow.center { justify-content: center; }

.lead { font-size: 1.12rem; color: var(--primary-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin: 14px 0 18px; }

.divider { width: 64px; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); margin: 22px auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.96rem;
  padding: 15px 30px; border-radius: 100px; cursor: pointer; border: none;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white); box-shadow: 0 10px 26px rgba(168, 136, 79, 0.34);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(168, 136, 79, 0.45); }
.btn-dark { background: var(--primary); color: var(--light); }
.btn-dark:hover { transform: translateY(-3px); background: var(--primary-soft); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--primary); border: 1.5px solid rgba(74, 46, 35, 0.28); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-3px); }
.btn-light { background: rgba(255,253,251,0.14); color: var(--light); border: 1.5px solid rgba(243, 236, 230, 0.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,253,251,0.24); transform: translateY(-3px); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 18px 0; transition: all 0.4s ease;
  background: rgba(243, 236, 230, 0.0);
}
.header.scrolled {
  background: rgba(247, 242, 237, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(74, 46, 35, 0.08);
  padding: 12px 0;
  border-bottom: 1px solid rgba(194, 164, 109, 0.22);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: auto; max-width: 170px; object-fit: contain; }
.brand-text { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--primary); line-height: 1.05; }
.brand-text span { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--primary); position: relative; transition: color 0.3s; }
.nav-links a::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 1.5px; background: var(--accent); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 82%; max-width: 360px; height: 100vh; z-index: 110;
  background: linear-gradient(160deg, var(--primary) 0%, #2e1c14 100%);
  padding: 90px 36px 40px; transition: right 0.45s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { display: block; color: var(--light); font-family: var(--font-display); font-size: 1.7rem; padding: 14px 0; border-bottom: 1px solid rgba(243,236,230,0.12); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 28px; width: 100%; justify-content: center; }
.menu-close { position: absolute; top: 28px; right: 30px; background: none; border: none; color: var(--light); font-size: 1.6rem; cursor: pointer; }
.menu-overlay { position: fixed; inset: 0; background: rgba(31,31,31,0.5); z-index: 105; opacity: 0; visibility: hidden; transition: all 0.4s; backdrop-filter: blur(3px); }
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { padding: 168px 0 96px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 .gold { color: var(--accent-dark); font-style: italic; }
.hero p { max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .num { font-family: var(--font-display); font-size: 2rem; color: var(--accent-dark); font-weight: 600; }
.hero-trust .lbl { font-size: 0.82rem; color: var(--primary-soft); }

.hero-visual { position: relative; }
.hero-visual .main-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 560px; object-fit: cover; }
.hero-visual .accent-img {
  position: absolute; bottom: -34px; left: -34px; width: 200px; height: 240px; object-fit: cover;
  border-radius: var(--radius); border: 6px solid var(--light); box-shadow: var(--shadow-md);
}
.hero-badge {
  position: absolute; top: 26px; right: -10px; background: var(--white); padding: 16px 20px;
  border-radius: 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.hero-badge i { color: var(--accent); font-size: 1.5rem; }
.hero-badge span { font-size: 0.85rem; font-weight: 600; line-height: 1.3; }
.hero-badge small { display: block; font-weight: 400; color: var(--primary-soft); font-size: 0.78rem; }

/* ---------- Cards / Benefits ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: rgba(255, 253, 251, 0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(194, 164, 109, 0.2); border-radius: var(--radius);
  padding: 38px 32px; box-shadow: var(--shadow-sm); transition: all 0.4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(194, 164, 109, 0.5); }
.card .ico {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--secondary), var(--light));
  color: var(--accent-dark); font-size: 1.5rem; margin-bottom: 22px;
  border: 1px solid rgba(194, 164, 109, 0.3);
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--primary-soft); font-size: 0.98rem; }

/* ---------- Bento Grid ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 20px; }
.bento-item {
  border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}
.bento-item:hover { transform: translateY(-5px); }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.bento-item:hover img { transform: scale(1.07); }
.bento-item .overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(31,20,14,0.82));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: var(--light);
}
.bento-item .overlay h4 { color: var(--light); font-size: 1.3rem; margin-bottom: 4px; }
.bento-item .overlay span { font-size: 0.84rem; opacity: 0.85; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-text {
  background: linear-gradient(150deg, var(--primary), #2e1c14); color: var(--light);
  padding: 32px; display: flex; flex-direction: column; justify-content: center;
}
.bento-text h3 { color: var(--light); margin-bottom: 10px; }
.bento-text p { color: rgba(243,236,230,0.75); font-size: 0.94rem; }

/* ---------- Services list ---------- */
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.4s ease; display: flex; flex-direction: column;
  border: 1px solid rgba(194,164,109,0.16);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .img-wrap { height: 220px; overflow: hidden; position: relative; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-card:hover img { transform: scale(1.06); }
.service-card .price-tag {
  position: absolute; top: 16px; right: 16px; background: rgba(255,253,251,0.94);
  color: var(--primary); padding: 8px 16px; border-radius: 100px; font-weight: 700;
  font-size: 0.92rem; box-shadow: var(--shadow-sm); backdrop-filter: blur(4px);
}
.service-card .body { padding: 30px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card .meta { display: flex; gap: 16px; margin-bottom: 14px; font-size: 0.82rem; color: var(--accent-dark); font-weight: 600; }
.service-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--primary-soft); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .indicated { font-size: 0.88rem; color: var(--primary-soft); margin-bottom: 18px; }
.service-card .indicated strong { color: var(--primary); }
.service-card .note {
  background: var(--light); border-left: 3px solid var(--accent); border-radius: 10px;
  padding: 14px 16px; font-size: 0.82rem; color: var(--primary-soft); margin-bottom: 18px;
}
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .num {
  width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft)); color: var(--accent);
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; box-shadow: var(--shadow-sm);
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--primary-soft); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 16px; margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(194,164,109,0.14); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q i { color: var(--accent-dark); transition: transform 0.35s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--primary-soft); font-size: 0.97rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(140deg, var(--primary) 0%, #2e1c14 100%); border-radius: var(--radius-lg);
  padding: 70px 56px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(194,164,109,0.28), transparent 70%); border-radius: 50%;
}
.cta-band::after {
  content: ""; position: absolute; bottom: -80px; left: -40px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(230,216,204,0.16), transparent 70%); border-radius: 50%;
}
.cta-band .eyebrow { color: var(--accent); position: relative; }
.cta-band h2 { color: var(--light); margin: 16px 0 18px; position: relative; }
.cta-band p { color: rgba(243,236,230,0.82); max-width: 600px; margin: 0 auto 32px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Areas / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: var(--white); border: 1px solid rgba(194,164,109,0.3); border-radius: 100px;
  padding: 10px 22px; font-size: 0.9rem; font-weight: 500; color: var(--primary);
  display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.chip:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-2px); }
.chip i { color: var(--accent); }

/* ---------- Split / editorial ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 520px; object-fit: cover; }
.split-img.framed { border: 8px solid var(--white); }
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin-top: 28px; }
.value-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; color: var(--primary-soft); }
.value-list li i { color: var(--accent-dark); margin-top: 5px; }
.value-list li strong { color: var(--primary); display: block; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 160px 0 70px; text-align: center; position: relative; }
.page-hero .breadcrumb { font-size: 0.82rem; color: var(--primary-soft); margin-bottom: 14px; }
.page-hero .breadcrumb a:hover { color: var(--accent-dark); }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { max-width: 620px; margin: 0 auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--white); border-radius: 18px; padding: 26px 28px; display: flex; gap: 20px;
  align-items: flex-start; box-shadow: var(--shadow-sm); border: 1px solid rgba(194,164,109,0.14);
  transition: all 0.3s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--light); color: var(--accent-dark); font-size: 1.25rem; flex-shrink: 0; }
.info-card h4 { font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--primary-soft); font-size: 0.96rem; }
.info-card a:hover { color: var(--accent-dark); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }
.payments { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.pay-chip { background: var(--light); border-radius: 10px; padding: 8px 16px; font-size: 0.85rem; font-weight: 500; display: inline-flex; gap: 8px; align-items: center; }
.pay-chip i { color: var(--accent-dark); }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(160deg, var(--primary) 0%, #2a1a12 100%); color: rgba(243,236,230,0.78); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
.footer .brand-text { color: var(--light); }
.footer-about p { font-size: 0.92rem; margin: 18px 0; line-height: 1.75; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(243,236,230,0.08); color: var(--light); transition: all 0.3s; }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer h4 { color: var(--light); font-family: var(--font-body); font-size: 1rem; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.92rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.92rem; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: 4px; }
.footer-hours span { display: block; font-size: 0.92rem; margin-bottom: 6px; }
.footer-hours strong { color: var(--light); }
.footer .btn { margin-top: 18px; }
.footer-bottom { border-top: 1px solid rgba(243,236,230,0.1); padding: 24px 0; text-align: center; font-size: 0.84rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E); border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 1.8rem;
  box-shadow: 0 8px 28px rgba(18, 140, 126, 0.5); transition: transform 0.3s;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 28px rgba(18,140,126,0.5), 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 8px 28px rgba(18,140,126,0.5), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 28px rgba(18,140,126,0.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  section { padding: 72px 0; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual .main-img { height: 440px; }
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .value-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .grid-3, .grid-2, .steps, .bento { grid-template-columns: 1fr; }
  .bento-wide, .bento-tall { grid-column: auto; grid-row: auto; }
  .cta-band { padding: 50px 26px; }
  .hero { padding: 140px 0 70px; }
  .hero-visual .accent-img { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .page-hero .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   AJUSTES FINAIS — Leveza, fluidez, CTAs visíveis e foco comercial
   ========================================================= */
.hero {
  padding-top: 132px;
  padding-bottom: 72px;
}
.hero-grid {
  align-items: center;
  gap: 46px;
}
.hero-title {
  margin: 18px 0 18px;
}
.hero-title-main,
.hero-title-sub {
  display: block;
}
.hero-title-main {
  color: var(--primary);
  font-size: clamp(3.2rem, 6vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.hero-title-sub {
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: clamp(1.8rem, 3.15vw, 3.05rem);
  line-height: 1.12;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 760px;
}
.hero-lead {
  margin-top: 24px;
  margin-bottom: 0;
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.85;
}
.hero-cta {
  margin-top: 20px;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}
.hero-trust {
  margin-top: 26px;
}
.hero-visual .main-img {
  height: min(52vh, 500px);
  min-height: 390px;
  border-radius: 38px 18px 52px 18px;
}
.hero-visual .accent-img {
  border-radius: 30px 12px 36px 12px;
}

.card,
.service-card,
.info-card,
.faq-item,
.cta-band,
.bento-item,
.step {
  border-radius: 30px 16px 34px 18px;
}
.card {
  padding: 34px 30px;
}
.card p {
  font-size: 0.95rem;
  line-height: 1.78;
}
.grid-3 .card h3 {
  margin-bottom: 14px;
}
.card-featured,
.service-priority {
  position: relative;
  border-color: rgba(194, 164, 109, 0.42);
  box-shadow: 0 18px 44px rgba(74, 46, 35, 0.10);
}
.card-badge,
.service-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(194, 164, 109, 0.16);
  color: var(--primary);
  border: 1px solid rgba(194, 164, 109, 0.36);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}
.card-badge::before,
.service-badge::before {
  content: "✦";
  color: var(--accent-dark);
  font-size: 0.78rem;
}
.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255,253,251,0.94);
  backdrop-filter: blur(8px);
  margin-bottom: 0;
}
.service-priority .price-tag {
  top: 58px;
}

.sensory-break {
  min-height: 430px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(74,46,35,0.78), rgba(74,46,35,0.36), rgba(243,236,230,0.14)),
    url('/assets/images/pausa-corpo-respirar-massagem-amadora.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 30px 0;
  overflow: hidden;
}
.sensory-card {
  max-width: 640px;
  padding: 52px 48px;
  border-radius: 38px 18px 48px 18px;
  background: rgba(255,253,251,0.15);
  border: 1px solid rgba(243,236,230,0.28);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px rgba(31,31,31,0.16);
}
.sensory-card .eyebrow,
.sensory-card .eyebrow::before,
.sensory-card .eyebrow::after {
  color: var(--accent);
}
.sensory-card h2 {
  color: var(--light);
  margin: 14px 0 18px;
}
.sensory-card p {
  color: rgba(243,236,230,0.88);
  font-size: 1.08rem;
  line-height: 1.9;
}

/* Scroll reveal mais lento, visível e com sensação orgânica */
.reveal {
  opacity: 0;
  transform: translate3d(0, 54px, 0) scale(0.99);
  filter: blur(8px);
  transition-property: opacity, transform, filter;
  transition-duration: 1.2s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.card.reveal,
.service-card.reveal,
.step.reveal,
.info-card.reveal {
  transform: translate3d(0, 64px, 0) scale(0.985);
  transition-duration: 1.45s;
}
.card.reveal.visible,
.service-card.reveal.visible,
.step.reveal.visible,
.info-card.reveal.visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 980px) {
  .hero { padding-top: 125px; }
  .hero-title-main { font-size: clamp(3rem, 10vw, 4.8rem); }
  .hero-title-sub { font-size: clamp(1.65rem, 6vw, 2.65rem); }
  .hero-visual .main-img { height: 430px; min-height: 360px; }
  .sensory-break { background-attachment: scroll; }
}
@media (max-width: 560px) {
  .hero { padding-top: 120px; padding-bottom: 58px; }
  .hero-title-main { font-size: clamp(2.65rem, 14vw, 3.65rem); }
  .hero-title-sub { margin-top: 14px; font-size: clamp(1.45rem, 8vw, 2.1rem); }
  .hero-lead { font-size: 0.98rem; }
  .hero-trust { display: none; }
  .sensory-card { padding: 38px 26px; }
  .card { padding: 30px 24px; }
  .service-priority .price-tag { top: 58px; }
}


/* ---------- Service Detail Pages ---------- */
.service-detail-hero { padding: 155px 0 80px; position: relative; overflow: hidden; }
.service-detail-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 18% 18%, rgba(194,164,109,.16), transparent 32%), linear-gradient(135deg, rgba(243,236,230,.96), rgba(230,216,204,.72)); z-index:-2; }
.service-detail-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:56px; align-items:center; }
.service-detail-copy h1 { margin:18px 0 18px; font-size: clamp(2.6rem, 5.4vw, 5.1rem); }
.service-detail-copy .lead { max-width:650px; }
.service-hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin:28px 0 28px; }
.service-quick-facts { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; margin-top:30px; }
.fact-pill { padding:16px 18px; border-radius:22px; background:rgba(255,253,251,.64); border:1px solid rgba(194,164,109,.22); box-shadow:var(--shadow-sm); }
.fact-pill strong { display:block; font-family:var(--font-display); font-size:1.25rem; line-height:1.1; }
.fact-pill span { display:block; color:var(--primary-soft); font-size:.84rem; margin-top:4px; }
.service-detail-image { position:relative; }
.service-detail-image img { width:100%; height:560px; object-fit:cover; border-radius: 48px 22px 48px 22px; box-shadow: var(--shadow-lg); }
.service-note-card { position:absolute; left:-30px; bottom:26px; max-width:260px; padding:20px 22px; border-radius:26px; background:rgba(255,253,251,.9); backdrop-filter:blur(12px); border:1px solid rgba(194,164,109,.26); box-shadow:var(--shadow-md); }
.service-note-card i { color:var(--accent-dark); font-size:1.3rem; margin-bottom:8px; }
.service-note-card strong { display:block; font-family:var(--font-display); font-size:1.35rem; }
.service-page-section { padding:88px 0; }
.service-two-col { display:grid; grid-template-columns: .9fr 1.1fr; gap:42px; align-items:start; }
.sticky-soft-card { position:sticky; top:110px; padding:34px; border-radius:34px; background:linear-gradient(150deg, rgba(255,253,251,.82), rgba(230,216,204,.48)); border:1px solid rgba(194,164,109,.22); box-shadow:var(--shadow-sm); }
.sticky-soft-card h2 { margin-bottom:14px; }
.detail-list { display:grid; gap:18px; }
.detail-item { padding:26px; border-radius:30px; background:rgba(255,253,251,.68); border:1px solid rgba(194,164,109,.18); box-shadow:var(--shadow-sm); }
.detail-item h3 { font-size:1.55rem; margin-bottom:10px; }
.detail-item p, .detail-item li { color:var(--primary-soft); }
.soft-bullets { display:grid; gap:12px; margin-top:14px; }
.soft-bullets li { position:relative; padding-left:28px; }
.soft-bullets li::before { content:""; position:absolute; left:0; top:.75em; width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 6px rgba(194,164,109,.14); }
.benefit-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.benefit-card { padding:28px; border-radius:32px; background:rgba(255,253,251,.72); border:1px solid rgba(194,164,109,.2); box-shadow:var(--shadow-sm); }
.benefit-card i { color:var(--accent-dark); font-size:1.35rem; margin-bottom:14px; }
.benefit-card h3 { font-size:1.45rem; margin-bottom:8px; }
.benefit-card p { color:var(--primary-soft); font-size:.96rem; }
.safety-band { border-radius:40px; padding:42px; background:linear-gradient(135deg, rgba(74,46,35,.94), rgba(74,46,35,.82)), url('/assets/images/ambiente-gabinete-massoterapia-amadora.webp') center/cover; color:var(--light); box-shadow:var(--shadow-lg); }
.safety-band h2, .safety-band h3 { color:var(--light); }
.safety-band p, .safety-band li { color:rgba(243,236,230,.84); }
.service-faq .faq-item { background:rgba(255,253,251,.72); }
.testimonial-placeholder { padding:34px; border-radius:34px; background:linear-gradient(135deg, rgba(255,253,251,.72), rgba(230,216,204,.44)); border:1px solid rgba(194,164,109,.22); text-align:center; }
.testimonial-placeholder p { color:var(--primary-soft); max-width:720px; margin:0 auto 20px; }
.service-card .body .card-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:auto; padding-top:8px; }
.service-card .body .text-link { color:var(--accent-dark); font-weight:700; align-self:center; font-size:.95rem; }
.service-card .body .text-link:hover { color:var(--primary); }
@media (max-width: 980px) { .service-detail-grid, .service-two-col { grid-template-columns:1fr; } .service-detail-image img { height:430px; } .service-note-card { left:22px; right:22px; bottom:22px; max-width:none; } .benefit-grid { grid-template-columns:1fr 1fr; } .sticky-soft-card { position:relative; top:auto; } }
@media (max-width: 620px) { .service-detail-hero { padding-top:125px; } .service-quick-facts, .benefit-grid { grid-template-columns:1fr; } .service-detail-image img { height:360px; border-radius:34px 18px 34px 18px; } .safety-band { padding:30px 24px; border-radius:30px; } }

/* Avaliações reais do Google */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}
.review-card {
  position: relative;
  min-height: 315px;
  padding: 34px 32px;
  border-radius: 42px 24px 46px 26px;
  background: linear-gradient(145deg, rgba(255,253,251,.88), rgba(243,236,230,.54));
  border: 1px solid rgba(194,164,109,.22);
  box-shadow: 0 26px 70px rgba(74,46,35,.09);
  overflow: hidden;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: -26px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(194,164,109,.14);
  pointer-events: none;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--light);
  background: linear-gradient(135deg, var(--primary), #7b5547);
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 14px 34px rgba(74,46,35,.18);
}
.review-card h3 {
  font-size: 1.22rem;
  margin: 0 0 2px;
}
.review-stars {
  color: #f4b400;
  letter-spacing: .08em;
  font-size: .95rem;
}
.review-card p {
  position: relative;
  z-index: 1;
  color: var(--primary-soft);
  line-height: 1.78;
  font-size: 1rem;
}
.featured-review {
  border-color: rgba(194,164,109,.42);
  box-shadow: 0 34px 85px rgba(74,46,35,.13);
  transform: translateY(-10px);
}
.featured-review.reveal {
  transform: translate3d(0, 54px, 0) scale(.985);
}
.featured-review.reveal.visible {
  transform: translate3d(0, -10px, 0) scale(1);
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(194,164,109,.16);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.reviews-cta {
  margin: 46px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  text-align: center;
}
.reviews-cta p {
  margin: 0;
  color: var(--primary-soft);
  font-size: 1.08rem;
}
@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .featured-review { transform: none; }
  .featured-review.reveal.visible { transform: translate3d(0, 0, 0) scale(1); }
}


/* Ajustes finais: páginas de serviço, movimento e políticas */
.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,253,251,.48);
  border: 1px solid rgba(194,164,109,.22);
  box-shadow: 0 12px 34px rgba(74,46,35,.05);
  color: rgba(74,46,35,.62);
  font-size: .82rem;
  line-height: 1;
  letter-spacing: .02em;
}
.service-breadcrumb a {
  color: rgba(74,46,35,.70);
  text-decoration: none;
  transition: color .35s ease;
}
.service-breadcrumb a:hover { color: var(--accent-dark); }
.service-breadcrumb span { color: rgba(194,164,109,.78); }
.service-breadcrumb strong {
  color: var(--primary);
  font-weight: 600;
}
.service-split-title {
  display: grid;
  gap: 12px;
  margin: 18px 0 20px;
}
.service-title-treatment {
  display: block;
  color: var(--primary);
}
.service-title-promise {
  display: block;
  max-width: 760px;
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.benefit-card h3 {
  color: var(--primary);
  font-size: 1.62rem;
  line-height: 1.12;
}
.benefit-card p {
  font-size: .98rem;
  line-height: 1.75;
}
.service-faq .faq-a p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(74,46,35,.78);
}
.reveal {
  transition-duration: 1.2s;
  transition-timing-function: cubic-bezier(0.18, 0.84, 0.24, 1);
}
.card.reveal,
.service-card.reveal,
.step.reveal,
.info-card.reveal,
.benefit-card.reveal,
.detail-item.reveal,
.faq-item.reveal,
.review-card.reveal {
  transition-duration: 1.45s;
}
.reveal[data-slow="true"],
.service-detail-copy.reveal,
.service-detail-image.reveal {
  transition-duration: 1.6s;
}
.legal-hero { padding: 155px 0 52px; background: radial-gradient(circle at 16% 20%, rgba(194,164,109,.14), transparent 34%), linear-gradient(135deg, rgba(243,236,230,.98), rgba(230,216,204,.72)); }
.legal-wrap { max-width: 920px; margin: 0 auto; }
.legal-card { padding: 42px; border-radius: 38px 20px 42px 22px; background: rgba(255,253,251,.72); border: 1px solid rgba(194,164,109,.22); box-shadow: var(--shadow-sm); }
.legal-card h2 { margin-top: 34px; margin-bottom: 12px; font-size: 2rem; }
.legal-card p, .legal-card li { color: var(--primary-soft); line-height: 1.85; }
.legal-card ul { display: grid; gap: 10px; margin: 12px 0 18px 20px; }
@media (max-width: 620px) {
  .service-title-promise { font-size: clamp(1.7rem, 9vw, 2.3rem); }
  .service-breadcrumb { border-radius: 22px; line-height: 1.45; }
  .legal-card { padding: 28px 22px; }
}


/* ===================== V6 — Estrutura SEO/GEO, FAQ e Serviços ===================== */
.reveal { transition-duration: 1.2s !important; transition-timing-function: cubic-bezier(0.18, 0.84, 0.24, 1) !important; }
.card.reveal, .service-card.reveal, .step.reveal, .info-card.reveal, .benefit-card.reveal, .detail-item.reveal, .faq-item.reveal, .review-card.reveal { transition-duration: 1.45s !important; }
.service-detail-copy.reveal, .service-detail-image.reveal, .cta-band.reveal { transition-duration: 1.6s !important; }
.treatment-filter-row, .faq-topic-row { justify-content:center; margin-top:32px; gap:12px; }
.treatment-filter-chip, .faq-topic-chip { text-decoration:none; transition: all .35s ease; }
.treatment-filter-chip:hover, .faq-topic-chip:hover { transform: translateY(-3px); background: rgba(194,164,109,.18); }
.treatment-category-section { padding-top: 30px; }
.treatment-list-card .body { min-height: 100%; }
.treatment-list-card .ico { margin-bottom:18px; }
.treatment-list-card .service-badge { position: static; display:inline-flex; align-self:flex-start; margin-bottom:18px; }
.treatment-list-card .meta { flex-wrap:wrap; gap:10px 16px; }
.treatment-list-card .card-actions { margin-top:auto; align-items:center; }
.faq-topic-section { padding-top: 34px; }
.faq-topic-section:nth-of-type(even) { background: linear-gradient(180deg, transparent, rgba(230,216,204,.34), transparent); }
.instagram-info-card .ico { background: radial-gradient(circle at 30% 30%, #feda75, #d62976 55%, #4f5bd5); color:#fff; }
.service-title-promise { max-width: 920px; }
@media (max-width: 980px){ .nav-links { gap: 22px; } .nav-cta .btn { padding: 14px 20px; } }


/* ===================== V7 — FAQ expandida, imagens nos serviços e texto justificado ===================== */
p, .lead, .card p, .service-card p, .info-card p, .benefit-card p, .detail-item p, .faq-a p, .legal-card p, .legal-card li, .footer-about p, .footer-contact li, .service-note-card span, .review-card p {
  text-align: justify;
  text-justify: inter-word;
}
.section-head .lead, .page-hero .lead, .cta-band p {
  max-width: 860px;
}
.hero-title-sub {
  text-wrap: balance;
}
.treatment-image-card .img-wrap {
  height: 238px;
}
.treatment-image-card .meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(194,164,109,.10);
}
.treatment-filter-row, .faq-topic-row {
  display: flex;
  flex-wrap: wrap;
}
.treatment-filter-chip, .faq-topic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(194,164,109,.28);
  background: rgba(255,253,251,.48);
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
}
.faq-topic-section .section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}
.faq-a p {
  line-height: 1.9;
}
.faq-q span {
  line-height: 1.45;
}
.service-card .img-wrap img {
  filter: saturate(.92) contrast(.98);
}
.service-card:hover .img-wrap img {
  filter: saturate(1) contrast(1.02);
}
@media (max-width: 760px) {
  p, .lead, .card p, .service-card p, .info-card p, .benefit-card p, .detail-item p, .faq-a p, .legal-card p, .legal-card li, .footer-about p, .footer-contact li, .review-card p {
    text-align: left;
  }
}


/* ===================== V8 — CTAs claros, favicon cache e segunda secção com imagem ===================== */
.ambient-image-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(243,236,230,.90), rgba(243,236,230,.74), rgba(230,216,204,.92)),
    url('/assets/images/ambiente-gabinete-massoterapia-amadora.webp');
  background-size: cover;
  background-position: center 58%;
  background-attachment: fixed;
}
.ambient-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 18%, rgba(194,164,109,.22), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(74,46,35,.12), transparent 42%);
  pointer-events: none;
}
.service-card .body .card-actions .btn-primary {
  white-space: nowrap;
}
.service-card .body .text-link {
  line-height: 1.45;
}
.treatment-image-card .card-actions {
  align-items: center;
}
@media (max-width: 760px) {
  .ambient-image-section { background-attachment: scroll; }
  .service-card .body .card-actions .btn-primary { white-space: normal; }
}


/* ===================== V10 — SEO local, Google actions e consistência NAP ===================== */
.local-action-row,
.contact-map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.contact-map-actions {
  background: rgba(255, 253, 251, .76);
  border: 1px solid rgba(194,164,109,.18);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.map-panel { display: grid; gap: 18px; }
.info-card small { display:block; margin-top:5px; color: var(--accent-dark); font-size: .82rem; line-height:1.45; }
.google-info-card .ico { background: rgba(194,164,109,.18); color: var(--accent-dark); }
.not-found-hero { min-height: 72vh; display: grid; place-items: center; }
.footer-contact li:first-child { color: rgba(243,236,230,.92); font-weight: 600; }
@media (max-width: 680px) {
  .local-action-row, .contact-map-actions { align-items: stretch; }
  .local-action-row .btn, .contact-map-actions .btn { width: 100%; justify-content: center; }
}


/* ===================== V11 — imagens finais otimizadas e fundos editoriais ===================== */
.page-hero.hero-image-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero.hero-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(243,236,230,.94), rgba(243,236,230,.82), rgba(230,216,204,.92)),
    radial-gradient(circle at 50% 12%, rgba(194,164,109,.20), transparent 38%);
}
.page-hero.faq-hero-bg { background-image: url('/assets/images/faqs-massagens-drenagens-estetica-amadora.webp'); background-position: center 46%; }
.page-hero.contact-hero-bg { background-image: url('/assets/images/contacto-gabinete-vivi-neves-amadora.webp'); background-position: center 55%; }
.testimonials-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(243,236,230,.94), rgba(243,236,230,.86), rgba(230,216,204,.94)),
    url('/assets/images/cliente-satisfeita-massagem-relaxamento-amadora.webp');
  background-size: cover;
  background-position: center 45%;
  background-attachment: fixed;
}
.testimonials-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 24%, rgba(194,164,109,.20), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(74,46,35,.10), transparent 45%);
}
.ambient-image-section {
  background-image:
    linear-gradient(180deg, rgba(243,236,230,.91), rgba(243,236,230,.76), rgba(230,216,204,.93)),
    url('/assets/images/ambiente-gabinete-massoterapia-amadora.webp') !important;
}
@media (max-width: 980px) {
  .testimonials-home { background-attachment: scroll; }
}
