/* =========================================================
   Gomes e Pereira — LP Direito Trabalhista
   ========================================================= */

:root {
  --primary: #173137;
  --primary-dark: #0e252b;
  --primary-deep: #08191d;
  --primary-light: #274950;

  --accent: #a5786f;
  --accent-dark: #8c645d;
  --accent-soft: #e8dcd8;

  --background: #f7f7f4;
  --background-alt: #eef1ef;
  --white: #ffffff;
  --text: #26383c;
  --text-light: #667579;
  --line: rgba(23, 49, 55, .12);

  --shadow-sm: 0 14px 36px rgba(8, 27, 32, .07);
  --shadow-md: 0 24px 60px rgba(8, 27, 32, .11);

  --radius: 18px;
  --radius-lg: 28px;

  --container: 1180px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  background: #000;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-light {
  background: var(--background);
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-head.centered {
  max-width: 810px;
}

.section-head h2,
.split-head h2,
.conversion-copy h2,
.dismissal-copy h2,
.about-copy h2,
.faq-intro h2,
.location-info h2,
.final-cta h2 {
  margin: 10px 0 18px;
  color: var(--primary);
  font-size: clamp(2rem, 3.45vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-head p,
.split-head > p,
.conversion-copy p,
.dismissal-copy p,
.about-copy p,
.faq-intro p,
.location-info p,
.final-cta p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #d7b3aa;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(165, 120, 111, .16);
}

/* Botões */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(165, 120, 111, .24);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 32px rgba(165, 120, 111, .32);
}

.btn-lg {
  min-height: 58px;
  padding-inline: 26px;
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.38);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(23,49,55,.09);
  background: rgba(250,250,247,.96);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(250,250,247,.985);
  box-shadow: 0 10px 34px rgba(8,27,32,.07);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 164px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #41565b;
  font-size: .88rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-location {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--text-light);
  font-size: .76rem;
  font-weight: 700;
}

.btn-header {
  min-height: 46px;
  padding: 10px 17px;
  color: #fff;
  background: var(--primary);
}

.btn-header:hover {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 5px;
  background: var(--primary);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 850px;
  padding-top: var(--header-h);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,25,29,.16), rgba(8,25,29,0)),
    url("/wp-content/themes/adv/assets/img/hero-dr-marcio.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: 0;
  background: linear-gradient(180deg, transparent, rgba(7,23,27,.34));
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  z-index: 0;
  left: -90px;
  bottom: 70px;
  width: 420px;
  height: 420px;
  opacity: .09;
  border: 1px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
}

.hero-pattern::before,
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 55px;
  border: 1px solid rgba(255,255,255,.5);
}

.hero-pattern::after {
  inset: 120px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(850px - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 710px;
  padding: 85px 0 116px;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 23px;
  color: #fff;
  font-size: clamp(3rem, 5.05vw, 4rem);
  font-weight: 700;
  line-height: .99;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.hero h1 span {
  color: #d7aaa0;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.80);
  font-size: 1.11rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-top: 28px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 600;
}

.hero-trust > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(215,170,160,.45);
  border-radius: 50%;
  color: #d7aaa0;
  font-size: .65rem;
}

.hero-name {
  position: absolute;
  right: 18px;
  bottom: 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 12px 0 12px 24px;
  text-align: right;
}

.hero-name::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: linear-gradient(90deg, rgba(8,25,29,.38), rgba(8,25,29,.58));
  backdrop-filter: blur(7px);
}

.hero-name span {
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
}

.hero-name small {
  margin-top: 2px;
  color: rgba(255,255,255,.60);
  font-size: .72rem;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 29px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 20px;
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 5px;
  background: var(--accent);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0%,100% { opacity: .35; transform: translate(-50%,0); }
  50% { opacity: 1; transform: translate(-50%,7px); }
}

/* Dores */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pain-card {
  position: relative;
  min-height: 286px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.65);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(165,120,111,.32);
  box-shadow: var(--shadow-sm);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(23,49,55,.15);
  font-size: .72rem;
  font-weight: 800;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid rgba(165,120,111,.28);
  border-radius: 12px;
  color: var(--accent-dark);
  background: #fff;
  font-size: 20px;
  font-weight: 800;
}

.pain-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.12rem;
  line-height: 1.3;
}

.pain-card p {
  margin: 0;
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.7;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 38px;
  padding: 23px 28px;
  border-radius: 15px;
  background: var(--background-alt);
}

.section-cta p {
  margin: 0;
  color: var(--text-light);
  font-size: .9rem;
}

.section-cta strong {
  color: var(--primary);
}

/* Conversion */
.conversion-strip {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  color: #fff;
  background: var(--primary-dark);
}

.conversion-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 70px;
  align-items: center;
}

.conversion-copy {
  max-width: 700px;
}

.conversion-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3.45vw, 3rem);
}

.conversion-copy p {
  max-width: 650px;
  color: rgba(255,255,255,.66);
}

.conversion-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.conversion-action .btn {
  width: 100%;
}

.conversion-action small {
  color: rgba(255,255,255,.48);
  font-size: .7rem;
}

.conversion-decor {
  position: absolute;
  border: 1px solid rgba(215,170,160,.11);
  transform: rotate(45deg);
}

.decor-one {
  right: -140px;
  top: -190px;
  width: 520px;
  height: 520px;
}

.decor-two {
  right: 170px;
  bottom: -220px;
  width: 390px;
  height: 390px;
}

/* Atuação */
.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 85px;
  align-items: end;
}

.split-head h2 {
  margin-bottom: 0;
}

.split-head > p {
  padding-bottom: 5px;
}

.practice-panel {
  padding: 36px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 20px 52px rgba(8,27,32,.045);
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.practice-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 55px;
  padding: 10px 20px 10px 0;
  border-bottom: 1px solid var(--line);
  color: #41565b;
  font-size: .92rem;
  font-weight: 650;
}

.practice-list li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.practice-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: .66rem;
}

/* Demissão */
.dismissal-section {
  background: #ebe8e2;
}

.dismissal-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: center;
}

.dismissal-copy p {
  max-width: 660px;
  margin-bottom: 28px;
}

.dismissal-card {
  position: relative;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

.dismissal-label {
  display: block;
  margin-bottom: 16px;
  color: #d7b3aa;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dismissal-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dismissal-card li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.85);
  font-size: .94rem;
}

.dismissal-card li:last-child {
  border-bottom: 0;
}

.dismissal-card li span {
  color: rgba(255,255,255,.29);
  font-size: .72rem;
  font-weight: 800;
}

/* Como funciona */
.section-dark {
  color: #fff;
  background: #0c2328;
}

.section-head-dark h2 {
  color: #fff;
}

.section-head-dark p {
  color: rgba(255,255,255,.57);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: center;
}

.step {
  position: relative;
  min-height: 205px;
  padding: 27px 28px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  background: rgba(255,255,255,.035);
}

.step-number {
  display: block;
  margin-bottom: 35px;
  color: #d7aaa0;
  font-size: .72rem;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .86rem;
}

.step-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(215,170,160,.18), rgba(215,170,160,.6), rgba(215,170,160,.18));
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

/* Sobre */
.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 90px;
  align-items: center;
}

.about-photo {
  position: relative;
  max-width: 480px;
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 7px 70px 7px 7px;
  background: var(--background-alt);
  box-shadow: var(--shadow-md);
}

.about-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 67%, rgba(8,27,32,.18));
}

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

.about-signature {
  position: absolute;
  right: -35px;
  bottom: 30px;
  z-index: 2;
  min-width: 260px;
  padding: 17px 22px;
  border-left: 3px solid var(--accent);
  color: #fff;
  background: rgba(14,37,43,.94);
  box-shadow: var(--shadow-sm);
}

.about-signature strong,
.about-signature span {
  display: block;
}

.about-signature strong {
  font-size: .84rem;
}

.about-signature span {
  margin-top: 2px;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
}

.about-copy {
  max-width: 610px;
}

.about-intro {
  margin-bottom: 14px !important;
}

.about-copy strong {
  color: var(--primary);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 30px 0;
}

.about-features > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--background);
}

.about-features > div > span {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  place-items: center;
  border-radius: 9px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: .9rem;
}

.about-features p {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  font-size: .76rem !important;
  line-height: 1.45;
}

.about-features strong {
  font-size: .84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: .89rem;
  font-weight: 800;
}

.text-link span {
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Localização */
.location-section {
  padding-top: 0;
  background: #fff;
}

.location-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 54px;
}

.location-info h2 {
  color: #fff;
}

.location-info .address {
  margin: 2px 0 15px;
  color: #fff;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.65;
}

.location-info .location-note {
  max-width: 420px;
  color: rgba(255,255,255,.57);
  font-size: .88rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.location-map {
  min-height: 510px;
  background: #d9dedc;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 510px;
  filter: grayscale(1) contrast(.95) sepia(.12);
}

/* FAQ */
.faq-section {
  background: var(--background-alt);
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 122px;
}

.faq-intro p {
  margin-bottom: 22px;
}

.faq-item {
  border-bottom: 1px solid rgba(23,49,55,.14);
}

.faq-question {
  width: 100%;
  min-height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 2px;
  color: var(--primary);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-question span {
  font-size: .98rem;
  font-weight: 750;
}

.faq-question i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(23,49,55,.18);
  border-radius: 50%;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: var(--primary);
  transform: translate(-50%,-50%);
  transition: transform .24s ease;
}

.faq-question i::after {
  transform: translate(-50%,-50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] i::after {
  transform: translate(-50%,-50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: var(--text-light);
  font-size: .89rem;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer > p {
  padding: 0 45px 24px 2px;
}

/* CTA final */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: #fff;
  background: var(--primary-deep);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.45rem, 4.5vw, 4.25rem);
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.62);
}

.final-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
  color: rgba(255,255,255,.42);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.final-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.final-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.final-glow-one {
  width: 640px;
  height: 640px;
  top: -490px;
  left: -120px;
  border: 1px solid rgba(165,120,111,.16);
  box-shadow:
    0 0 0 80px rgba(165,120,111,.025),
    0 0 0 160px rgba(165,120,111,.018);
}

.final-glow-two {
  width: 440px;
  height: 440px;
  right: -250px;
  bottom: -300px;
  border: 1px solid rgba(255,255,255,.08);
}

/* Footer */
.footer {
  color: rgba(255,255,255,.56);
  background: #061519;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr .8fr .55fr;
  gap: 70px;
  padding: 60px 0 46px;
}

.footer-brand img {
  width: 170px;
  padding: 8px;
  border-radius: 8px;
  background: #f7f7f4;
}

.footer-brand p {
  max-width: 350px;
  margin: 17px 0 0;
  font-size: .78rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-col > span {
  margin-bottom: 7px;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: .76rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.075);
  font-size: .67rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1e9f5a;
  box-shadow: 0 12px 30px rgba(13,74,42,.28);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.mobile-cta-bar {
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-delay {
  transition-delay: .12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Breakpoints
   ========================================================= */

@media (max-width: 1120px) {
  .desktop-nav,
  .header-location {
    display: none;
  }

  .hero {
    background-position: 56% center;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.1vw, 4.2rem);
  }

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

  .about-grid {
    gap: 60px;
  }

  .faq-layout {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 74px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    max-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: rgba(250,250,247,.995);
    box-shadow: 0 20px 35px rgba(8,27,32,.10);
    transition: max-height .32s ease, padding .32s ease;
  }

  .mobile-menu.open {
    max-height: 380px;
    padding: 16px 20px 22px;
  }

  .mobile-menu > a:not(.btn) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--primary);
    font-size: .9rem;
    font-weight: 700;
  }

  .mobile-menu .btn {
    margin-top: 15px;
  }

  .hero {
    min-height: 790px;
    background-position: 59% center;
  }

  .hero-inner {
    min-height: calc(790px - var(--header-h));
  }

  .hero-copy {
    max-width: 590px;
  }

  .hero-name {
    display: none;
  }

  .conversion-inner,
  .dismissal-grid,
  .about-grid,
  .location-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .conversion-inner {
    gap: 35px;
  }

  .conversion-action {
    max-width: 430px;
  }

  .split-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-line {
    width: 1px;
    height: 30px;
    margin-left: 36px;
    background: linear-gradient(180deg, rgba(215,170,160,.18), rgba(215,170,160,.6), rgba(215,170,160,.18));
  }

  .step {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 20px;
  }

  .about-photo {
    width: min(84%, 460px);
    margin-inline: auto;
  }

  .about-copy {
    max-width: 100%;
  }

  .location-info {
    padding: 48px 42px;
  }

  .location-map,
  .location-map iframe {
    min-height: 390px;
  }

  .faq-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-main .footer-col:last-child {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 70px;
  }

  body {
    padding-bottom: 67px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-header {
    min-height: var(--header-h);
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .brand img {
    width: 137px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .split-head h2,
  .conversion-copy h2,
  .dismissal-copy h2,
  .about-copy h2,
  .faq-intro h2,
  .location-info h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .eyebrow {
    font-size: .66rem;
    letter-spacing: .13em;
  }

  .hero {
    min-height: 785px;
    padding-top: var(--header-h);
    background:
      linear-gradient(180deg, rgba(5,22,26,.54) 0%, rgba(5,22,26,.38) 38%, rgba(5,22,26,.72) 76%, rgba(5,22,26,.92) 100%),
      url("/wp-content/themes/adv/assets/img/hero-dr-marcio-mobile.webp") 56% 19% / cover no-repeat;
  }

  .hero-inner {
    min-height: calc(785px - var(--header-h));
    align-items: flex-end;
  }

  .hero-copy {
    max-width: 100%;
    padding: 240px 0 84px;
  }

  .hero h1 {
    max-width: 100%;
    margin-top: 13px;
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 10.8vw, 3.25rem);
    line-height: 1.01;
  }

  .hero-lead {
    max-width: 95%;
    margin-bottom: 22px;
    color: rgba(255,255,255,.82);
    font-size: .94rem;
    line-height: 1.62;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 13px;
    margin-top: 20px;
  }

  .hero-trust > div:last-child {
    grid-column: 1 / -1;
  }

  .hero-scroll {
    display: none;
  }

  .hero-pattern {
    display: none;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pain-card {
    min-height: 0;
    padding: 25px;
  }

  .card-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 18px;
  }

  .section-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 22px;
    text-align: center;
  }

  .section-cta .btn {
    width: 100%;
  }

  .conversion-strip {
    padding: 64px 0;
  }

  .conversion-inner {
    gap: 26px;
  }

  .conversion-action {
    max-width: none;
  }

  .conversion-action .btn {
    width: 100%;
  }

  .practice-panel {
    padding: 23px 22px;
    border-radius: 20px;
  }

  .practice-list {
    grid-template-columns: 1fr;
  }

  .practice-list li {
    min-height: 51px;
    padding-right: 0;
    font-size: .87rem;
  }

  .practice-list li:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .dismissal-grid {
    gap: 38px;
  }

  .dismissal-copy .btn {
    width: 100%;
  }

  .dismissal-card {
    padding: 27px 25px;
    border-radius: 20px;
  }

  .dismissal-card li {
    min-height: 53px;
  }

  .step {
    padding: 24px;
  }

  .center-action .btn {
    width: 100%;
  }

  .about-grid {
    gap: 52px;
  }

  .about-photo {
    width: 92%;
  }

  .about-photo-frame {
    border-radius: 6px 46px 6px 6px;
  }

  .about-signature {
    right: -14px;
    bottom: 20px;
    min-width: 230px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .location-section {
    padding-top: 0;
  }

  .location-card {
    border-radius: 20px;
  }

  .location-info {
    padding: 38px 28px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

  .location-map,
  .location-map iframe {
    min-height: 320px;
  }

  .faq-layout {
    gap: 30px;
  }

  .faq-question {
    min-height: 71px;
    gap: 17px;
  }

  .faq-question span {
    font-size: .9rem;
  }

  .faq-item.active .faq-answer > p {
    padding-right: 28px;
  }

  .final-cta {
    padding: 82px 0;
  }

  .final-cta h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .final-cta .btn {
    width: 100%;
  }

  .final-meta {
    gap: 8px;
    font-size: .62rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0 34px;
  }

  .footer-main .footer-col:last-child {
    display: none;
  }

  .footer-bottom {
    min-height: 120px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  .footer-bottom > div {
    gap: 14px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.09);
    background: rgba(6,21,25,.97);
    backdrop-filter: blur(12px);
  }

  .mobile-cta-bar a {
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 9px;
    color: #fff;
    background: #1e9f5a;
    font-size: .88rem;
    font-weight: 800;
    box-shadow: 0 7px 20px rgba(13,74,42,.22);
  }

  .mobile-cta-bar svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand img {
    width: 125px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    min-height: calc(760px - var(--header-h));
  }

  .hero-copy {
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: .89rem;
  }

  .hero-trust {
    font-size: .72rem;
  }

  .btn-lg {
    min-height: 55px;
    padding-inline: 18px;
  }

  .about-signature {
    right: -8px;
    min-width: 215px;
    padding: 14px 17px;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1240px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-inner {
    min-height: calc(900px - var(--header-h));
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-name {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }


.about-features > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;

  border-radius: 10px;

  color: var(--accent-dark);
  background: var(--accent-soft);
}

.about-features > div > span i {
  font-size: 17px;
  line-height: 1;
}}

.trust-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;

  border: 1px solid rgba(215, 170, 160, 0.45);
  border-radius: 50%;

  color: #d7aaa0;
}

.trust-icon i {
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 450px) {
  .hero {
    min-height: 760px;

            padding-top: 41px;

    background-position:
      center,
      52% 100%;

    background-size:
      cover,
      auto 118%;

    background-repeat: no-repeat;
  }
  
  .hero h1{
    font-size: 34px;
  }

      .hero-copy {
        padding-top: 160px;
                padding-bottom: 45px;
      }
}

@media (max-width: 380px) {
  .section-head h2, .split-head h2, .conversion-copy h2, .dismissal-copy h2, .about-copy h2, .faq-intro h2, .location-info h2{
    font-size: 28px ;
  }

  .hero {
    min-height: 760px;

            padding-top: 41px;

    background-position:
      center,
      52% 100%;

    background-size:
      cover,
      auto 118%;

    background-repeat: no-repeat;
  }
  
  .hero h1{
    font-size: 30px;
  }

      .hero-copy {
        padding-top: 160px;
                padding-bottom: 45px;
      }
}

@media (max-width: 331px) {
  .section-head h2, .split-head h2, .conversion-copy h2, .dismissal-copy h2, .about-copy h2, .faq-intro h2, .location-info h2{
    font-size: 26px ;
  }

  .hero {
    min-height: 760px;

            padding-top: 41px;

    background-position:
      center,
      52% 100%;

    background-size:
      cover,
      auto 118%;

    background-repeat: no-repeat;
  }
  
  .hero h1{
    font-size: 28px;
  }

      .hero-copy {
        padding-top: 160px;
                padding-bottom: 45px;
      }
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));

    border-top: 1px solid rgba(255,255,255,.09);
    background: rgba(6,21,25,.97);
    backdrop-filter: blur(12px);

    /* ESCONDIDO INICIALMENTE */
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);

    transition:
      opacity .3s ease,
      transform .3s ease,
      visibility .3s ease;
  }

  .mobile-cta-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-cta-bar a {
    min-height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 9px;

    color: #fff;
    background: #1e9f5a;

    font-size: .88rem;
    font-weight: 800;

    box-shadow: 0 7px 20px rgba(13,74,42,.22);
  }

  .mobile-cta-bar svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
  }
}


/*===========================================
  FAIXA DESENVOLVIDO POR
===========================================*/

.faixa-desenvolvido {
  padding: 18px 0;
  background: white;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;

}

.desenvolvido-por {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 14px;
  color: black;
  font-size: 13px;
  font-weight: 800;
}

.desenvolvido-por:hover {
  color: #ffd34e;
}

.desenvolvido-por img {
  display: block;
  width: auto;
  max-width: 155px;
  max-height: 32px;
}

body::-webkit-scrollbar-track {
  background: black;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #fff2a6, var(--gold), #ff9f00);
  border-radius: 20px;
  border: 3px solid #FBF1EB;
}

body {
  cursor: url(https://lp.clinicalotus.es/wp-content/themes/lotus/img/cursor.png), pointer;
}
