:root {
  --green-950: #08261b;
  --green-900: #0c3223;
  --green-800: #103f2b;
  --green-700: #18583c;
  --green-600: #277451;
  --green-100: #dce9e2;
  --green-50: #eef5f1;
  --gold: #b89a62;
  --gold-light: #d9c49c;
  --ink: #15211b;
  --muted: #5f6c65;
  --paper: #f7f5ef;
  --white: #ffffff;
  --border: rgba(16, 63, 43, .15);
  --shadow: 0 28px 70px rgba(8, 38, 27, .16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--green-800);
  color: var(--white);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(16, 63, 43, .08);
  background: rgba(247, 245, 239, .9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(184, 154, 98, .8);
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: .08em;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  position: relative;
  color: #39483f;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(184, 154, 98, .45);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.button-outline {
  border-color: rgba(16, 63, 43, .25);
  color: var(--green-900);
}

.button-outline:hover {
  border-color: var(--green-700);
  background: var(--green-50);
}

.button-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(24, 88, 60, .22);
}

.button-primary:hover {
  background: var(--green-800);
  box-shadow: 0 18px 34px rgba(24, 88, 60, .3);
}

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

.button-full {
  width: 100%;
  border-radius: 12px;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 63, 43, .035) 1px, transparent 1px),
    linear-gradient(rgba(16, 63, 43, .035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -5vw;
  bottom: -140px;
  width: 52vw;
  height: 230px;
  border: 1px solid rgba(184, 154, 98, .24);
  border-radius: 50%;
  content: "";
  transform: rotate(-7deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  top: -180px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: rgba(39, 116, 81, .12);
}

.hero-glow-two {
  bottom: -220px;
  left: -160px;
  width: 440px;
  height: 440px;
  background: rgba(184, 154, 98, .12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  gap: 70px;
  padding-block: 70px 88px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

.hero h1,
.section-heading h2,
.process-intro h2,
.about-content h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.6vw, 76px);
}

.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  transition: transform .2s ease;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 34px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #445149;
  font-size: 13px;
  font-weight: 650;
}

.trust-list svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--green-100);
  fill: var(--green-700);
}

.hero-visual {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 154, 98, .5);
  border-radius: 230px 230px 30px 30px;
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
  object-position: 50% 22%;
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 38, 27, .82), transparent 45%);
}

.portrait-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(8, 38, 27, .72);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.portrait-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.portrait-card span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.visual-detail {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(184, 154, 98, .55);
  border-radius: 50%;
}

.visual-detail-top {
  top: -28px;
  right: -28px;
  width: 140px;
  height: 140px;
}

.visual-detail-bottom {
  bottom: -34px;
  left: -38px;
  width: 190px;
  height: 190px;
}

.urgent-strip {
  background: var(--green-950);
  color: var(--white);
}

.urgent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 30px;
}

.urgent-inner > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 12px;
}

.urgent-inner strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.urgent-inner p {
  grid-column: 2;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(217, 196, 156, .45);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 11px rgba(217, 196, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 196, 156, 0); }
}

.urgent-inner > a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.section {
  padding-block: 120px;
}

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

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

.section-heading h2,
.process-intro h2,
.about-content h2,
.contact-copy h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.section-heading > p:last-child,
.process-intro > p:not(.eyebrow),
.about-content > p:not(.eyebrow):not(.about-role),
.contact-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .54);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(184, 154, 98, .23);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  border-color: rgba(24, 88, 60, .25);
  background: var(--white);
  box-shadow: 0 22px 44px rgba(8, 38, 27, .1);
  transform: translateY(-6px);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(16, 63, 43, .22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  border-radius: 14px;
  background: var(--green-50);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--green-700);
}

.service-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  color: var(--white);
}

.section-dark::before {
  position: absolute;
  top: -260px;
  right: -170px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(217, 196, 156, .15);
  border-radius: 50%;
  content: "";
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 100px;
}

.process-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .68);
}

.process-intro .button {
  margin-top: 32px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(217, 196, 156, .5);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.process-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.process-list p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .62);
}

.about-section {
  background: var(--white);
}

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

.about-portrait {
  position: relative;
  width: min(100%, 450px);
}

.about-portrait::before {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(184, 154, 98, .5);
  content: "";
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: .82;
  border-radius: 8px 80px 8px 8px;
  object-fit: cover;
  object-position: 50% 22%;
}

.about-monogram {
  position: absolute;
  z-index: 2;
  right: -26px;
  bottom: -26px;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: .08em;
  box-shadow: 0 16px 34px rgba(8, 38, 27, .18);
}

.about-role {
  margin: 16px 0 30px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.about-values div {
  display: grid;
}

.about-values strong {
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.about-values span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.faq-section {
  background: var(--green-50);
}

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

.accordion {
  border-top: 1px solid rgba(16, 63, 43, .18);
}

.accordion details {
  border-bottom: 1px solid rgba(16, 63, 43, .18);
}

.accordion summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  list-style: none;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

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

.accordion summary::before,
.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 1px;
  background: var(--green-700);
  content: "";
  transition: transform .2s ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion details > div {
  overflow: hidden;
}

.accordion p {
  margin: -4px 50px 24px 0;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  background: var(--green-950);
  color: var(--white);
}

.contact-section::before {
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(217, 196, 156, .12);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 90px;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .65);
}

.contact-direct {
  display: grid;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.contact-direct span,
.contact-direct small {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-direct a {
  width: fit-content;
  margin: 8px 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label:not(.consent-field) {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  outline: none;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .38);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 196, 156, .7);
  background: rgba(255, 255, 255, .11);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 22px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.5;
}

.consent-field input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  accent-color: var(--gold-light);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding-block: 44px 24px;
  background: #061c14;
  color: var(--white);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand > div {
  display: grid;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.footer-brand span:not(.brand-mark) {
  margin-top: 3px;
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.footer-contact span {
  color: rgba(255, 255, 255, .42);
}

.footer-contact a {
  color: var(--gold-light);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 40px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .38);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 680px;
  justify-self: end;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f8f5f;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(8, 38, 27, .28);
  font-size: 13px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}

.floating-whatsapp:hover {
  background: #176e49;
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

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

  .hero-grid {
    grid-template-columns: 1fr .78fr;
    gap: 40px;
  }

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

  .process-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

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

  .header-inner > .button {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 64px 80px;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    width: min(78vw, 470px);
    margin: 20px auto 0;
  }

  .portrait-frame img {
    aspect-ratio: .9;
  }

  .urgent-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
    gap: 16px;
  }

  .section,
  .contact-section {
    padding-block: 90px;
  }

  .process-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 56px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-portrait {
    width: min(78vw, 440px);
    margin-inline: auto;
  }

  .faq-grid {
    gap: 45px;
  }

  .contact-grid {
    gap: 46px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(247, 245, 239, .94);
    box-shadow: 0 -10px 28px rgba(8, 38, 27, .12);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 50px;
    border-radius: 12px;
    background: var(--green-700);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 620px) {
  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero {
    background-size: 32px 32px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    justify-items: center;
  }

  .button-primary {
    width: 100%;
  }

  .trust-list {
    align-items: center;
    flex-direction: column;
  }

  .hero-visual {
    width: 92%;
  }

  .portrait-frame {
    border-radius: 180px 180px 24px 24px;
  }

  .portrait-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .urgent-inner > div {
    grid-template-columns: auto 1fr;
  }

  .urgent-inner strong {
    font-size: 18px;
  }

  .urgent-inner p {
    font-size: 13px;
  }

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

  .section-heading h2,
  .process-intro h2,
  .about-content h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .section-heading > p:last-child,
  .process-intro > p:not(.eyebrow),
  .about-content > p:not(.eyebrow):not(.about-role),
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 30px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .process-list li > span {
    width: 44px;
    height: 44px;
  }

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

  .about-values div {
    padding: 8px 0;
  }

  .about-monogram {
    right: -8px;
    bottom: -26px;
    width: 86px;
    height: 86px;
  }

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

  .contact-form {
    padding: 22px;
  }

  .footer-main,
  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    gap: 7px;
  }

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

  .footer-bottom p:last-child {
    justify-self: start;
    text-align: left;
  }
}

/* SEO local — seção de atendimento em Joinville e região */
.location-section {
  position: relative;
  overflow: hidden;
  background: var(--green-50);
}

.location-section::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184, 154, 98, .2);
  border-radius: 50%;
  content: "";
}

.location-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: center;
  gap: 76px;
}

.location-copy h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.location-copy p {
  max-width: 760px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 16px;
}

.location-copy .button {
  margin-top: 12px;
}

.location-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(16, 63, 43, .13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 60px rgba(8, 38, 27, .1);
  backdrop-filter: blur(12px);
}

.location-card::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(184, 154, 98, .38);
  border-radius: 50%;
  content: "SC";
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: .08em;
}

.location-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.location-card > strong {
  display: block;
  max-width: calc(100% - 70px);
  margin-bottom: 14px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.location-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.location-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.location-card li {
  position: relative;
  padding-left: 24px;
  color: #33443a;
  font-size: 14px;
}

.location-card li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.location-card address {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--green-800);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .location-card {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .location-card {
    padding: 30px 24px;
  }

  .location-card::after {
    width: 48px;
    height: 48px;
  }

  .location-card > strong {
    font-size: 26px;
  }
}
