:root {
  --navy: #2c3e56;
  --navy-deep: #1c2a3d;
  --navy-soft: #40546e;
  --gold: #a9996c;
  --gold-light: #d9cfb5;
  --cream: #f5f2ea;
  --warm: #faf8f3;
  --white: #ffffff;
  --ink: #253246;
  --muted: #687384;
  --line: rgba(44, 62, 86, 0.14);
  --shadow: 0 28px 80px rgba(30, 42, 59, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: var(--font-geist-sans), Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

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

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

button {
  border: 0;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(44, 62, 86, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 30px rgba(25, 37, 53, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 118px;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 220ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 28px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 720;
  letter-spacing: 0.025em;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button span {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 220ms ease;
}

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

.button:hover span {
  transform: translateX(3px);
}

.button:focus-visible,
.text-link:focus-visible,
.footer-link:focus-visible,
.modal-close:focus-visible,
.mobile-cta:focus-visible {
  outline: 3px solid rgba(169, 153, 108, 0.45);
  outline-offset: 3px;
}

.button--header {
  min-height: 48px;
  flex: 0 0 auto;
  background: var(--navy);
  color: var(--white);
}

.button--header:hover,
.button--primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(44, 62, 86, 0.2);
}

.button--primary {
  background: var(--navy);
  color: var(--white);
}

.button--secondary {
  border-color: rgba(44, 62, 86, 0.25);
  background: transparent;
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.66);
}

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

.button--gold:hover {
  background: #98885e;
  box-shadow: 0 14px 34px rgba(169, 153, 108, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 162px 0 0;
  background:
    radial-gradient(circle at 5% 18%, rgba(169, 153, 108, 0.15), transparent 28%),
    linear-gradient(135deg, #fbfaf6 0%, #f4f1e9 54%, #eeeadf 100%);
}

.hero::before {
  position: absolute;
  top: 92px;
  right: -200px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(169, 153, 108, 0.24);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  top: 180px;
  right: 18%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(90px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.83fr);
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
  padding-bottom: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

.hero h1,
.section h2,
.final-cta h2,
.contact-modal h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.4rem, 5.2vw, 5.45rem);
  line-height: 0.99;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #536073;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

.hero-note strong {
  color: var(--navy);
  font-size: 0.83rem;
}

.status-dot {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 4px;
  border: 2px solid #e8e2d1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(169, 153, 108, 0.12);
}

.hero-visual {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  padding: 18px 0 24px 18px;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 0.83;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.72);
  border-radius: 260px 260px 34px 34px;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(28, 42, 61, 0.15));
  content: "";
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: -32px;
  bottom: 0;
  width: min(290px, 70%);
  border-left: 3px solid var(--gold);
  border-radius: 2px 18px 18px 2px;
  padding: 23px 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(27, 39, 55, 0.18);
  backdrop-filter: blur(12px);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.35;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: -32px;
  display: flex;
  width: 118px;
  height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(44, 62, 86, 0.26);
  text-align: center;
}

.hero-seal strong {
  margin: 3px 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.hero-seal span {
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px 18px 0 0;
  background: var(--white);
  box-shadow: 0 -10px 50px rgba(44, 62, 86, 0.08);
}

.trust-bar > div {
  display: flex;
  min-height: 106px;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(20px, 2.6vw, 34px);
  border-right: 1px solid var(--line);
}

.trust-bar > div:last-child {
  border-right: 0;
}

.trust-bar span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.trust-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-bar strong {
  color: var(--navy);
  font-weight: 720;
}

.section {
  padding: 120px 0;
}

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

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

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

.section--navy::before {
  position: absolute;
  top: -260px;
  right: -140px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(217, 207, 181, 0.18);
  border-radius: 50%;
  content: "";
}

.section h2,
.final-cta h2 {
  font-size: clamp(2.65rem, 4.2vw, 4.15rem);
  line-height: 1.08;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.83fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(64px, 9vw, 126px);
}

.split-media {
  position: relative;
  min-height: 660px;
  padding: 0 26px 30px 0;
}

.split-media::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 76%;
  border: 1px solid var(--gold-light);
  content: "";
}

.split-media > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 630px;
  border-radius: 220px 220px 8px 8px;
  object-fit: cover;
  box-shadow: 0 25px 65px rgba(44, 62, 86, 0.13);
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 74px;
  width: min(280px, 72%);
  border-radius: 2px 18px 18px 2px;
  padding: 23px 27px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(44, 62, 86, 0.24);
}

.image-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.image-caption strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
}

.split-copy h2 {
  max-width: 660px;
}

.section-lead,
.split-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.value-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.value-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.value-list article > span {
  padding-top: 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.value-list h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 720;
}

.text-link span {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 220ms ease;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.5fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.66);
}

.care-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.care-card {
  min-height: 310px;
  padding: 36px 28px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease, transform 220ms ease;
}

.care-card:last-child {
  border-right: 0;
}

.care-card:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-4px);
}

.care-card > span {
  display: block;
  margin-bottom: 68px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.care-card h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.care-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.7;
}

.care-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 44px;
}

.care-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
  background: var(--cream);
}

.gallery-item--large {
  grid-row: span 2;
  grid-column: span 6;
}

.gallery-item--wide {
  grid-column: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(20, 31, 45, 0.72));
  content: "";
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.02rem;
}

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
}

.gallery-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.gallery-footer .text-link {
  margin-top: 0;
}

.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}

.community-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.community-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 35px;
}

.community-points span {
  border: 1px solid rgba(44, 62, 86, 0.18);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--navy);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.community-media {
  position: relative;
  padding: 0 0 34px 34px;
}

.community-media::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 72%;
  border: 1px solid var(--gold);
  content: "";
}

.community-media > img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  border-radius: 12px 190px 12px 12px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(44, 62, 86, 0.13);
}

.quote-card {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 0;
  display: flex;
  max-width: 350px;
  gap: 14px;
  border-radius: 16px;
  padding: 22px 25px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(44, 62, 86, 0.16);
}

.quote-card > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 0.85;
}

.quote-card p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.45;
}

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

.center-heading {
  max-width: 790px;
  margin: 0 auto 62px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
}

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

.process-grid article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
  background: var(--warm);
}

.process-grid article::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(169, 153, 108, 0.25);
  border-radius: 50%;
  content: "";
}

.process-grid article > span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-family: var(--serif);
}

.process-grid h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 135px;
}

.faq-intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

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

.faq-list summary {
  display: grid;
  min-height: 96px;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.22rem;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--gold);
  font-size: 0.78rem;
}

.faq-list summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 720px;
  margin: -7px 32px 28px 54px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

.final-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.final-cta-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 42, 61, 0.99) 0%, rgba(28, 42, 61, 0.93) 42%, rgba(28, 42, 61, 0.38) 76%, rgba(28, 42, 61, 0.22) 100%),
    url("../images/hero-cuidado.webp") center 42% / cover no-repeat;
  transform: scale(1.015);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.final-cta h2 {
  max-width: 750px;
  color: var(--white);
}

.final-cta-content > p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.site-footer {
  padding: 72px 0 24px;
  background: #172437;
  color: rgba(255, 255, 255, 0.68);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.75fr;
  gap: 70px;
}

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

.footer-brand p,
.footer-main > div > p {
  margin: 16px 0 0;
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-brand p {
  max-width: 370px;
}

.footer-label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 730;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-link {
  margin-top: 18px;
  padding: 0 0 5px;
  border-bottom: 1px solid rgba(217, 207, 181, 0.52);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.76rem;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.68rem;
}

.mobile-cta {
  display: none;
}

.modal-backdrop {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 28px;
  background: rgba(16, 25, 38, 0.78);
  backdrop-filter: blur(10px);
  animation: backdrop-in 180ms ease both;
}

.contact-modal {
  position: relative;
  display: grid;
  width: min(1080px, 100%);
  max-height: calc(100vh - 56px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.3);
  animation: modal-in 260ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(44, 62, 86, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-intro {
  position: relative;
  overflow: hidden;
  padding: 44px 42px;
  background: var(--cream);
}

.modal-intro::after {
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(169, 153, 108, 0.32);
  border-radius: 50%;
  content: "";
}

.modal-intro > img {
  width: 105px;
  height: 72px;
  margin-bottom: 72px;
  object-fit: contain;
  object-position: left center;
}

.modal-intro h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.1;
}

.modal-intro > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.modal-contact-note {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 42px;
  left: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(44, 62, 86, 0.13);
}

.modal-contact-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.modal-contact-note strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.modal-form-wrap {
  overflow-y: auto;
  padding: 60px 54px 44px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.02em;
}

.field--full {
  grid-column: 1 / -1;
}

.field small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(44, 62, 86, 0.17);
  border-radius: 10px;
  outline: 0;
  background: var(--warm);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 88px;
  resize: vertical;
  padding: 14px 15px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #949cab;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(169, 153, 108, 0.12);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.button--submit {
  width: 100%;
  margin-top: 22px;
}

.form-privacy {
  margin: 12px 0 0;
  color: #8b93a0;
  font-size: 0.65rem;
  text-align: center;
}

.form-feedback {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: center;
}

.form-feedback.is-error {
  color: #9b3b3b;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.35rem;
}

.form-success h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.form-success p {
  max-width: 540px;
  margin: 18px 0 30px;
  color: var(--muted);
  line-height: 1.75;
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 55px;
  }

  .hero-card {
    right: -10px;
  }

  .hero-seal {
    left: -16px;
  }

  .care-card {
    padding-inline: 20px;
  }

  .quote-card {
    right: -8px;
  }
}

@media (max-width: 940px) {
  .header-inner {
    min-height: 82px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
    padding-bottom: 80px;
  }

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

  .hero-visual {
    width: min(620px, 92%);
    justify-self: center;
  }

  .hero-image-frame {
    aspect-ratio: 1.08;
    border-radius: 250px 250px 30px 30px;
  }

  .hero-image-frame img {
    object-position: 70% center;
  }

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

  .trust-bar > div:nth-child(2) {
    border-right: 0;
  }

  .trust-bar > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-grid,
  .community-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-media {
    width: min(560px, 88%);
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

  .care-card:nth-child(2) {
    border-right: 0;
  }

  .care-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .gallery-grid {
    grid-auto-rows: 260px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item--large {
    grid-row: span 2;
    grid-column: span 1;
  }

  .community-media {
    width: min(720px, 94%);
    justify-self: center;
  }

  .faq-intro {
    position: static;
  }

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

  .contact-modal {
    max-height: none;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .modal-intro {
    padding: 34px 38px;
  }

  .modal-intro > img {
    height: 60px;
    margin-bottom: 34px;
  }

  .modal-intro h2 {
    max-width: 650px;
  }

  .modal-contact-note {
    position: static;
    margin-top: 28px;
  }

  .modal-form-wrap {
    overflow: visible;
    padding: 42px 38px;
  }
}

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

  .site-header {
    position: absolute;
  }

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

  .brand {
    width: 92px;
  }

  .brand img {
    height: 60px;
  }

  .button--header {
    min-height: 44px;
    padding: 0 17px;
    font-size: 0.76rem;
  }

  .button--header span {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-grid {
    gap: 50px;
    padding-bottom: 64px;
  }

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

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

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

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

  .hero-visual {
    width: 100%;
    padding-left: 0;
  }

  .hero-image-frame {
    aspect-ratio: 0.93;
    border-width: 6px;
    border-radius: 180px 180px 24px 24px;
  }

  .hero-card {
    right: 8px;
    bottom: 4px;
    padding: 18px 20px;
  }

  .hero-card strong {
    font-size: 1rem;
  }

  .hero-seal {
    top: -4px;
    left: -8px;
    width: 96px;
    height: 96px;
  }

  .trust-bar {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
  }

  .trust-bar > div {
    min-height: 92px;
    gap: 11px;
    padding: 18px 14px;
  }

  .trust-bar p {
    font-size: 0.63rem;
  }

  .section {
    padding: 86px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
  }

  .split-grid,
  .community-grid,
  .faq-grid {
    gap: 55px;
  }

  .split-media {
    width: calc(100% - 18px);
    min-height: 525px;
    justify-self: start;
    padding-right: 12px;
  }

  .split-media > img {
    height: 500px;
    border-radius: 170px 170px 8px 8px;
  }

  .image-caption {
    right: -18px;
    bottom: 50px;
  }

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

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

  .care-card,
  .care-card:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 28px 10px;
  }

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

  .care-card > span {
    margin-bottom: 28px;
  }

  .care-cta,
  .gallery-footer,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .care-cta .button {
    width: 100%;
  }

  .gallery-grid {
    grid-auto-rows: 245px;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item--large,
  .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .community-media {
    width: calc(100% - 16px);
    padding: 0 0 24px 18px;
  }

  .community-media > img {
    min-height: 420px;
    border-radius: 8px 120px 8px 8px;
  }

  .quote-card {
    right: -16px;
    max-width: calc(100% - 30px);
  }

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

  .process-grid article {
    min-height: 245px;
  }

  .faq-list summary {
    min-height: 90px;
    grid-template-columns: 28px 1fr 20px;
    gap: 10px;
    font-size: 1.05rem;
  }

  .faq-list details > p {
    margin-left: 38px;
  }

  .final-cta,
  .final-cta-content {
    min-height: 650px;
  }

  .final-cta-image {
    background:
      linear-gradient(90deg, rgba(28, 42, 61, 0.98), rgba(28, 42, 61, 0.73)),
      url("../images/hero-cuidado.webp") 68% center / cover no-repeat;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 120;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 12px 34px rgba(28, 42, 61, 0.26);
    color: var(--white);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 740;
  }

  .modal-backdrop {
    display: block;
    padding: 0;
    background: var(--white);
  }

  .contact-modal {
    width: 100%;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .modal-intro {
    padding: 28px 24px 32px;
  }

  .modal-intro > img {
    width: 88px;
    height: 56px;
    margin-bottom: 26px;
  }

  .modal-intro h2 {
    padding-right: 34px;
  }

  .modal-contact-note {
    right: 24px;
    left: 24px;
  }

  .modal-form-wrap {
    padding: 34px 24px 48px;
  }

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

  .field--full {
    grid-column: auto;
  }

  .form-success {
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
