/* ========================================
   CONFIGURAÇÕES GERAIS
======================================== */

:root {
  --wine: #5b1725;
  --wine-deep: #3a0c16;
  --wine-dark: #2b0911;
  --wine-light: #791f32;

  --gold: #cda955;
  --gold-light: #e2c779;

  --cream: #f7f2ea;
  --white: #ffffff;
  --ink: #251d1f;
  --muted: #756b6d;

  --serif: "Cormorant Garamond", serif;
  --sans: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

/* ========================================
   CABEÇALHO
======================================== */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(55, 10, 19, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(205, 169, 85, 0.17);
}

.header-container {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo-img {
  width: 150px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-left: auto;
  margin-right: auto;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.83);
  font-size: 11px;
  letter-spacing: 0.2px;
  transition: 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

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

.header-button {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.header-button:hover {
  background: var(--gold);
  color: var(--wine-dark);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  width: 25px;
  height: 1px;
  display: block;
  margin: 6px auto;
  background: var(--white);
}

/* ========================================
   HERO
======================================== */

.hero {
  min-height: 100vh;
  padding-top: 86px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 23% 75%, rgba(143, 31, 52, 0.32), transparent 32%),
    radial-gradient(circle at 77% 28%, rgba(116, 20, 37, 0.32), transparent 33%),
    linear-gradient(115deg, #350b15 0%, #5b1725 46%, #650f25 73%, #460b18 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(205, 169, 85, 0.16);
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
  right: -280px;
  top: 70px;
}

.hero::after {
  width: 465px;
  height: 465px;
  right: -210px;
  top: 145px;
}

.hero-line {
  position: absolute;
  border: 1px solid rgba(205, 169, 85, 0.09);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-line-one {
  width: 270px;
  height: 270px;
  left: -205px;
  top: 320px;
}

.hero-line-two {
  width: 150px;
  height: 150px;
  left: -80px;
  top: 380px;
}

.hero-container {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 88px;
  position: relative;
  z-index: 2;
  padding-top: 28px;
  padding-bottom: 28px;
}

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

.hero-eyebrow {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 35px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 5.6vw, 82px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -1.8px;
}

.hero h1 .hero-break {
  display: block;
  color: var(--white);
  font-style: normal;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  max-width: 620px;
  color: var(--gold-light);
  font-weight: 400;
  font-style: italic;
}

.hero-content > p {
  max-width: 600px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine-dark);
}

.button-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-areas {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(205, 169, 85, 0.35);
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.hero-areas span {
  position: relative;
  padding-left: 17px;
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-areas span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
}

/* ========================================
   HERO - FOTO
======================================== */

.hero-visual {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-photo-shell {
  width: min(430px, 100%);
  height: 590px;
  position: relative;
}

.hero-photo-frame {
  width: 100%;
  height: 100%;
  padding: 11px;
  border: 1px solid rgba(205, 169, 85, 0.85);
  position: relative;
  z-index: 2;
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(205, 169, 85, 0.35);
  pointer-events: none;
  z-index: 3;
}

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

.hero-photo-outline {
  position: absolute;
  width: 100%;
  height: 100%;
  right: -28px;
  top: 28px;
  border: 1px solid rgba(205, 169, 85, 0.45);
  z-index: 1;
}

.hero-signature {
  position: absolute;
  left: -76px;
  bottom: 72px;
  z-index: 4;
  min-width: 340px;
  padding: 15px 22px 15px 16px;
  background: var(--cream);
  color: var(--wine-dark);
  display: grid;
  grid-template-columns: 78px 1px 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.signature-logo-img {
  width: 78px;
  height: 72px;
  object-fit: contain;
}

.signature-divider {
  width: 1px;
  height: 48px;
  background: rgba(91, 23, 37, 0.24);
}

.signature-text {
  display: flex;
  flex-direction: column;
}

.signature-text span {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.signature-text small {
  margin-top: 8px;
  color: #b68737;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ========================================
   TÍTULOS
======================================== */

.section-heading {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2,
.about-content h2,
.contact-content h2 {
  font-family: var(--serif);
  color: var(--wine-dark);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.section-heading h2 em,
.about-content h2 em,
.contact-content h2 em {
  color: var(--wine);
  font-weight: 400;
}

.section-heading > p {
  max-width: 580px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

/* ========================================
   ÁREAS DE ATUAÇÃO
======================================== */

.practice {
  padding: 120px 0;
  background: var(--cream);
}

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

.practice-card {
  min-height: 420px;
  padding: 38px;
  background: var(--white);
  border: 1px solid rgba(91, 23, 37, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.4s ease;
}

.practice-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  border-color: rgba(205, 169, 85, 0.5);
  box-shadow: 0 20px 50px rgba(75, 24, 34, 0.08);
}

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-card.featured {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.card-number {
  position: absolute;
  right: 30px;
  top: 25px;
  font-family: var(--serif);
  font-size: 48px;
  color: rgba(91, 23, 37, 0.07);
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.07);
}

.card-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 60px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
}

.practice-card h3 {
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.practice-card.featured h3 {
  color: var(--white);
}

.practice-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.practice-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.practice-card a {
  margin-top: auto;
  padding-top: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.practice-card.featured a {
  color: var(--gold-light);
}

.practice-card a span {
  font-size: 17px;
  transition: transform 0.3s ease;
}

.practice-card a:hover span {
  transform: translateX(5px);
}

/* ========================================
   SOBRE MIM
======================================== */

.about {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -270px;
  bottom: -270px;
  border: 1px solid rgba(205, 169, 85, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.about-container {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-detail {
  min-height: 560px;
  padding: 18px;
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(205, 169, 85, 0.48);
  background: transparent;
}

.about-detail::before {
  content: none;
}

.about-detail-inner {
  width: 100%;
  min-height: 522px;
  padding: 52px 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(126, 35, 54, 0.58), transparent 46%),
    linear-gradient(150deg, var(--wine-dark), var(--wine));
}

.about-detail-inner::before,
.about-detail-inner::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(205, 169, 85, 0.18);
  transform: rotate(45deg);
}

.about-detail-inner::before {
  width: 250px;
  height: 250px;
  left: -180px;
  top: -60px;
}

.about-detail-inner::after {
  width: 210px;
  height: 210px;
  right: -150px;
  bottom: -60px;
}

.about-detail-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-logo-img {
  width: 235px;
  height: 235px;
  position: relative;
  z-index: 2;
  object-fit: contain;
  opacity: 0.9;
}

.about-detail-line {
  width: 80px;
  height: 1px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
  background: rgba(205, 169, 85, 0.5);
}

.about-detail-oab {
  margin-top: 18px;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  font-size: 7px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.about-content {
  max-width: 690px;
}

.about-content h2 {
  max-width: 680px;
  font-size: clamp(46px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -1px;
}

.about-content h2 em {
  display: block;
  margin-top: 7px;
}

.about-bio {
  margin-top: 32px;
  padding-left: 26px;
  border-left: 1px solid rgba(205, 169, 85, 0.65);
}

.about-bio p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.95;
}

.about-bio p + p {
  margin-top: 16px;
}

.about-bio strong {
  color: var(--wine-dark);
  font-weight: 600;
}

.about-credentials {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(91, 23, 37, 0.14);
  border-left: 1px solid rgba(91, 23, 37, 0.14);
}

.about-credential {
  min-height: 122px;
  padding: 22px;
  border-right: 1px solid rgba(91, 23, 37, 0.14);
  border-bottom: 1px solid rgba(91, 23, 37, 0.14);
  transition: 0.3s ease;
}

.about-credential:hover {
  background: var(--cream);
}

.about-credential-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.about-credential > span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.about-credential strong {
  display: block;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
}

.about-credential p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.about-name {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.about-name strong {
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.about-name span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========================================
   ATENDIMENTO
======================================== */

.service {
  padding: 120px 0;
  color: var(--white);
  background: var(--wine-dark);
}

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

.section-heading.light h2 em {
  color: var(--gold-light);
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-step {
  min-height: 260px;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.service-step:last-child {
  border-right: 0;
}

.service-step > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
}

.service-step h3 {
  margin-top: 45px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.service-step p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.8;
}

/* ========================================
   CONTATO
======================================== */

.contact {
  padding: 120px 0;
  background: #eee9e1;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.contact-content p {
  max-width: 470px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-card {
  padding: 48px;
  position: relative;
  color: var(--white);
  background: var(--wine);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(205, 169, 85, 0.25);
  pointer-events: none;
}

.contact-small {
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact-card h3 {
  max-width: 420px;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 500;
  line-height: 1.05;
}

.contact-button {
  margin-top: 30px;
}

.contact-information {
  margin-top: 35px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-information p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.contact-information strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========================================
   RODAPÉ
======================================== */

.footer {
  color: var(--white);
  background: #24070d;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-container {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo-img {
  width: 135px;
  height: 88px;
  object-fit: contain;
  object-position: left center;
}

.footer-container p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 1080px) {
  .nav {
    gap: 22px;
  }

  .hero-container {
    gap: 45px;
  }

  .hero-signature {
    left: -35px;
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .header-button {
    margin-left: auto;
  }

  .hero-container {
    grid-template-columns: 1fr 0.82fr;
    gap: 32px;
  }

  .hero-photo-shell {
    height: 525px;
  }

  .hero-signature {
    left: -25px;
    min-width: 290px;
  }

  .about-container,
  .contact-container {
    gap: 55px;
  }
}

@media (max-width: 780px) {
  .header-container {
    min-height: 72px;
  }

  .brand-logo-img {
    width: 125px;
    height: 54px;
  }

  .header-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    top: 72px;
    width: 100%;
    padding: 28px 6%;
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    background: var(--wine-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.active {
    display: flex;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-container {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 65px;
    padding-bottom: 85px;
  }

  .hero h1 {
    font-size: clamp(50px, 13vw, 68px);
  }

  .hero-visual {
    min-height: auto;
    justify-content: center;
    padding-top: 15px;
  }

  .hero-photo-shell {
    width: 88%;
    height: 570px;
  }

  .hero-signature {
    left: -4%;
    bottom: 35px;
  }

  .practice,
  .about,
  .service,
  .contact {
    padding: 85px 0;
  }

  .practice-grid,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-detail {
    min-height: 410px;
  }

  .about-detail-inner {
    min-height: 374px;
  }

  .about-logo-img {
    width: 205px;
    height: 205px;
  }

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

  .service-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-step:last-child {
    border-bottom: 0;
  }

  .footer-container {
    padding: 35px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .container {
    width: 88%;
  }

  .hero-container {
    padding-top: 50px;
  }

  .hero-eyebrow {
    letter-spacing: 2.5px;
  }

  .hero h1 {
    font-size: 49px;
    letter-spacing: -1px;
  }

  .hero-content > p {
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-areas {
    gap: 14px 24px;
  }

  .hero-photo-shell {
    width: 100%;
    height: 480px;
  }

  .hero-photo-outline {
    right: -12px;
    top: 14px;
  }

  .hero-signature {
    left: -3%;
    bottom: 22px;
    min-width: 250px;
    grid-template-columns: 62px 1px 1fr;
    padding: 12px 14px;
  }

  .signature-logo-img {
    width: 62px;
    height: 58px;
  }

  .signature-text span {
    font-size: 21px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .about-content h2,
  .contact-content h2 {
    font-size: 40px;
  }

  .practice-card {
    padding: 28px;
  }

  .about-detail {
    min-height: 340px;
    padding: 12px;
  }

  .about-detail-inner {
    min-height: 314px;
    padding: 38px 24px;
  }

  .about-logo-img {
    width: 175px;
    height: 175px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-bio {
    padding-left: 18px;
  }

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

  .about-credential-wide {
    grid-column: auto;
  }

  .contact-card {
    padding: 38px 28px;
  }

  .contact-card h3 {
    font-size: 32px;
  }

  .contact-information {
    grid-template-columns: 1fr;
  }
}


/* Ajuste: destaque único de atuação na seção Sobre */
.about-credentials-single { grid-template-columns: 1fr; }
.about-credentials-single .about-credential-wide { grid-column: 1 / -1; }


/* ========================================
   ÁREAS DE ATUAÇÃO - EDITORIAL PREMIUM
======================================== */

.practice-editorial {
  padding: 125px 0 115px;
  background:
    linear-gradient(rgba(205, 169, 85, 0.055) 1px, transparent 1px) 0 0 / 100% 118px,
    var(--cream);
}

.practice-editorial-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
  padding-bottom: 68px;
}

.practice-editorial-intro h2 {
  max-width: 720px;
  font-family: var(--serif);
  color: var(--wine-dark);
  font-size: clamp(46px, 4.7vw, 66px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1px;
}

.practice-editorial-intro h2 em {
  color: var(--wine);
  font-weight: 400;
}

.practice-editorial-copy {
  padding-left: 28px;
  border-left: 1px solid rgba(205, 169, 85, 0.65);
}

.practice-editorial-copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.practice-editorial-copy p + p {
  margin-top: 15px;
}

.practice-editorial-list {
  border-top: 1px solid rgba(91, 23, 37, 0.18);
}

.practice-editorial-item {
  display: grid;
  grid-template-columns: 105px 190px 1fr;
  gap: 34px;
  align-items: start;
  padding: 48px 12px 48px 0;
  border-bottom: 1px solid rgba(91, 23, 37, 0.18);
  position: relative;
  transition: 0.35s ease;
}

.practice-editorial-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.45s ease;
}

.practice-editorial-item:hover {
  padding-left: 15px;
  background: rgba(255, 255, 255, 0.42);
}

.practice-editorial-item:hover::before {
  width: 100%;
}

.practice-editorial-number {
  color: rgba(91, 23, 37, 0.18);
  font-family: var(--serif);
  font-size: 58px;
  font-style: italic;
  line-height: 0.8;
}

.practice-editorial-area {
  padding-top: 5px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

.practice-editorial-body {
  max-width: 720px;
}

.practice-editorial-body h3 {
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: clamp(29px, 2.7vw, 39px);
  font-weight: 500;
  line-height: 1.08;
}

.practice-editorial-body > p {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.practice-services {
  margin-top: 22px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.7;
}

.practice-services span {
  padding: 0 7px;
  color: var(--gold);
}

.practice-editorial-cta {
  margin-top: 72px;
  padding: 45px 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(121, 31, 50, 0.55), transparent 35%),
    linear-gradient(120deg, var(--wine-dark), var(--wine));
}

.practice-editorial-cta::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -130px;
  top: -130px;
  border: 1px solid rgba(205, 169, 85, 0.22);
  transform: rotate(45deg);
}

.practice-cta-kicker {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.practice-editorial-cta h3 {
  max-width: 760px;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.practice-editorial-cta p {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.practice-editorial-cta .button {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .practice-editorial-intro {
    gap: 50px;
  }

  .practice-editorial-item {
    grid-template-columns: 85px 150px 1fr;
    gap: 25px;
  }
}

@media (max-width: 780px) {
  .practice-editorial {
    padding: 85px 0;
  }

  .practice-editorial-intro {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 50px;
  }

  .practice-editorial-copy {
    max-width: 650px;
  }

  .practice-editorial-item {
    grid-template-columns: 75px 1fr;
    gap: 18px 22px;
    padding: 38px 0;
  }

  .practice-editorial-area {
    align-self: center;
  }

  .practice-editorial-body {
    grid-column: 2;
  }

  .practice-editorial-cta {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 28px;
  }

  .practice-editorial-cta .button {
    width: fit-content;
  }
}

@media (max-width: 500px) {
  .practice-editorial-intro h2 {
    font-size: 42px;
  }

  .practice-editorial-copy {
    padding-left: 18px;
  }

  .practice-editorial-item {
    grid-template-columns: 58px 1fr;
  }

  .practice-editorial-number {
    font-size: 45px;
  }

  .practice-editorial-body h3 {
    font-size: 30px;
  }

  .practice-services {
    font-size: 14px;
  }

  .practice-editorial-cta {
    padding: 32px 25px;
  }

  .practice-editorial-cta .button {
    width: 100%;
  }
}


/* ========================================
   ATENDIMENTO - PREMIUM
======================================== */

.service-premium {
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(121, 31, 50, 0.42), transparent 30%),
    linear-gradient(125deg, #260810 0%, var(--wine-dark) 48%, #4b101d 100%);
  position: relative;
  overflow: hidden;
}

.service-premium::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -290px;
  top: -240px;
  border: 1px solid rgba(205, 169, 85, 0.13);
  border-radius: 50%;
}

.service-premium-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
}

.service-premium-header h2 {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(46px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.02;
}

.service-premium-header h2 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.service-premium-header > p {
  padding-left: 28px;
  border-left: 1px solid rgba(205, 169, 85, 0.45);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.9;
}

.service-premium-flow {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.service-premium-step {
  min-height: 390px;
  padding: 36px 34px 40px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  transition: 0.35s ease;
}

.service-premium-step:last-child {
  border-right: 0;
}

.service-premium-step:hover {
  background: rgba(255, 255, 255, 0.035);
}

.service-premium-number {
  color: rgba(205, 169, 85, 0.42);
  font-family: var(--serif);
  font-size: 43px;
  font-style: italic;
}

.service-premium-line {
  width: 34px;
  height: 1px;
  margin: 26px 0 30px;
  background: var(--gold);
}

.service-premium-kicker {
  color: var(--gold-light);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.service-premium-step h3 {
  max-width: 300px;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
}

.service-premium-step p {
  max-width: 310px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.85;
}

.service-premium-contact {
  margin-top: 55px;
  padding: 30px 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.service-premium-contact > div > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.service-premium-contact h3 {
  max-width: 620px;
  margin-top: 9px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

@media (max-width: 780px) {
  .service-premium {
    padding: 85px 0;
  }

  .service-premium-header {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-premium-header > p {
    padding-left: 18px;
  }

  .service-premium-flow {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .service-premium-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .service-premium-step:last-child {
    border-bottom: 0;
  }

  .service-premium-contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-premium-contact .button {
    width: fit-content;
  }
}

@media (max-width: 500px) {
  .service-premium-header h2 {
    font-size: 42px;
  }

  .service-premium-step {
    padding: 32px 10px;
  }

  .service-premium-contact .button {
    width: 100%;
  }
}


/* ========================================
   CONTATO - FECHAMENTO PREMIUM
======================================== */

.contact-premium {
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(205, 169, 85, 0.045) 1px, transparent 1px) 0 0 / 118px 100%,
    #f1ece4;
}

.contact-premium-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 540px;
  box-shadow: 0 25px 65px rgba(57, 18, 26, 0.08);
}

.contact-premium-main {
  padding: 70px 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-premium-main::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  left: -210px;
  bottom: -210px;
  border: 1px solid rgba(205, 169, 85, 0.18);
  transform: rotate(45deg);
}

.contact-premium-main h2 {
  max-width: 650px;
  font-family: var(--serif);
  color: var(--wine-dark);
  font-size: clamp(45px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1px;
}

.contact-premium-main h2 em {
  color: var(--wine);
  font-weight: 400;
}

.contact-premium-main > p {
  max-width: 580px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.contact-premium-button {
  margin-top: 34px;
  position: relative;
  z-index: 2;
}

.contact-premium-card {
  padding: 68px 55px 48px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(121, 31, 50, 0.7), transparent 34%),
    linear-gradient(145deg, var(--wine-dark), var(--wine));
}

.contact-premium-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(205, 169, 85, 0.26);
  pointer-events: none;
}

.contact-premium-kicker {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.contact-premium-card h3 {
  margin-top: 22px;
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.contact-premium-role {
  margin-top: 9px;
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-premium-info {
  margin-top: 40px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-premium-info > div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-premium-info span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.contact-premium-info a,
.contact-premium-info p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.contact-premium-info a:hover {
  color: var(--gold-light);
}

.contact-premium-signature {
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.contact-premium-signature img {
  width: 125px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 920px) {
  .contact-premium-main {
    padding: 60px 48px;
  }

  .contact-premium-card {
    padding: 60px 42px 45px;
  }
}

@media (max-width: 780px) {
  .contact-premium {
    padding: 85px 0;
  }

  .contact-premium-shell {
    grid-template-columns: 1fr;
  }

  .contact-premium-main,
  .contact-premium-card {
    padding: 50px 38px;
  }
}

@media (max-width: 500px) {
  .contact-premium-main,
  .contact-premium-card {
    padding: 42px 25px;
  }

  .contact-premium-main h2 {
    font-size: 41px;
  }

  .contact-premium-button {
    width: 100%;
  }

  .contact-premium-card h3 {
    font-size: 36px;
  }
}


/* ========================================
   REFINAMENTOS MOBILE FINAIS
   Mantém o desktop inalterado
======================================== */

@media (max-width: 500px) {
  /* Cabeçalho */
  .header-container {
    min-height: 72px;
  }

  .brand-logo-img {
    width: 142px;
    height: 54px;
  }

  /* Hero */
  .hero-content p {
    font-size: 13px;
    line-height: 1.8;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-areas {
    margin-top: 30px;
    gap: 14px 18px;
  }

  /* Sobre mim */
  .about {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .about-content {
    padding-left: 2px;
    padding-right: 2px;
  }

  .about-bio {
    margin-top: 27px;
    padding-left: 17px;
  }

  .about-bio p {
    font-size: 12.5px;
    line-height: 1.82;
  }

  .about-bio p + p {
    margin-top: 18px;
  }

  .about-credentials {
    margin-top: 30px;
  }

  /* Áreas de atuação */
  .practice-editorial {
    padding: 78px 0;
  }

  .practice-editorial-item {
    grid-template-columns: 50px 1fr;
    gap: 18px 8px;
    padding: 40px 0;
  }

  .practice-editorial-number {
    font-size: 42px;
  }

  .practice-editorial-area {
    font-size: 8px;
    letter-spacing: 2.3px;
  }

  .practice-editorial-body h3 {
    font-size: 31px;
    line-height: 1.08;
  }

  .practice-editorial-body > p {
    margin-top: 17px;
    font-size: 12.5px;
    line-height: 1.82;
  }

  .practice-services {
    margin-top: 20px;
    font-size: 14.5px;
    line-height: 1.85;
  }

  /* Atendimento */
  .service-premium {
    padding: 78px 0;
  }

  .service-premium-step {
    padding: 38px 8px 42px;
  }

  .service-premium-kicker {
    font-size: 8px;
  }

  .service-premium-step h3 {
    margin-top: 16px;
    font-size: 31px;
  }

  .service-premium-step p {
    margin-top: 18px;
    font-size: 12.5px;
    line-height: 1.82;
  }

  /* Contato */
  .contact-premium {
    padding: 78px 0;
  }

  .contact-premium-main,
  .contact-premium-card {
    padding-left: 27px;
    padding-right: 27px;
  }

  .contact-premium-main > p {
    font-size: 12.5px;
    line-height: 1.82;
  }

  .contact-premium-info > div {
    padding: 23px 0;
  }

  .contact-premium-info span {
    font-size: 8px;
  }

  .contact-premium-info a,
  .contact-premium-info p {
    font-size: 12.5px;
    line-height: 1.7;
  }
}
