.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../images/hero-advogado.webp?v=20260728-2") center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 10, 17, 0.98) 0%, rgba(3, 10, 17, 0.86) 35%, rgba(3, 10, 17, 0.14) 66%, rgba(3, 10, 17, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 10, 17, 0.72), transparent 34%);
}

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

.hero-content {
  width: min(720px, 58%);
  padding: 60px 0 28px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(2.75rem, 3.65vw, 4rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.hero h1 em,
.custody h2 em,
.about-copy h2 em,
.contact-copy h2 em {
  display: block;
  margin-top: 5px;
  color: var(--gold-400);
  font-style: normal;
}

.hero-content > p {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  gap: 42px;
  margin-top: 42px;
}

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

.hero-trust span {
  color: var(--gold-400);
  font-size: 1.7rem;
}

.hero-trust strong {
  font-size: 0.64rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold-400);
  border: 1px solid rgba(213, 168, 84, 0.35);
  border-radius: 50%;
}

.practice {
  padding-top: 78px;
}

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

.practice-card {
  position: relative;
  min-height: 272px;
  padding: 28px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(5, 14, 22, 0.035);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.practice-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.practice-card:hover {
  border-color: rgba(200, 148, 63, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

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

.practice-card .line-icon {
  margin: 0 auto 11px;
}

.practice-card h3 {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.38;
  text-align: center;
  text-transform: uppercase;
}

.practice-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.62;
  text-align: center;
}

.practice-card a {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--gold-500);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(7px);
  transition: all 180ms ease;
}

.practice-card:hover a,
.practice-card:focus-within a {
  opacity: 1;
  transform: translateY(0);
}

.section-cta {
  margin-top: 30px;
  text-align: center;
}

.custody {
  position: relative;
  padding: 82px 0;
  overflow: hidden;
}

.custody::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 50%, rgba(200, 148, 63, 0.12), transparent 25%),
    linear-gradient(90deg, rgba(3, 10, 17, 0.32), var(--navy-950));
}

.custody-bg {
  position: absolute;
  inset: 0 52% 0 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 17, 0.62), rgba(3, 10, 17, 0.93)),
    url("../images/hero-advogado.webp?v=20260728-2") 18% center / cover no-repeat;
  opacity: 0.35;
  filter: saturate(0.75);
}

.custody-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: center;
}

.custody-copy {
  max-width: 620px;
  padding-left: 120px;
}

.custody-copy h2 {
  color: var(--gold-400);
}

.custody-copy h2 em {
  color: #fff;
}

.custody-copy > p {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.custody-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.custody-points > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 9px;
}

.custody-points span {
  grid-row: span 2;
  color: var(--gold-400);
  font-size: 1.7rem;
}

.custody-points strong {
  color: var(--gold-400);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.custody-points small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  line-height: 1.45;
}

.urgent-card {
  padding: 38px 36px;
  border: 1px solid var(--white-line);
  border-radius: 6px;
  background: rgba(13, 32, 49, 0.72);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.urgent-card h3 {
  margin: 0;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.urgent-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.urgent-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 22px;
  color: var(--gold-400);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 1.75rem;
}

.urgent-phone:hover {
  color: var(--gold-300);
}

.urgent-card .btn {
  width: 100%;
}

.urgent-card > small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.numbers {
  color: #fff;
  border-top: 1px solid rgba(213, 168, 84, 0.18);
  background: linear-gradient(90deg, var(--navy-900), #0b2032, var(--navy-900));
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.number-item {
  display: flex;
  min-height: 114px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 0;
}

.number-item strong {
  display: block;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.number-item small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

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

.differential-card {
  display: flex;
  min-height: 184px;
  gap: 13px;
  padding: 24px 19px;
  border: 1px solid rgba(17, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.75);
}

.differential-card .line-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  font-size: 1.6rem;
}

.differential-card h3 {
  margin: 6px 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.differential-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 82px;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 625 / 747;
}

.about-media::before {
  position: absolute;
  z-index: 0;
  inset: 26px -25px -25px 26px;
  content: "";
  border: 1px solid rgba(200, 148, 63, 0.5);
}

.about-media img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-copy h2 {
  max-width: 620px;
}

.about-copy > p {
  color: var(--muted);
}

.about-lead {
  margin-top: 26px;
  color: var(--ink) !important;
  font-size: 1.05rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 32px;
}

.values-grid > div {
  padding: 20px 16px;
  border-top: 2px solid var(--gold-500);
  background: var(--cream);
}

.values-grid span {
  color: var(--gold-500);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 0.85rem;
}

.values-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.values-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.oab-note {
  margin-top: 22px;
  font-size: 0.72rem;
}

.process {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  position: relative;
  padding: 0 30px;
  text-align: center;
}

.step-number {
  color: rgba(200, 148, 63, 0.25);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 3.3rem;
  line-height: 1;
}

.step-line {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.step-line span {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  background: var(--cream);
}

.step-line i {
  display: block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: 1px;
  background: rgba(200, 148, 63, 0.35);
}

.process-step h3 {
  margin: 0;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.process-step p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq .section-heading {
  margin: 0;
  text-align: left;
}

.faq .section-heading p {
  margin-left: 0;
}

.faq-help {
  display: flex;
  gap: 17px;
  margin-top: 36px;
  padding: 24px;
  color: #fff;
  background: var(--navy-900);
}

.faq-help > span {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  color: var(--gold-400);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 1.5rem;
}

.faq-help strong {
  font-size: 0.83rem;
  text-transform: uppercase;
}

.faq-help p {
  margin: 4px 0 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

.faq-help a {
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 6px;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
}

.faq-item button > span:last-child {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  color: var(--gold-500);
  border: 1px solid rgba(200, 148, 63, 0.4);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-answer p {
  margin: -3px 54px 24px 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 10, 17, 1) 0%, rgba(3, 10, 17, 0.9) 57%, rgba(3, 10, 17, 0.43) 100%);
}

.contact-media {
  position: absolute;
  inset: 0 0 0 56%;
  background: url("../images/hero-advogado.webp?v=20260728-2") 82% center / cover no-repeat;
  filter: saturate(0.5) sepia(0.15);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-copy > p {
  max-width: 500px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  font-style: normal;
}

.contact-details a,
.contact-details p {
  display: grid;
  grid-template-columns: 28px 1fr;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.contact-details span {
  color: var(--gold-400);
  font-size: 1rem;
}

.confidential-note {
  display: flex;
  max-width: 440px;
  gap: 13px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--white-line);
}

.confidential-note > span {
  color: var(--gold-400);
  font-size: 1.4rem;
}

.confidential-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.confidential-note strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--white-line);
  border-radius: 5px;
  background: rgba(9, 24, 39, 0.87);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(9px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-form label {
  display: block;
  margin-bottom: 13px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.contact-form .privacy-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
  accent-color: var(--gold-500);
}

.contact-form .privacy-check span {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.btn-submit {
  width: 100%;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-feedback {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 0.72rem;
  text-align: center;
}

.form-feedback.success {
  color: #82daa4;
}

.form-feedback.error {
  color: #ffaaa4;
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: #02080e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 1.1fr 0.58fr;
  gap: 70px;
  padding-top: 54px;
  padding-bottom: 44px;
}

.footer-brand > p {
  max-width: 250px;
  margin: 18px 0 11px;
  font-size: 0.72rem;
}

.footer-brand .brand-logo {
  width: 118px;
  height: 118px;
}

.footer-brand > small {
  color: var(--gold-400);
  font-size: 0.61rem;
}

.site-footer h2 {
  margin: 7px 0 17px;
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer .footer-grid > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer a,
.site-footer p {
  margin: 0;
  font-size: 0.7rem;
}

.site-footer a:hover {
  color: var(--gold-300);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-bottom p {
  font-size: 0.62rem;
}
