@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/lexend-latin.woff2") format("woff2");
}

:root {
  --bg: #0b0711;
  --bg-soft: #120b1e;
  --bg-card: rgba(255, 255, 255, 0.075);
  --ink: #f8f4ff;
  --muted: #bdb0ce;
  --purple: #991dff;
  --purple-strong: #7f12dd;
  --cyan: #35e0ff;
  --line: rgba(255, 255, 255, 0.13);
  --white: #ffffff;
  --dark: #08050d;
  --radius-lg: 28px;
  --radius-xl: clamp(30px, 5vw, 64px);
  --container: min(100% - 48px, 1220px);
  --shadow: 0 28px 90px -48px rgba(0, 0, 0, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(153, 29, 255, 0.28), transparent 34rem),
    radial-gradient(circle at 84% 12%, rgba(53, 224, 255, 0.14), transparent 30rem),
    var(--bg);
  font-family: "Lexend", "Aptos", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 5, 15, 0.74);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(240px, 45vw);
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: rgba(248, 244, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.language-link {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-dropdown {
  position: relative;
  padding-block: 24px;
}

.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 285px;
  padding: 12px;
  background: rgba(16, 9, 28, 0.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  padding: 11px 12px;
  border-radius: 12px;
}

.nav-submenu a:hover {
  background: rgba(153, 29, 255, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), #c45cff);
  box-shadow: 0 22px 50px -28px rgba(153, 29, 255, 0.88);
}

.button-light {
  color: var(--dark);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding-block: clamp(70px, 8vw, 118px) clamp(64px, 7vw, 98px);
}

.page-hero {
  padding-block: clamp(74px, 8vw, 122px);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 10% -10% auto;
  height: 280px;
  background: linear-gradient(90deg, transparent, rgba(153, 29, 255, 0.16), transparent);
  filter: blur(30px);
  pointer-events: none;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 870px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5.8vw, 50px);
  line-height: 1.3;
  letter-spacing: -0.062em;
}

.hero h1 {
  max-width: 870px;
  line-height: 1.3;
  letter-spacing: -0.062em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 54px);
  line-height: 1.3;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0;
  line-height: 1.3;
}

.hero-copy > p:not(.eyebrow),
.page-hero-copy > p:not(.eyebrow),
.split-heading > p,
.story-copy p,
.team-preview-grid > div > p,
.final-cta p,
.service-hero-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 18px 13px 15px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(53, 224, 255, 0.2), transparent 42%),
    linear-gradient(135deg, #25d366, #128c7e);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 20px 50px -22px rgba(37, 211, 102, 0.78);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) translateZ(0);
  filter: saturate(1.08);
  box-shadow: 0 26px 58px -24px rgba(37, 211, 102, 0.9);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: currentColor;
}

body.menu-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
}

.hero-visual {
  position: relative;
  min-height: clamp(430px, 44vw, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 35% 30%, rgba(153, 29, 255, 0.44), transparent 24rem),
    #10091c;
  box-shadow: var(--shadow);
}

.hero-media,
.page-hero-media,
.case-hero-media {
  position: relative;
  min-height: clamp(370px, 39vw, 560px);
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #10091c;
  box-shadow: var(--shadow);
}

.hero-media::after,
.page-hero-media::after,
.case-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    radial-gradient(circle at 70% 20%, rgba(153, 29, 255, 0.16), transparent 18rem);
  pointer-events: none;
}

.hero-media img,
.page-hero-media img,
.case-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.page-hero-media img[src$=".svg"],
.page-hero-media img[src*=".svg?"] {
  object-fit: contain;
  padding: clamp(10px, 1.8vw, 18px);
}

.page-hero-team-media {
  position: relative;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(12px, 2vw, 18px);
  min-height: clamp(370px, 39vw, 560px);
  overflow: hidden;
  margin: 0;
  padding: clamp(12px, 1.8vw, 18px);
  background:
    radial-gradient(circle at 18% 18%, rgba(53, 224, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 80% 12%, rgba(153, 29, 255, 0.26), transparent 18rem),
    #10091c;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.page-hero-team-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 38%);
  pointer-events: none;
}

.page-hero-team-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: calc(clamp(370px, 39vw, 560px) - clamp(24px, 3.6vw, 36px));
  object-fit: cover;
  border-radius: clamp(22px, 3vw, 42px);
}

.page-hero-team-media img:first-child {
  transform: translateY(26px);
}

.page-hero-team-media img:last-child {
  transform: translateY(-18px);
}

.page-hero-team-media--solo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-team-media.page-hero-team-media--solo img {
  width: min(100%, 460px);
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  margin: auto;
}

.page-hero-team-media.page-hero-team-media--solo img:first-child {
  transform: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.orb-one {
  width: 260px;
  height: 260px;
  top: 48px;
  right: 34px;
  background: radial-gradient(circle, rgba(153, 29, 255, 0.92), rgba(153, 29, 255, 0.08));
}

.orb-two {
  width: 180px;
  height: 180px;
  right: 190px;
  bottom: 70px;
  background: radial-gradient(circle, rgba(53, 224, 255, 0.72), rgba(53, 224, 255, 0.05));
}

.hero-dashboard {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 28px;
  background: rgba(7, 4, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
}

.hero-dashboard span,
.service-hero-card span,
.case-card span,
.about-panel span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-dashboard strong {
  display: block;
  margin-block: 6px;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.88;
}

.hero-dashboard p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-chip {
  position: absolute;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.chip-a {
  top: 82px;
  left: 38px;
}

.chip-b {
  top: 46%;
  right: 30px;
}

.chip-c {
  left: 62px;
  bottom: 180px;
}

.client-logos-band {
  position: relative;
  overflow: hidden;
  margin-top: clamp(48px, 6vw, 84px);
  padding-block: 8px 0;
}

.shared-module-section--logos {
  padding-block: clamp(44px, 6vw, 76px);
}

.client-logos-band--standalone {
  margin-top: 0;
  padding-block: 0;
}

.client-logos-band--light .client-logos-title {
  color: #5e596f;
}

.client-logos-title {
  margin: 0 0 16px;
  color: rgba(248, 244, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.client-logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: client-logo-scroll 46s linear infinite;
  will-change: transform;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-set {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: 9px;
}

.client-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(142px, 15vw, 214px);
  height: clamp(74px, 7vw, 96px);
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 20px 60px -48px rgba(0, 0, 0, 0.8);
}

.client-logos-band--light .client-logo-item {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(20, 14, 32, 0.08);
  box-shadow: 0 20px 60px -48px rgba(18, 12, 32, 0.18);
}

.client-logo-item img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.client-logo-item--invert img {
  filter: brightness(0) invert(1);
}

.client-logos-band--light .client-logo-item--invert img {
  filter: grayscale(1);
  opacity: 0.72;
}

@keyframes client-logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    animation: none;
  }
}

.stats-band {
  padding-block: 22px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.stats-grid strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-block: clamp(72px, 8vw, 124px);
}

.section,
.stats-band,
.final-cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.section-muted {
  background:
    radial-gradient(circle at 8% 16%, rgba(153, 29, 255, 0.14), transparent 28rem),
    rgba(255, 255, 255, 0.035);
}

.section-surface-light {
  background: #ffffff;
  border-block: 1px solid rgba(20, 14, 32, 0.08);
}

.section-surface-light .eyebrow {
  color: #6d28d9;
}

.section-surface-light h2,
.section-surface-light h3,
.section-surface-light p,
.section-surface-light summary,
.section-surface-light li {
  color: #16131f;
}

.section-surface-light .split-heading > p,
.section-surface-light .section-heading > p:last-child,
.section-surface-light .service-highlight-card p:last-child,
.section-surface-light .service-spotlight-panel > p:last-of-type,
.section-surface-light .faq-item p {
  color: #5e596f;
}

.section-surface-soft {
  background:
    radial-gradient(circle at 10% 12%, rgba(109, 40, 217, 0.08), transparent 24rem),
    radial-gradient(circle at 92% 10%, rgba(53, 224, 255, 0.1), transparent 20rem),
    linear-gradient(180deg, #fcfbff 0%, #f6f3fb 100%);
  border-block: 1px solid rgba(20, 14, 32, 0.07);
}

.section-surface-soft .eyebrow {
  color: #6d28d9;
}

.section-surface-soft h2,
.section-surface-soft h3,
.section-surface-soft p,
.section-surface-soft summary,
.section-surface-soft li {
  color: #16131f;
}

.section-surface-soft .split-heading > p,
.section-surface-soft .section-heading > p:last-child,
.section-surface-soft .faq-item p {
  color: #5e596f;
}

.section-surface-light,
.section-surface-soft,
.service-page--site-para-advogados .section-muted {
  --surface-ink: #16131f;
  --surface-muted: #5e596f;
  --surface-line: rgba(20, 14, 32, 0.08);
  --surface-card: rgba(255, 255, 255, 0.96);
  --surface-shadow: 0 24px 72px -54px rgba(18, 12, 32, 0.18);
}

.section-surface-light .service-card,
.section-surface-light .case-card,
.section-surface-light .detail-card,
.section-surface-light .promise-card,
.section-surface-light .value-card,
.section-surface-light .team-card,
.section-surface-light .team-profile,
.section-surface-light .contact-card,
.section-surface-light .about-panel,
.section-surface-light .stats-grid article,
.section-surface-soft .service-card,
.section-surface-soft .case-card,
.section-surface-soft .detail-card,
.section-surface-soft .promise-card,
.section-surface-soft .value-card,
.section-surface-soft .team-card,
.section-surface-soft .team-profile,
.section-surface-soft .contact-card,
.section-surface-soft .about-panel,
.section-surface-soft .stats-grid article,
.service-page--site-para-advogados .section-muted .service-card,
.service-page--site-para-advogados .section-muted .case-card,
.service-page--site-para-advogados .section-muted .detail-card,
.service-page--site-para-advogados .section-muted .promise-card,
.service-page--site-para-advogados .section-muted .value-card,
.service-page--site-para-advogados .section-muted .team-card,
.service-page--site-para-advogados .section-muted .team-profile,
.service-page--site-para-advogados .section-muted .contact-card,
.service-page--site-para-advogados .section-muted .about-panel,
.service-page--site-para-advogados .section-muted .stats-grid article {
  background: var(--surface-card);
  border-color: var(--surface-line);
  box-shadow: var(--surface-shadow);
}

.section-surface-light .service-card p,
.section-surface-light .case-card p,
.section-surface-light .detail-card p,
.section-surface-light .promise-card p,
.section-surface-light .value-card p,
.section-surface-light .team-card p,
.section-surface-light .team-profile p,
.section-surface-light .stats-grid span,
.section-surface-light .team-preview-grid > div > p,
.section-surface-soft .service-card p,
.section-surface-soft .case-card p,
.section-surface-soft .detail-card p,
.section-surface-soft .promise-card p,
.section-surface-soft .value-card p,
.section-surface-soft .team-card p,
.section-surface-soft .team-profile p,
.section-surface-soft .stats-grid span,
.section-surface-soft .team-preview-grid > div > p,
.service-page--site-para-advogados .section-muted .service-card p,
.service-page--site-para-advogados .section-muted .case-card p,
.service-page--site-para-advogados .section-muted .detail-card p,
.service-page--site-para-advogados .section-muted .promise-card p,
.service-page--site-para-advogados .section-muted .value-card p,
.service-page--site-para-advogados .section-muted .team-card p,
.service-page--site-para-advogados .section-muted .team-profile p,
.service-page--site-para-advogados .section-muted .stats-grid span,
.service-page--site-para-advogados .section-muted .team-preview-grid > div > p {
  color: var(--surface-muted);
}

.section-surface-light .service-card h3,
.section-surface-light .case-card h2,
.section-surface-light .case-card h3,
.section-surface-light .detail-card h2,
.section-surface-light .value-card h2,
.section-surface-light .team-card h3,
.section-surface-light .team-profile h2,
.section-surface-light .stats-grid strong,
.section-surface-soft .service-card h3,
.section-surface-soft .case-card h2,
.section-surface-soft .case-card h3,
.section-surface-soft .detail-card h2,
.section-surface-soft .value-card h2,
.section-surface-soft .team-card h3,
.section-surface-soft .team-profile h2,
.section-surface-soft .stats-grid strong,
.service-page--site-para-advogados .section-muted .service-card h3,
.service-page--site-para-advogados .section-muted .case-card h2,
.service-page--site-para-advogados .section-muted .case-card h3,
.service-page--site-para-advogados .section-muted .detail-card h2,
.service-page--site-para-advogados .section-muted .value-card h2,
.service-page--site-para-advogados .section-muted .team-card h3,
.service-page--site-para-advogados .section-muted .team-profile h2,
.service-page--site-para-advogados .section-muted .stats-grid strong {
  color: var(--surface-ink);
}

.section-surface-light .team-slider__button,
.section-surface-soft .team-slider__button,
.service-page--site-para-advogados .section-muted .team-slider__button {
  color: var(--surface-ink);
  background: rgba(20, 14, 32, 0.04);
  border-color: rgba(20, 14, 32, 0.1);
}

.section-surface-light .team-slider__button:hover,
.section-surface-soft .team-slider__button:hover,
.service-page--site-para-advogados .section-muted .team-slider__button:hover {
  background: rgba(109, 40, 217, 0.08);
  border-color: rgba(109, 40, 217, 0.16);
}

.section-dark,
.section-panel {
  background: linear-gradient(135deg, #10081b, #08050d);
  border-block: 1px solid var(--line);
}

.split-heading,
.story-grid,
.faq-grid,
.process-grid,
.team-preview-grid,
.service-map-grid,
.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.split-heading {
  margin-bottom: 34px;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

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

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

.service-card,
.case-card,
.detail-card,
.promise-card,
.value-card,
.team-profile,
.contact-card,
.about-panel,
.service-hero-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px -58px rgba(0, 0, 0, 0.82);
}

.service-card {
  min-height: 285px;
  padding: 25px;
}

.service-card::before,
.case-card::before,
.detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(153, 29, 255, 0.26), transparent 15rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover::before,
.case-card:hover::before,
.detail-card:hover::before {
  opacity: 1;
}

.card-index {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 46px;
  color: #a11afb;
  background: rgba(153, 29, 255, 0.2);
  border: 1px solid rgba(153, 29, 255, 0.44);
  border-radius: 14px;
  font-weight: 950;
}

.service-card h3,
.case-card h3,
.case-card h2,
.detail-card h2,
.value-card h2,
.team-profile h2 {
  position: relative;
  font-size: 24px;
  line-height: 1.08;
}

.service-card p,
.case-card p,
.detail-card p,
.value-card p,
.team-profile p,
.faq-item p,
.service-map-grid span {
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.card-link,
.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 950;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 56px 0.45fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.process-list span,
.value-card span {
  color: var(--cyan);
  font-weight: 950;
}

.process-list h3,
.process-list p {
  margin-bottom: 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  padding: 26px;
}

.case-image-link,
.case-card > span,
.case-card h2,
.case-card h3,
.case-card p,
.case-card div,
.case-card .text-link {
  position: relative;
}

.case-image-link {
  display: block;
  margin: -8px -8px 22px;
  overflow: hidden;
  border-radius: 24px;
}

.case-card > .case-image {
  margin: -8px -8px 22px;
  border-radius: 24px;
}

.case-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #12081d;
  transition: transform 360ms ease;
}

.case-card:hover .case-image {
  transform: scale(1.035);
}

.case-card div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.case-card small {
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.team-preview-grid {
  align-items: center;
}

.team-preview-grid > * {
  min-width: 0;
}

.team-preview-grid > div:first-child {
  display: grid;
  gap: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.team-slider {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.team-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.team-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.team-slider__button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.team-slider__viewport {
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.team-slider__viewport::-webkit-scrollbar {
  display: none;
}

.team-slider__track {
  display: flex;
  gap: 18px;
  width: max-content;
}

.team-slide {
  flex: 0 0 clamp(250px, 23vw, 322px);
  scroll-snap-align: start;
}

.team-card,
.team-profile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.team-card {
  padding: 14px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
}

.team-card h3,
.team-card p {
  margin: 14px 8px 0;
}

.team-card p {
  color: var(--muted);
}

.story-copy {
  display: grid;
  gap: 14px;
}

.about-panel {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px);
}

.about-panel strong {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
}

.team-profile {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
}

.team-profile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
}

.team-profile span {
  display: block;
  margin-block: 8px 14px;
  color: var(--cyan);
  font-weight: 900;
}

.values-grid,
.promise-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card,
.promise-card,
.detail-card {
  padding: 26px;
}

.promise-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.promise-card span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(53, 224, 255, 0.92);
}

.promise-card h3 {
  font-size: 18px;
}

.service-highlight-card {
  padding: clamp(26px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(153, 29, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 22px 70px -55px rgba(0, 0, 0, 0.85);
}

.service-highlight-card h2 {
  margin-block: 10px 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.service-highlight-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-surface-light .service-highlight-card {
  background:
    linear-gradient(140deg, rgba(109, 40, 217, 0.05), rgba(255, 255, 255, 0.92)),
    #ffffff;
  border-color: rgba(20, 14, 32, 0.08);
  box-shadow: 0 28px 70px -58px rgba(18, 12, 32, 0.22);
}

.service-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-hero-point {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: #1f1831;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 14, 32, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 44px -34px rgba(18, 12, 32, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.service-hero-floating-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 18px 18px 16px;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 14, 32, 0.08);
  border-radius: 24px;
  box-shadow: 0 30px 80px -50px rgba(18, 12, 32, 0.28);
  backdrop-filter: blur(10px);
}

.service-hero-floating-card .eyebrow {
  color: #6d28d9;
}

.service-hero-floating-card strong {
  display: block;
  margin-top: 8px;
  color: #16131f;
  font-size: 1rem;
  line-height: 1.35;
}

.service-hero-floating-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.service-hero-floating-card li {
  position: relative;
  padding-left: 18px;
  color: #5e596f;
  font-size: 14px;
  line-height: 1.55;
}

.service-hero-floating-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6d28d9, #35e0ff);
}

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

.service-hero-card {
  padding: clamp(30px, 5vw, 52px);
}

.seo-copy-card {
  max-width: 1060px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(153, 29, 255, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 90px -70px rgba(0, 0, 0, 0.9);
}

.seo-copy-card--with-media {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(24px, 4vw, 44px);
}

.seo-copy-content {
  max-width: 540px;
}

.seo-copy-card h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 48px);
}

.seo-copy-card p:last-child {
  max-width: 930px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.seo-copy-media {
  position: relative;
  min-height: clamp(300px, 34vw, 430px);
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px -62px rgba(0, 0, 0, 0.55);
}

.seo-copy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-timeline-heading {
  margin-bottom: 34px;
}

.service-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 40, 217, 0.12), rgba(53, 224, 255, 0.28), rgba(109, 40, 217, 0.12));
  pointer-events: none;
}

.service-timeline-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 14, 32, 0.08);
  border-radius: 30px;
  box-shadow: 0 26px 70px -54px rgba(18, 12, 32, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 84px -54px rgba(18, 12, 32, 0.24);
  border-color: rgba(109, 40, 217, 0.16);
}

.service-timeline-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.service-timeline-step {
  color: #8c7fb0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #5b34cf;
  background: linear-gradient(145deg, rgba(109, 40, 217, 0.1), rgba(53, 224, 255, 0.08));
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-timeline-icon svg {
  width: 24px;
  height: 24px;
}

.service-timeline-card h3 {
  margin-bottom: 10px;
  color: #16131f;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.35;
}

.service-timeline-card p {
  margin-bottom: 0;
  color: #5e596f;
  line-height: 1.7;
}

.service-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
}

.service-spotlight-media {
  margin: 0;
}

.service-spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 80px -58px rgba(0, 0, 0, 0.88);
}

.service-spotlight-panel {
  padding: clamp(28px, 4vw, 40px);
  background: rgba(7, 8, 16, 0.74);
  border: 1px solid var(--line);
  border-radius: 32px;
}

.section-surface-light .service-spotlight-panel {
  background:
    linear-gradient(145deg, rgba(109, 40, 217, 0.04), rgba(248, 247, 251, 0.98)),
    #f8f7fb;
  border-color: rgba(20, 14, 32, 0.08);
}

.service-spotlight-panel h2 {
  margin-block: 10px 16px;
}

.service-spotlight-panel > p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
}

.service-spotlight-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.service-spotlight-list li {
  position: relative;
  padding-left: 22px;
}

.service-spotlight-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(53, 224, 255, 0.6);
}

.related-services-grid .service-card {
  min-height: 250px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-hero-card h2 {
  margin-block: 18px;
  font-size: clamp(2rem, 4vw, 46px);
}

.service-map-grid article {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.service-map-grid strong {
  font-size: 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.section-surface-light .faq-item {
  background: #f8f7fb;
  border-color: rgba(20, 14, 32, 0.08);
}

.faq-item summary {
  padding: 20px;
  font-weight: 500;
  cursor: pointer;
}

.faq-item p {
  padding: 0 20px 20px;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  padding: 14px 15px;
}

.contact-card textarea {
  resize: vertical;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.contact-layout .section-heading p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.final-cta {
  padding-block: clamp(62px, 7vw, 98px);
}

.final-cta h2 {
  color: var(--white);
}

.service-page .page-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
}

.service-page .page-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
}

.service-page .service-highlight-card h2,
.service-page .service-spotlight-panel h2,
.service-page .section-heading h2,
.service-page .split-heading h2,
.service-page .seo-copy-card h2,
.service-page .faq-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.service-page .detail-card h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.35;
}

.service-page .promise-card h3 {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.35;
}

.service-page--site-para-advogados .page-hero {
  background:
    radial-gradient(circle at 0% 10%, rgba(109, 40, 217, 0.1), transparent 26rem),
    radial-gradient(circle at 96% 0%, rgba(53, 224, 255, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border-bottom: 1px solid rgba(20, 14, 32, 0.07);
}

.service-page--site-para-advogados .page-hero::before {
  inset: 0 auto auto 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(109, 40, 217, 0.08));
  filter: blur(40px);
}

.service-page--site-para-advogados .page-hero-copy .eyebrow,
.service-page--site-para-advogados .service-seo-intro .eyebrow {
  color: #6d28d9;
}

.service-page--site-para-advogados .page-hero-copy h1 {
  max-width: 700px;
  color: #16131f;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.service-page--site-para-advogados .page-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: #5e596f;
  font-size: 17px;
}

.service-page--site-para-advogados .page-hero .button-ghost {
  color: #16131f;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(20, 14, 32, 0.1);
}

.service-page--site-para-advogados .page-hero-media {
  border-color: rgba(20, 14, 32, 0.08);
  background: #ffffff;
  box-shadow: 0 30px 90px -56px rgba(18, 12, 32, 0.26);
  animation: serviceHeroFloat 12s ease-in-out infinite;
}

.service-page--site-para-advogados .page-hero-media::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.08) 100%);
}

.service-page--site-para-advogados .service-seo-intro {
  background:
    radial-gradient(circle at 10% 10%, rgba(109, 40, 217, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  border-block: 1px solid rgba(20, 14, 32, 0.07);
}

.service-page--site-para-advogados .seo-copy-card,
.service-page--site-para-advogados .promise-card,
.service-page--site-para-advogados .detail-card,
.service-page--site-para-advogados .faq-item,
.service-page--site-para-advogados .related-services-grid .service-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(20, 14, 32, 0.08);
  box-shadow: 0 24px 72px -54px rgba(18, 12, 32, 0.18);
}

.service-page--site-para-advogados .seo-copy-card {
  background:
    linear-gradient(145deg, rgba(109, 40, 217, 0.06), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.service-page--site-para-advogados .seo-copy-media {
  border-color: rgba(20, 14, 32, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 72px -54px rgba(18, 12, 32, 0.18);
}

.service-page--site-para-advogados .seo-copy-card h2,
.service-page--site-para-advogados .section-heading h2,
.service-page--site-para-advogados .split-heading h2,
.service-page--site-para-advogados .service-spotlight-panel h2,
.service-page--site-para-advogados .faq-grid h2,
.service-page--site-para-advogados .service-card h3,
.service-page--site-para-advogados .detail-card h2,
.service-page--site-para-advogados .promise-card h3 {
  color: #16131f;
}

.service-page--site-para-advogados .seo-copy-card p:last-child,
.service-page--site-para-advogados .split-heading > p,
.service-page--site-para-advogados .detail-card p,
.service-page--site-para-advogados .faq-item p,
.service-page--site-para-advogados .service-card p {
  color: #5e596f;
}

.service-page--site-para-advogados .promise-grid {
  margin-top: 18px;
}

.service-page--site-para-advogados .section-muted {
  background:
    radial-gradient(circle at 12% 10%, rgba(109, 40, 217, 0.08), transparent 26rem),
    linear-gradient(180deg, #faf8ff 0%, #f5f1fb 100%);
  border-block: 1px solid rgba(20, 14, 32, 0.07);
}

.service-page--site-para-advogados .section-muted .eyebrow {
  color: #6d28d9;
}

.service-page--site-para-advogados .section-muted h2,
.service-page--site-para-advogados .section-muted h3,
.service-page--site-para-advogados .section-muted p,
.service-page--site-para-advogados .section-muted summary,
.service-page--site-para-advogados .section-muted li {
  color: #16131f;
}

.service-page--site-para-advogados .service-highlight-card h2,
.service-page--site-para-advogados .service-spotlight-panel h2,
.service-page--site-para-advogados .section-heading h2,
.service-page--site-para-advogados .split-heading h2,
.service-page--site-para-advogados .seo-copy-card h2,
.service-page--site-para-advogados .faq-grid h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.25;
}

.service-page--site-para-advogados .faq-grid > div:first-child {
  position: sticky;
  top: 112px;
  align-self: start;
}

.service-page--site-para-estetica .page-hero {
  background:
    radial-gradient(circle at 2% 10%, rgba(233, 171, 153, 0.22), transparent 24rem),
    radial-gradient(circle at 100% 0%, rgba(216, 172, 195, 0.18), transparent 22rem),
    linear-gradient(180deg, #fffdfc 0%, #faf4f0 100%);
  border-bottom: 1px solid rgba(44, 30, 34, 0.08);
}

.service-page--site-para-estetica .page-hero::before {
  inset: 0 auto auto 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(233, 171, 153, 0.14));
  filter: blur(42px);
}

.service-page--site-para-estetica .page-hero-copy .eyebrow,
.service-page--site-para-estetica .service-seo-intro .eyebrow,
.service-page--site-para-estetica .section-muted .eyebrow {
  color: #b26f63;
}

.service-page--site-para-estetica .page-hero-copy h1 {
  max-width: 640px;
  color: #241b1d;
  font-size: clamp(1.95rem, 3.3vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.048em;
}

.service-page--site-para-estetica .page-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: #625458;
  font-size: 17px;
}

.service-page--site-para-estetica .page-hero .button-primary {
  box-shadow: 0 24px 64px -42px rgba(165, 99, 83, 0.45);
}

.service-page--site-para-estetica .page-hero .button-ghost {
  color: #241b1d;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(44, 30, 34, 0.12);
}

.service-page--site-para-estetica .page-hero-media {
  border-color: rgba(44, 30, 34, 0.08);
  background: linear-gradient(180deg, #fffdfc 0%, #fbf1ed 100%);
  box-shadow: 0 36px 92px -60px rgba(58, 32, 37, 0.22);
  animation: serviceHeroFloat 12s ease-in-out infinite;
}

.service-page--site-para-estetica .page-hero-media::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.1) 100%);
}

.service-page--site-para-estetica .service-hero-point {
  color: #5f4b4e;
  background: rgba(255, 250, 248, 0.84);
  border-color: rgba(214, 179, 169, 0.72);
}

.service-page--site-para-estetica .service-hero-floating-card {
  background: rgba(255, 252, 251, 0.96);
  border-color: rgba(214, 179, 169, 0.74);
  box-shadow: 0 28px 80px -58px rgba(58, 32, 37, 0.24);
}

.service-page--site-para-estetica .service-hero-floating-card .eyebrow {
  color: #b26f63;
}

.service-page--site-para-estetica .service-hero-floating-card strong {
  color: #241b1d;
}

.service-page--site-para-estetica .service-hero-floating-card li {
  color: #625458;
}

.service-page--site-para-estetica .service-hero-floating-card li::before {
  background: linear-gradient(135deg, #efcabf, #dba7a0);
}

.service-page--site-para-estetica .service-seo-intro {
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 171, 153, 0.12), transparent 24rem),
    linear-gradient(180deg, #fffdfc 0%, #fdf8f5 100%);
  border-block: 1px solid rgba(44, 30, 34, 0.07);
}

.service-page--site-para-estetica .seo-copy-card,
.service-page--site-para-estetica .promise-card,
.service-page--site-para-estetica .detail-card,
.service-page--site-para-estetica .faq-item,
.service-page--site-para-estetica .related-services-grid .service-card,
.service-page--site-para-estetica .service-highlight-card,
.service-page--site-para-estetica .service-spotlight-panel {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(44, 30, 34, 0.08);
  box-shadow: 0 24px 72px -54px rgba(58, 32, 37, 0.16);
}

.service-page--site-para-estetica .seo-copy-card {
  background:
    linear-gradient(145deg, rgba(239, 202, 191, 0.28), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.service-page--site-para-estetica .seo-copy-media {
  border-color: rgba(44, 30, 34, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 72px -54px rgba(58, 32, 37, 0.16);
}

.service-page--site-para-estetica .seo-copy-card h2,
.service-page--site-para-estetica .section-heading h2,
.service-page--site-para-estetica .split-heading h2,
.service-page--site-para-estetica .service-spotlight-panel h2,
.service-page--site-para-estetica .faq-grid h2,
.service-page--site-para-estetica .service-card h3,
.service-page--site-para-estetica .detail-card h2,
.service-page--site-para-estetica .promise-card h3,
.service-page--site-para-estetica .service-highlight-card h2 {
  color: #241b1d;
}

.service-page--site-para-estetica .seo-copy-card p:last-child,
.service-page--site-para-estetica .split-heading > p,
.service-page--site-para-estetica .detail-card p,
.service-page--site-para-estetica .faq-item p,
.service-page--site-para-estetica .service-card p,
.service-page--site-para-estetica .service-highlight-card p:last-child,
.service-page--site-para-estetica .service-spotlight-panel > p:last-of-type {
  color: #625458;
}

.service-page--site-para-estetica .promise-grid {
  margin-top: 18px;
}

.service-page--site-para-estetica .section-muted {
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 210, 199, 0.24), transparent 26rem),
    linear-gradient(180deg, #fdf7f3 0%, #f7ede8 100%);
  border-block: 1px solid rgba(44, 30, 34, 0.06);
}

.service-page--site-para-estetica .section-muted h2,
.service-page--site-para-estetica .section-muted h3 {
  color: #241b1d;
}

.service-page--site-para-estetica .section-muted p,
.service-page--site-para-estetica .section-muted summary,
.service-page--site-para-estetica .section-muted li {
  color: #625458;
}

.service-page--site-para-estetica .section-heading h2,
.service-page--site-para-estetica .split-heading h2,
.service-page--site-para-estetica .seo-copy-card h2,
.service-page--site-para-estetica .service-highlight-card h2,
.service-page--site-para-estetica .service-spotlight-panel h2,
.service-page--site-para-estetica .faq-grid h2 {
  font-size: clamp(1.5rem, 2.25vw, 2.05rem);
  line-height: 1.24;
}

.service-page--site-para-estetica .service-highlight-grid {
  gap: 20px;
}

.service-page--site-para-estetica .faq-grid > div:first-child {
  position: sticky;
  top: 112px;
  align-self: start;
}

@keyframes serviceHeroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.site-footer {
  padding-block: 64px 26px;
  background: #07040b;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(170px, 0.5fr));
  gap: 42px;
}

.footer-brand img {
  width: min(260px, 100%);
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: 0;
}

.site-footer a:not(.button) {
  display: block;
  margin-top: 11px;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 52px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1060px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 84px 18px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    background: rgba(13, 7, 22, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] + .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown {
    padding-block: 0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .hero-grid,
  .page-hero-grid,
  .seo-copy-card--with-media,
  .split-heading,
  .story-grid,
  .faq-grid,
  .process-grid,
  .team-preview-grid,
  .service-map-grid,
  .case-study-grid,
  .final-cta__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-grid-large,
  .cases-grid,
  .service-timeline,
  .service-highlight-grid,
  .values-grid,
  .promise-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list article {
    grid-template-columns: 48px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1220px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: min(212px, 58vw);
  }

  .site-nav {
    inset: 76px 14px auto;
  }

  .hero,
  .page-hero {
    padding-block: 56px 70px;
  }

  h1 {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    line-height: 1.3;
  }

  .hero h1 {
    line-height: 1.3;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3.2rem);
    line-height: 1.3;
  }

  .hero-actions,
  .hero-actions .button,
  .final-cta .button,
  .contact-card .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-media,
  .page-hero-media,
  .case-hero-media {
    min-height: 320px;
    border-radius: 30px;
  }

  .service-page--site-para-advogados .page-hero-copy h1 {
    font-size: clamp(1.85rem, 7vw, 2.45rem);
  }

  .service-page--site-para-estetica .page-hero-copy h1 {
    font-size: clamp(1.8rem, 6.8vw, 2.3rem);
  }

  .service-page--site-para-advogados .service-highlight-card h2,
  .service-page--site-para-advogados .service-spotlight-panel h2,
  .service-page--site-para-advogados .section-heading h2,
  .service-page--site-para-advogados .split-heading h2,
  .service-page--site-para-advogados .seo-copy-card h2,
  .service-page--site-para-advogados .faq-grid h2 {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .service-page--site-para-advogados .faq-grid > div:first-child {
    position: static;
  }

  .service-page--site-para-estetica .service-highlight-card h2,
  .service-page--site-para-estetica .service-spotlight-panel h2,
  .service-page--site-para-estetica .section-heading h2,
  .service-page--site-para-estetica .split-heading h2,
  .service-page--site-para-estetica .seo-copy-card h2,
  .service-page--site-para-estetica .faq-grid h2 {
    font-size: clamp(1.4rem, 5.8vw, 1.9rem);
  }

  .service-page--site-para-estetica .faq-grid > div:first-child {
    position: static;
  }

  .service-hero-floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .seo-copy-content {
    max-width: none;
  }

  .seo-copy-media {
    min-height: 260px;
  }

  .page-hero-team-media {
    min-height: 320px;
    border-radius: 30px;
  }

  .page-hero-team-media img {
    min-height: 280px;
  }

  .page-hero-team-media img:first-child,
  .page-hero-team-media img:last-child {
    transform: none;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .team-slider__controls {
    justify-content: flex-start;
  }

  .team-slide {
    flex-basis: min(82vw, 320px);
  }

  .stats-grid,
  .services-grid,
  .services-grid-large,
  .cases-grid,
  .service-timeline,
  .service-highlight-grid,
  .values-grid,
  .promise-grid,
  .service-detail-grid,
  .contact-layout,
  .team-mini,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .service-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .service-timeline::before {
    display: none;
  }

  .service-spotlight-media img {
    min-height: 300px;
  }

  .team-profile {
    grid-template-columns: 1fr;
  }

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

  .process-list p {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.plans-hero {
  position: relative;
  overflow: hidden;
}

.plans-hero::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto auto;
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  background: radial-gradient(circle, rgba(97, 252, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.plans-hero-grid,
.plan-builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.plans-hero .hero-eyebrow {
  color: var(--cyan);
}

.plans-hero-panel {
  position: relative;
  min-height: 520px;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 20% 10%, rgba(125, 82, 255, 0.28), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.quote-orbit {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 16px 18px;
  background: rgba(10, 5, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.9);
}

.quote-orbit strong {
  color: var(--white);
  font-size: 17px;
}

.quote-orbit span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quote-orbit--one {
  top: 36px;
  left: 30px;
}

.quote-orbit--two {
  top: 150px;
  right: 28px;
}

.quote-orbit--three {
  right: 78px;
  bottom: 72px;
}

.quote-orbit--four {
  left: 42px;
  bottom: 138px;
}

.quote-core {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: clamp(160px, 18vw, 220px);
  height: clamp(160px, 18vw, 220px);
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 36px 90px -40px rgba(97, 252, 255, 0.8);
}

.quote-core span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-core strong {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.plan-builder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #0b0612;
}

.plan-builder-grid {
  align-items: start;
}

.plan-builder-main {
  display: grid;
  gap: 28px;
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plan-option {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: 24px;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.plan-option:hover,
.plan-option.is-selected {
  transform: translateY(-4px);
  background: rgba(125, 82, 255, 0.16);
  border-color: rgba(97, 252, 255, 0.62);
}

.plan-option.is-selected::after {
  content: "Selecionado";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 7px 11px;
  color: #081017;
  background: var(--cyan);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-option__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.plan-option h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.3;
}

.plan-option__price {
  white-space: nowrap;
  color: var(--cyan);
  font-size: 20px;
  font-weight: 1000;
}

.plan-option p {
  color: var(--muted);
  line-height: 1.7;
}

.plan-option ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-option li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.plan-option li::before {
  content: "+";
  margin-right: 8px;
  color: var(--cyan);
  font-weight: 1000;
}

.quote-extras {
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
}

.quote-extras h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 24px;
}

.quote-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.quote-extra {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  cursor: pointer;
}

.quote-extra input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.quote-extra span {
  font-weight: 900;
}

.quote-extra em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 1000;
}

.quote-summary {
  position: sticky;
  top: 110px;
}

.quote-summary-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(97, 252, 255, 0.12), rgba(125, 82, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.quote-summary-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-summary h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.quote-total {
  display: grid;
  gap: 3px;
}

.quote-total span,
.quote-recurring span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.quote-total strong {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.quote-recurring {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
}

.quote-recurring strong {
  color: var(--cyan);
  font-size: 20px;
}

.quote-list-wrap {
  display: grid;
  gap: 8px;
}

.quote-list-wrap ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.quote-list-wrap li::before {
  content: "•";
  margin-right: 8px;
  color: var(--cyan);
}

.quote-summary-actions {
  display: grid;
  gap: 10px;
}

.quote-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.quote-architecture {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.quote-architecture article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
}

.quote-architecture span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #081017;
  background: var(--cyan);
  border-radius: 14px;
  font-weight: 1000;
}

.quote-architecture h3 {
  margin-bottom: 8px;
  color: var(--white);
  line-height: 1.3;
}

.quote-architecture p {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1060px) {
  .plans-hero-grid,
  .plan-builder-grid,
  .quote-architecture {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .plans-hero-panel {
    min-height: 460px;
    border-radius: 30px;
  }

  .quote-orbit {
    min-width: 136px;
    padding: 12px 13px;
  }

  .quote-orbit--one {
    top: 20px;
    left: 16px;
  }

  .quote-orbit--two {
    top: 112px;
    right: 14px;
  }

  .quote-orbit--three {
    right: 18px;
    bottom: 44px;
  }

  .quote-orbit--four {
    left: 16px;
    bottom: 112px;
  }

  .plan-options,
  .quote-extra-grid {
    grid-template-columns: 1fr;
  }

  .plan-option.is-selected::after {
    position: static;
    width: fit-content;
    margin-top: 8px;
  }

  .quote-extra {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .quote-extra em {
    grid-column: 2;
  }
}
