/* ===== LOCAL FONTS DIRECTIVE ===== */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/roboto-italic-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/roboto-normal-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/roboto-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/roboto-normal-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/roboto-normal-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/roboto-normal-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/robotoserif-italic-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/robotoserif-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/robotoserif-normal-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/robotoserif-normal-600.woff2') format('woff2');
}

:root {
  /* ===== BRAND PALETTE ===== */
  --gold: #BB9D63;        /* Cor da logo */
  --gold-soft: #C9B084;
  --gold-deep: #9C7F4E;
  --navy: #1E5A54;
  --navy-deep: #123b37;
  --teal: #1E5A54;        /* Acento secundário (cor da clínica) */
  --blush: #CDA295;       /* Argila-rosé suave (sensibilidade feminina) */
  --blush-soft: #EBD9D1;
  --champagne: #E7D6B8;   /* Dourado claro para brilhos e fundos */
  --cream: #F4EEE9;
  --cream-2: #EDE4D8;
  --sand: #E2D4C1;
  --white: #FAF7F2;       /* Creme acetinado claro */
  --ink: #2A2E38;
  --muted: #7B7468;
  --line: rgba(130, 115, 90, 0.15); /* Linha dourada-cinza suave */

  /* ===== TYPE ===== */
  --serif: 'Roboto Serif', Georgia, serif;
  --sans: 'Roboto', system-ui, -apple-system, sans-serif;

  /* ===== RADII ===== */
  --r-xs: 4px; 
  --r-sm: 10px; 
  --r-md: 20px; 
  --r-lg: 30px; 
  --r-pill: 100px;

  /* ===== SHADOWS ===== */
  --sh-sm: 0 8px 30px rgba(130, 115, 90, 0.06);
  --sh-md: 0 16px 40px rgba(130, 115, 90, 0.08);
  --sh-lg: 0 24px 60px rgba(130, 115, 90, 0.12);
  --sh-gold: 0 12px 30px -14px rgba(187, 157, 99, 0.4);
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.032'/%3E%3C/svg%3E");
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* ===== ACCESSIBILITY FOCUS GLOBAL ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(187, 157, 99, 0.25) !important;
}

/* ===== GRID & WRAPPER ===== */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
  position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.15;
}

em {
  font-style: italic;
  font-family: var(--serif);
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 12px;
}

.rule {
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin-top: 14px;
}

.sec-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head.center .rule {
  margin-left: auto;
  margin-right: auto;
}

.sec-head h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.sec-head p {
  color: var(--muted);
  font-size: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  color: var(--gold-deep);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn .ico {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.btn .ico svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.btn .arrow {
  transition: transform 0.25s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(1px);
  opacity: 0.85;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Button Sizes */
.btn-sm {
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  border-radius: var(--r-pill);
}

.btn-md {
  height: 48px;
  padding: 0 24px;
  font-size: 14.5px;
  border-radius: var(--r-pill);
}

.btn-lg {
  height: 54px;
  padding: 0 32px;
  font-size: 16px;
  border-radius: var(--r-pill);
}

/* Button Variants */
.btn-plain {
  background: transparent;
  padding-left: 6px;
  padding-right: 6px;
}

.btn-plain:hover {
  color: var(--gold);
}

.btn-gray {
  background: var(--cream-2);
  color: var(--gold-deep);
}

.btn-gray:hover {
  background: #e4d9c9;
  color: var(--navy);
}

.btn-tinted {
  background: rgba(187, 157, 99, 0.18);
  color: var(--gold-deep);
}

.btn-tinted:hover {
  background: rgba(187, 157, 99, 0.28);
}

.btn-filled {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--sh-gold);
}

.btn-filled:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--cream);
}

.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ===== PILLS & TAGS ===== */
.pill {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  display: inline-block;
}

.tag-up {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  display: inline-block;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 238, 233, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(244, 238, 233, 0.95);
  box-shadow: 0 4px 20px rgba(130, 115, 90, 0.05);
}

.bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 96px;
  transition: height 0.3s ease;
}

header.scrolled .bar {
  height: 76px;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-left .ig-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.nav-left .ig-link:hover {
  color: var(--gold);
}

.ico-ig {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  transition: transform 0.2s ease;
}

.nav-left .ig-link:hover .ico-ig {
  transform: scale(1.15);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
}

.brand .lm-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  transition: margin-bottom 0.3s ease, height 0.3s ease;
}

.brand .lm-logo img {
  height: 38px;
  width: auto;
  transition: height 0.3s ease;
}

header.scrolled .brand .lm-logo {
  margin-bottom: 2px;
}

header.scrolled .brand .lm-logo img {
  height: 26px;
}

.brand .name {
  font-family: var(--serif);
  font-size: 15.5px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--navy);
  transition: font-size 0.3s ease;
}

header.scrolled .brand .name {
  font-size: 13.5px;
}

.brand .sub {
  font-size: 7px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-top: 4px;
  transition: margin-top 0.3s ease, font-size 0.3s ease;
}

header.scrolled .brand .sub {
  font-size: 6px;
  margin-top: 2px;
}

.navactions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.navactions .tel {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ph-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.ph-burger i {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  display: flex;
  flex-direction: column;
  padding: 96px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.mobile-drawer nav a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
}

.mobile-drawer nav a span {
  color: rgba(244, 238, 233, 0.38);
}

.mobile-drawer nav a.active {
  color: var(--gold-soft);
}

.mobile-drawer .dfoot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 48px;
}

.mobile-drawer .dsoc {
  text-align: center;
  font-size: 12px;
  color: rgba(244, 238, 233, 0.6);
  letter-spacing: 0.05em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.hero h1 em {
  color: var(--gold);
}

.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-photo {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-photo .frame {
  position: relative;
  border-radius: 200px 200px var(--r-lg) var(--r-lg);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 3/4;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--sh-lg);
  z-index: 10;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-photo .ring {
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gold);
  border-radius: 214px 214px 44px 44px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 5;
  max-width: 408px;
  max-height: 538px;
  width: calc(100% + 28px);
  aspect-ratio: 3/4;
}

.hero-photo .badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.hero-photo .badge .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: var(--white);
}

.hero-photo .badge .dot img {
  width: 24px;
  height: 24px;
}

.hero-photo .badge b {
  font-size: 12.5px;
  color: var(--navy);
  display: block;
  line-height: 1.3;
}

.hero-photo .badge span {
  font-size: 10.5px;
  color: var(--muted);
}

.badge.b-top {
  top: 32px;
  left: -16px;
}

.badge.b-bot {
  bottom: 40px;
  right: -16px;
}

/* ===== TRUST STRIP ===== */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
}

.strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  flex-wrap: wrap;
}

.strip .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ico-trust {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ===== CARDS / MODALIDADES ===== */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.card .ph {
  height: 220px;
  background: var(--cream-2);
  overflow: hidden;
}

.card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .ph img {
  transform: scale(1.03);
}

.card .body {
  padding: 28px 28px 32px;
}

.card .body .tag-up {
  margin-bottom: 10px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.card .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.card .go .arrow {
  color: var(--gold-deep);
  transition: transform 0.2s ease;
}

.card:hover .go .arrow {
  transform: translateX(4px);
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 80px 48px;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.manifesto .leaf {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
}

.manifesto .eyebrow {
  color: var(--gold-soft);
}

.manifesto h2 {
  color: var(--cream);
  font-size: 40px;
  max-width: 780px;
  margin: 16px auto 20px;
  line-height: 1.15;
}

.manifesto h2 em {
  color: var(--gold-soft);
}

.manifesto p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(244, 238, 233, 0.72);
  font-size: 16.5px;
  line-height: 1.65;
}

.manifesto .rule {
  margin: 28px auto 0;
  background: var(--gold);
}

/* ===== ABOUT ===== */
.about .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  position: relative;
  display: grid;
  place-items: center;
}

.about-photo .circle {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--sh-md);
}

.about-photo .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo .ring {
  position: absolute;
  inset: -14px;
  border: 1.5px dashed var(--gold-soft);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
  max-width: 408px;
  max-height: 408px;
  width: calc(100% + 28px);
  aspect-ratio: 1;
}

.about-photo .seal {
  position: absolute;
  right: -10px;
  bottom: 12px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.25;
  box-shadow: var(--sh-sm);
  z-index: 15;
}

.about-photo .seal span {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.about-copy blockquote {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  line-height: 1.3;
  margin: 12px 0 20px;
}

.about-copy blockquote em {
  color: var(--gold-deep);
}

.about-copy .who {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--gold-deep);
  margin-bottom: 24px;
}

.about-copy .lead {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--ink);
}

.about-copy .lead.muted {
  color: var(--muted);
  font-size: 15px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream-2);
}

.faq .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.acc {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 18.5px;
  color: var(--navy);
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

.acc .pm {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  transition: all 0.25s ease;
}

.acc .pm::before,
.acc .pm::after {
  content: "";
  position: absolute;
  background: var(--gold);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.acc .pm::before {
  width: 9px;
  height: 1.5px;
}

.acc .pm::after {
  width: 1.5px;
  height: 9px;
  transition: all 0.25s ease;
}

details[open] .pm {
  background: var(--gold);
}

details[open] .pm::before,
details[open] .pm::after {
  background: var(--white);
}

details[open] .pm::after {
  transform: translate(-50%, -50%) scaleY(0);
}

details p {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 600px;
}

/* ===== GOOGLE REVIEWS CAROUSEL ===== */
.reviews-section {
  position: relative;
}

.google-badge-wrapper {
  display: flex;
  justify-content: center;
  margin: 12px 0 28px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--gold-soft);
}

.google-badge:active {
  transform: scale(0.97);
  box-shadow: var(--sh-sm);
  opacity: 0.9;
}

.google-badge .gb-logo {
  display: flex;
  align-items: center;
}

.google-badge .gb-logo svg {
  display: block;
}

.google-badge .gb-content {
  text-align: left;
  line-height: 1.35;
}

.google-badge .gb-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.google-badge .gb-text {
  font-size: 12px;
  color: var(--navy);
  font-family: var(--sans);
}

.google-badge .gb-text b {
  font-weight: 700;
}

.google-badge .gb-text span {
  color: var(--muted);
  font-size: 11.5px;
  margin-left: 2px;
}

.reviews-carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  perspective: 1000px; /* Perspectiva 3D para o efeito curvo */
}

.reviews-carousel-track {
  position: relative;
  width: 100%;
  height: 380px; /* Altura fixa para acomodar os cards absolutos */
  margin: 0 auto;
  transform-style: preserve-3d;
}

.review-slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: 580px;
  margin-left: -290px; /* Centraliza o slide no meio do contêiner */
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px;
  box-shadow: var(--sh-sm);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease, z-index 0.6s ease;
  cursor: pointer;
  user-select: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.review-slide:hover {
  box-shadow: var(--sh-md);
}

.review-slide.active {
  opacity: 1;
  filter: none;
  transform: scale(1.02);
  z-index: 10;
  box-shadow: var(--sh-lg);
}

.review-slide .r-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.review-slide .r-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-slide .r-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  font-family: var(--sans);
}

.review-slide .r-avatar.color-1 { background-color: var(--navy); }
.review-slide .r-avatar.color-2 { background-color: var(--gold); }
.review-slide .r-avatar.color-3 { background-color: var(--teal); }
.review-slide .r-avatar.color-4 { background-color: var(--blush); }
.review-slide .r-avatar.color-5 { background-color: var(--gold-deep); }

.review-slide .r-author b {
  display: block;
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--navy);
  line-height: 1.25;
}

.review-slide .r-author span {
  font-size: 11px;
  color: var(--muted);
  display: block;
}

.review-slide .r-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-slide .r-text {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
}

/* Controles do Carrossel */
.reviews-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-arrow:hover {
  background: var(--gold);
  color: var(--white);
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reviews-carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dot.active {
  width: 24px;
  border-radius: var(--r-pill);
  background: var(--gold-deep);
  opacity: 1;
}

/* Responsividade do Carrossel */
@media (max-width: 767px) {
  .reviews-carousel-track {
    height: 480px; /* Aumenta a altura no mobile pois o texto fica mais vertical */
  }
  .review-slide {
    width: 295px;
    margin-left: -147.5px;
    padding: 24px;
  }
  
  .review-slide .r-text {
    font-size: 13.5px;
  }
}

/* ===== FINAL CTA ===== */
.final .inner {
  background: var(--navy);
  border-radius: var(--r-lg);
  color: var(--cream);
  text-align: center;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.final .glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(187, 157, 99, 0.22), transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.final h2 {
  position: relative;
  color: var(--cream);
  font-size: 36px;
  margin-bottom: 16px;
}

.final h2 em {
  color: var(--gold-soft);
}

.final p {
  position: relative;
  color: rgba(244, 238, 233, 0.75);
  max-width: 480px;
  margin: 0 auto 30px;
  font-size: 16px;
}

/* ===== FORM / CAPTURA ===== */
.contact-form-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-form-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-item .ci {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.contact-info-item .ci svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-info-item .ct b {
  display: block;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-item .ct span {
  font-size: 14px;
  color: var(--muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 18px;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.field input {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--cream);
  width: 100%;
  transition: all 0.2s ease;
}

.field input::placeholder {
  color: #aaa39a;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(187, 157, 99, 0.18);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  color: rgba(244, 238, 233, 0.7);
  padding: 64px 0 32px;
}

footer .grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

footer .name {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}

footer .sub {
  font-size: 7px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-weight: 700;
}

footer h4 {
  font-size: 11.0px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
  font-weight: 700;
}

footer p, footer a {
  font-size: 12px;
  color: rgba(244, 238, 233, 0.65);
  margin-bottom: 8px;
  display: block;
}

footer a:hover {
  color: var(--white);
}

.footer-whatsapp-link, .footer-instagram-link {
  display: flex !important;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  text-decoration: none !important;
}

.footer-whatsapp-link svg, .footer-instagram-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.footer-whatsapp-link:hover svg, .footer-instagram-link:hover svg {
  transform: scale(1.15);
}

footer .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 11.5px;
  color: rgba(244, 238, 233, 0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== MOBILE CTA DOCK (FIXO) ===== */
.m-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 12px 18px;
  background: rgba(251, 250, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  display: none;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

.m-dock .btn-filled {
  height: 48px;
  font-size: 14.5px;
}

/* ===== MARKETING ANIMADO STYLING ===== */
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

.mkt-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.mkt-tile.dark {
  background: linear-gradient(155deg, var(--navy), var(--navy-deep));
  border-color: transparent;
  color: var(--cream);
}

.mkt-tile.cream {
  background: linear-gradient(155deg, var(--cream-2), var(--sand));
}

.mkt-tile .tl-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.mkt-tile.dark .tl-eyebrow {
  color: var(--gold-soft);
}

.mkt-tile .tl-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 6px;
}

.mkt-tile.dark .tl-title {
  color: var(--cream);
}

.mkt-tile .tl-sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.mkt-tile.dark .tl-sub {
  color: rgba(244, 238, 233, 0.6);
}

.mkt-tile .tl-foot {
  margin-top: auto;
  padding-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(17, 32, 58, 0.06);
}

.mkt-tile.dark .tl-foot {
  color: rgba(244, 238, 233, 0.55);
  border-top-color: rgba(255, 255, 255, 0.06);
}

.mkt-tile .tl-foot img {
  height: 18px;
  width: auto;
  opacity: 0.85;
}

/* SVG Chart Definitions */
.g-track {
  fill: none;
  stroke: rgba(17, 32, 58, 0.1);
  stroke-width: 11;
  stroke-linecap: round;
}

.mkt-tile.dark .g-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.g-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 11;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.g-needle-line {
  stroke: var(--navy);
  stroke-width: 3.5;
  stroke-linecap: round;
}

.mkt-tile.dark .g-needle-line {
  stroke: var(--cream);
}

.g-hub {
  fill: var(--gold);
}

.g-readout {
  margin-top: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.g-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--navy);
}

.mkt-tile.dark .g-num {
  color: var(--cream);
}

.g-unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.g-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-top: 4px;
  text-align: center;
  text-transform: uppercase;
}

.mkt-tile.dark .g-label {
  color: rgba(244, 238, 233, 0.6);
}

/* Gauges Row Layout */
.gauge-row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 14px 0 6px;
}

.mkt-gauge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mkt-gauge .g-svg {
  width: 100%;
  max-width: 140px;
  overflow: visible;
}

/* Rings */
.ring-row {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  margin: 20px 0 8px;
  flex-wrap: wrap;
}

.mkt-ring {
  position: relative;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mkt-ring .r-svg {
  width: 110px;
  height: 110px;
  display: block;
}

.r-track {
  fill: none;
  stroke: rgba(17, 32, 58, 0.09);
  stroke-width: 9;
}

.mkt-tile.dark .r-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.r-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 9;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.r-center {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  z-index: 5;
}

.mkt-tile.dark .r-center {
  color: var(--cream);
}

.r-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
}

.r-pct {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 1px;
}

.mkt-ring .r-label {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.mkt-ring .r-label span {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.7;
  text-transform: lowercase;
  letter-spacing: 0;
}

/* Line journey */
.mkt-line {
  position: relative;
  width: 100%;
  aspect-ratio: 320 / 180;
  margin: 14px 0 4px;
}

.mkt-line .l-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.l-grid line {
  stroke: rgba(17, 32, 58, 0.08);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.mkt-tile.dark .l-grid line {
  stroke: rgba(255, 255, 255, 0.12);
}

.l-area {
  fill: rgba(187, 157, 99, 0.14);
  transition: opacity 0.5s ease;
}

.l-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 0.1s linear;
}

.l-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  transform: translate(-50%, -50%);
  opacity: 0;
  box-shadow: var(--sh-sm);
  transition: opacity 0.3s ease;
}

.l-badge {
  position: absolute;
  transform: translate(-50%, -140%);
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--sh-sm);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mkt-tile.dark .l-badge {
  background: var(--gold);
  color: var(--navy-deep);
}

/* Crossover Indicator (A Virada) */
.mkt-cross {
  position: relative;
  width: 100%;
  aspect-ratio: 360 / 200;
  margin: 16px 0 4px;
}

.mkt-cross .c-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.c-axis {
  stroke: rgba(17, 32, 58, 0.18);
  stroke-width: 1.5;
}

.mkt-tile.dark .c-axis {
  stroke: rgba(255, 255, 255, 0.22);
}

.c-turn {
  stroke: var(--navy);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mkt-tile.dark .c-turn {
  stroke: var(--cream);
}

.cu-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 0.1s linear;
}

.cd-path {
  fill: none;
  stroke: var(--blush);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
  transition: stroke-dashoffset 0.1s linear;
}

.c-knot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  transform: translate(-50%, -50%);
  opacity: 0;
  box-shadow: var(--sh-sm);
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mkt-tile.dark .c-knot {
  border-color: var(--cream);
}

.cu-dot, .cd-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cu-dot {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(187, 157, 99, 0.25);
}

.cd-dot {
  background: var(--blush);
  box-shadow: 0 0 0 3px rgba(205, 162, 149, 0.25);
}

.c-turn-tag {
  position: absolute;
  transform: translate(-50%, -155%);
  background: var(--navy);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  box-shadow: var(--sh-sm);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mkt-tile.dark .c-turn-tag {
  background: var(--gold);
  color: var(--navy-deep);
}

.c-legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.c-legend span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.mkt-tile.dark .c-legend span {
  color: rgba(244, 238, 233, 0.7);
}

.c-legend span::before {
  content: "";
  width: 14px;
  height: 4px;
  border-radius: 2px;
}

.c-legend .cl-up::before {
  background: var(--gold);
}

.c-legend .cl-down::before {
  background: var(--blush);
}

.c-axislabels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.mkt-tile.dark .c-axislabels {
  color: rgba(244, 238, 233, 0.55);
}

/* Bars antes x depois */
.mkt-bars {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-around;
  height: 170px;
  margin: 16px 0 4px;
}

.mkt-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.mkt-bar .b-col {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  justify-content: center;
}

.b-fill {
  width: 24px;
  border-radius: 5px 5px 0 0;
  position: relative;
  display: flex;
  justify-content: center;
  transition: height 0.1s linear;
}

.b-from {
  background: rgba(17, 32, 58, 0.16);
}

.mkt-tile.dark .b-from {
  background: rgba(255, 255, 255, 0.18);
}

.b-to {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.b-cap {
  position: absolute;
  top: -18px;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
}

.mkt-tile.dark .b-cap {
  color: var(--cream);
}

.b-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.mkt-tile.dark .b-label {
  color: rgba(244, 238, 233, 0.6);
}

.bars-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}

.bars-legend span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.bars-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

/* Count cells strip */
.count-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.count-cell {
  text-align: center;
  padding: 8px 2px;
}

.count-cell .mkt-count {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  display: block;
}

.mkt-tile.dark .count-cell .mkt-count {
  color: var(--gold-soft);
}

.count-cell .c-cap {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.mkt-tile.dark .count-cell .c-cap {
  color: rgba(244, 238, 233, 0.6);
}

.count-cell + .count-cell {
  border-left: 1px solid var(--line);
}

.mkt-tile.dark .count-cell + .count-cell {
  border-color: rgba(255, 255, 255, 0.12);
}

/* Vitality Meter */
.mkt-meter {
  margin: 20px 0 6px;
}

.m-track {
  position: relative;
  height: 14px;
  border-radius: var(--r-pill);
  background: rgba(17, 32, 58, 0.1);
  margin: 32px 0 0;
}

.mkt-tile.dark .m-track {
  background: rgba(255, 255, 255, 0.14);
}

.m-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--blush), var(--gold));
  transition: width 0.1s linear;
}

.m-marker {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: var(--sh-sm);
  transition: left 0.1s linear;
}

.m-bubble {
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.mkt-tile.dark .m-bubble {
  background: var(--gold);
  color: var(--navy-deep);
}

.m-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.mkt-tile.dark .m-ends {
  color: rgba(244, 238, 233, 0.6);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVIDADE (MOBILE-FIRST) ===== */

/* Estilos MOBILE Padrão (< 768px) */
@media (max-width: 767px) {
  section {
    padding: 56px 0;
  }

  .sec-head h2 {
    font-size: 26px;
  }

  .sec-head {
    margin-bottom: 32px;
  }

  /* Header Mobile Colapso */
  .bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }

  .nav-left, .navactions {
    display: none;
  }

  .brand {
    align-items: flex-start;
    text-align: left;
    line-height: 1.1;
  }

  .brand .lm-logo {
    display: none;
  }

  .brand .name {
    font-size: 18px;
    letter-spacing: 0.14em;
  }

  .ph-burger {
    display: flex;
  }

  /* Hero */
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-photo .frame {
    max-width: 300px;
  }

  .hero-photo .ring {
    max-width: 324px;
    max-height: 428px;
    inset: -12px;
  }

  .badge.b-top {
    top: 16px;
    left: -8px;
  }

  .badge.b-bot {
    bottom: 24px;
    right: -8px;
  }

  /* Cards */
  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card .ph {
    height: 180px;
  }

  .card .body {
    padding: 20px 20px 24px;
  }

  /* Manifesto */
  .manifesto {
    padding: 56px 24px;
    margin: 0 16px;
  }

  .manifesto h2 {
    font-size: 26px;
  }

  .manifesto p {
    font-size: 15px;
  }

  /* About */
  .about .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-photo .circle {
    max-width: 280px;
  }

  .about-photo .ring {
    max-width: 304px;
    max-height: 304px;
    inset: -12px;
  }

  .about-copy blockquote {
    font-size: 22px;
  }

  /* FAQ */
  .faq .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  summary {
    font-size: 16.5px;
    padding: 16px 0;
  }

  /* Testimonial */
  .testi blockquote {
    font-size: 18.5px;
  }

  /* Form / Captura */
  .contact-form-section .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  footer .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  footer .copy {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  /* Dock Mobile - Ocultado para dar espaço ao botão flutuante */
  .m-dock {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }

  /* Marketing Animado Mobile */
  .mkt-grid {
    grid-template-columns: 1fr;
  }
  
  .col-4, .col-5, .col-6, .col-7, .col-8, .col-12 {
    grid-column: span 12;
  }

  .mkt-tile {
    min-height: 280px;
    padding: 24px 20px;
  }

  .gauge-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
  
  .mkt-gauge {
    min-width: 0;
  }

  .mkt-gauge .g-num {
    font-size: 20px;
  }

  .mkt-gauge .g-unit {
    font-size: 10px;
  }

  .mkt-gauge .g-label {
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  /* Empilhamento dos contadores no mobile */
  .count-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .count-cell {
    padding: 12px 2px;
  }

  .count-cell + .count-cell {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }

  .mkt-tile.dark .count-cell + .count-cell {
    border-top-color: rgba(255, 255, 255, 0.12);
  }
}

/* Estilos TABLET (768px a 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero .wrap, .about .wrap, .faq .wrap, .contact-form-section .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-photo .frame, .about-photo .circle {
    max-width: 340px;
  }

  .mkt-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-4, .col-5, .col-6, .col-7, .col-8 {
    grid-column: span 1;
  }

  .col-12 {
    grid-column: span 2;
  }
}

/* Estilos DESKTOP (1024px+) */
@media (min-width: 768px) {
  .brand .sub {
    display: block;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366; /* Verde oficial do WhatsApp */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s ease;
}

.wa-float.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.wa-float:hover {
  background-color: #20ba5a;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-pulse 3s infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ===== VIDEO OVERLAY HOVER EFFECTS ===== */
.video-wrapper:hover .video-overlay {
  background: rgba(30, 90, 84, 0.22) !important;
}

.video-wrapper:hover .play-btn {
  transform: scale(1.08) !important;
}

/* ===== FOCO CLÍNICO / DORES DO PACIENTE ===== */
.foco-section {
  background: var(--cream);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.foco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.foco-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.foco-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--gold-soft);
}

.foco-card .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  margin: 0 auto 24px;
  box-shadow: var(--sh-sm);
  transition: transform 0.4s ease;
}

.foco-card:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.05);
}

.foco-card .icon-wrapper svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.foco-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 500;
}

.foco-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.foco-details {
  margin-top: 16px;
  width: 100%;
}

.foco-summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  width: 100%;
  user-select: none;
  transition: color 0.2s ease;
}

.foco-summary::-webkit-details-marker {
  display: none;
}

.foco-summary:hover {
  color: var(--gold-deep);
}

.foco-summary .arrow {
  color: var(--gold-deep);
  transition: transform 0.3s ease;
  font-size: 12px;
}

.foco-details[open] .foco-summary .arrow {
  transform: rotate(180deg);
}

.foco-desc {
  font-size: 14.5px !important;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
  text-align: center;
  animation: focoFadeIn 0.4s ease;
}

@keyframes focoFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .foco-section {
    padding: 60px 0;
  }
  .foco-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .foco-card {
    padding: 28px;
  }
}

