:root {
  --bg: #f9f6f2;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #efe6de;
  --text: #44506d;
  --muted: #6e7790;
  --line: rgba(69, 80, 109, 0.12);
  --primary: #44506d;
  --primary-dark: #313b54;
  --accent: #c1a08f;
  --accent-soft: #e6d4c7;
  --accent-strong: #b9917d;
  --shadow: 0 24px 60px rgba(68, 80, 109, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(68, 80, 109, 0.12), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(193, 160, 143, 0.3), transparent 18%),
    linear-gradient(180deg, #fcfbf9 0%, #f5eee9 52%, #ffffff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 260px;
  opacity: 0.06;
  will-change: transform;
}

body::before {
  background-image: url("./assets/images/brand-monogram-blue.png");
  background-position: 4vw 8vh;
  animation: driftLogoA 26s ease-in-out infinite alternate;
}

body::after {
  background-image: url("./assets/images/brand-monogram-blue.png");
  background-position: 58vw 30vh;
  background-size: 220px;
  opacity: 0.035;
  transform: rotate(-7deg) scale(1.08);
  animation: driftLogoB 34s ease-in-out infinite alternate;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(212, 180, 157, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(68, 80, 109, 0.08), 0 0 0 1px rgba(231, 214, 200, 0.36) inset;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 6px 10px 6px 2px;
}

.brand-mark {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 22px;
  object-fit: cover;
  padding: 0;
  background: transparent;
  box-shadow: 0 12px 28px rgba(68, 80, 109, 0.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.brand-wordmark,
.footer-wordmark {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-wordmark {
  max-width: min(28vw, 330px);
  max-height: 104px;
}

.footer-wordmark {
  width: clamp(220px, 24vw, 320px);
  margin-bottom: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fffaf6;
  box-shadow: 0 16px 30px rgba(196, 155, 127, 0.28);
}

.button-whatsapp {
  gap: 10px;
  background: linear-gradient(135deg, #26d367, #159947);
  color: #f4fff8;
  box-shadow: 0 16px 30px rgba(21, 153, 71, 0.22);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: linear-gradient(135deg, #2ce06f, #169245);
}

.button-secondary {
  border-color: rgba(212, 180, 157, 0.44);
  background: rgba(212, 180, 157, 0.28);
  color: var(--text);
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.section {
  padding: 88px 0;
}

.hero {
  position: relative;
  display: block;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(193, 160, 143, 0.24);
  border-radius: 38px;
  background:
    radial-gradient(circle at 16% 18%, rgba(230, 212, 199, 0.26), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 239, 0.95));
  box-shadow: 0 30px 70px rgba(68, 80, 109, 0.12);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(470px, calc(100% - 72px));
  max-width: 470px;
  margin: 54px 0 54px 56px;
  padding: 34px 34px 34px 36px;
  border: 1px solid rgba(212, 180, 157, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(68, 80, 109, 0.08);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow:empty {
  display: none;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

#hero-title {
  max-width: 10.5ch;
  white-space: pre-line;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hero-text,
.section-heading p,
.about-copy p,
.contact-copy p,
#footer-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-text {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

.hero-highlights,
.about-points,
.contact-cards,
#credibility-items {
  display: grid;
  gap: 14px;
}

.hero-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 460px;
}

#hero-highlights:empty {
  display: none;
}

.pill-card,
.contact-card,
.stat-card {
  padding: 18px;
  background: var(--surface);
  border: 1px solid rgba(212, 180, 157, 0.24);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.pill-card strong,
.contact-card strong,
.stat-card strong,
.process-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.pill-card span,
.contact-card span,
.stat-card span,
.process-step span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-visual {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  width: min(48%, 670px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  right: 3%;
  top: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 212, 199, 0.78) 0%, rgba(230, 212, 199, 0.32) 44%, rgba(230, 212, 199, 0) 72%);
  filter: blur(14px);
}

.hero-card {
  height: 100%;
  overflow: hidden;
  width: 100%;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(68, 80, 109, 0.12);
  border: 1px solid rgba(212, 180, 157, 0.18);
}

.hero-card-main {
  height: 100%;
  background:
    radial-gradient(circle at 50% 42%, rgba(230, 212, 199, 0.34), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.94));
  position: relative;
}

.hero-card-main img,
.process-image-card img,
.about-image img {
  height: 100%;
  object-fit: cover;
}

#hero-image {
  width: 92%;
  height: 100%;
  object-fit: contain;
  object-position: 56% center;
  transform: none;
  margin: 0 auto;
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 24%, rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
}

.hero-card-floating {
  display: none;
}

.floating-label {
  margin: 0 0 8px;
  color: rgba(24, 32, 40, 0.56);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-card-floating strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.credibility-band {
  margin-top: -24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(231, 214, 200, 0.5));
  border: 1px solid rgba(212, 180, 157, 0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
}

.grid-section,
.process-section,
.about-section,
.faq-section,
.contact-section {
  position: relative;
  margin-top: 28px;
  padding: 56px;
  border-radius: 38px;
  border: 1px solid rgba(193, 160, 143, 0.22);
  box-shadow: 0 22px 54px rgba(68, 80, 109, 0.08);
}

.grid-section {
  background: linear-gradient(180deg, rgba(230, 212, 199, 0.7), rgba(255, 255, 255, 0.95));
}

.process-section {
  background:
    linear-gradient(135deg, rgba(68, 80, 109, 0.14), rgba(255, 255, 255, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 212, 199, 0.4));
}

.about-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 212, 199, 0.56)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(68, 80, 109, 0.1), rgba(230, 212, 199, 0.48)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(68, 80, 109, 0.18), rgba(255, 255, 255, 0.94)),
    linear-gradient(180deg, rgba(230, 212, 199, 0.48), rgba(255, 255, 255, 0.96));
}

#credibility-items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-section .cards-grid,
.process-steps,
.faq-list {
  display: grid;
  gap: 18px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.area-card,
.process-step,
.faq-item,
.contact-form,
.process-image-card,
.about-image {
  background: var(--surface);
  border: 1px solid rgba(212, 180, 157, 0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.area-card {
  padding: 28px;
  min-height: 230px;
}

.area-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(212, 180, 157, 0.28);
  color: var(--accent-strong);
  font-weight: 800;
}

.area-card h3,
.faq-item strong {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.area-card p,
.faq-answer {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.process-layout,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.process-steps {
  margin-top: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
}

.process-step-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212, 180, 157, 0.28), rgba(231, 214, 200, 0.95));
  color: var(--accent-strong);
  font-weight: 800;
}

.process-image-card,
.about-image {
  overflow: hidden;
}

.about-copy {
  align-self: center;
}

.about-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.faq-list {
  margin-top: 34px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-answer {
  margin-top: 12px;
}

.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(212, 180, 157, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d98a5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 36px 32px;
  border: 1px solid rgba(193, 160, 143, 0.24);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(230, 212, 199, 0.58));
  box-shadow: 0 22px 54px rgba(68, 80, 109, 0.08);
}

.site-footer p {
  max-width: 560px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-width: 150px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-weight: 800;
  text-align: center;
  border: 1px solid rgba(212, 180, 157, 0.34);
  box-shadow: 0 20px 40px rgba(68, 80, 109, 0.14);
}

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

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

@keyframes driftLogoA {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-24px, 18px, 0);
  }
}

@keyframes driftLogoB {
  0% {
    transform: rotate(-7deg) translate3d(0, 0, 0) scale(1.08);
  }

  100% {
    transform: rotate(-3deg) translate3d(26px, -20px, 0) scale(1.12);
  }
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 28px;
    padding: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .process-layout,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(390px, calc(100% - 48px));
    max-width: 390px;
    padding: 52px 0 52px 40px;
  }

  .hero-visual {
    top: 24px;
    right: 24px;
    bottom: 24px;
    width: min(52%, 560px);
  }

  #hero-image {
    width: 96%;
    object-position: center center;
  }

  .cards-grid,
  .hero-highlights,
  .about-points,
  .contact-cards,
  #credibility-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .grid-section,
  .process-section,
  .about-section,
  .faq-section,
  .contact-section {
    padding: 40px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 16px;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-radius: 24px;
  }

  body::before,
  body::after {
    background-size: 170px;
  }

  body::after {
    background-size: 145px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 18px;
  }

  .brand-wordmark {
    max-width: min(55vw, 240px);
    max-height: 74px;
  }

  .footer-wordmark {
    width: min(240px, 66vw);
  }

  .section {
    padding: 72px 0;
  }

  .site-nav,
  .button,
  .pill-card span,
  .contact-card span,
  .stat-card span,
  .process-step span,
  .area-card p,
  .faq-answer,
  .contact-form input,
  .contact-form textarea,
  #footer-text {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .section-heading p,
  .about-copy p,
  .contact-copy p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .pill-card strong,
  .contact-card strong,
  .stat-card strong,
  .process-step strong,
  .area-card h3,
  .faq-item strong {
    font-size: 1.02rem;
  }

  .hero,
  .grid-section,
  .process-section,
  .about-section,
  .faq-section,
  .contact-section {
    padding: 28px;
    border-radius: 28px;
  }

  .hero {
    min-height: 560px;
    padding: 0;
  }

  .hero-copy {
    width: min(52%, 250px);
    max-width: 250px;
    padding: 34px 16px 34px 22px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 78%, rgba(255, 255, 255, 0.38) 100%);
  }

  .hero-visual {
    position: absolute;
    top: 16px;
    right: 12px;
    bottom: 16px;
    width: min(58%, 300px);
    inset: auto;
  }

  #hero-image {
    object-fit: contain;
    width: 100%;
    object-position: center center;
  }

  .hero-card-main::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 48%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.12) 66%, rgba(255, 255, 255, 0) 74%);
  }

  .hero h1,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1;
  }

  #hero-title {
    max-width: 10.5ch;
    font-size: clamp(1.58rem, 5.7vw, 1.95rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
  }

  .hero-text {
    max-width: 14ch;
    font-size: 0.92rem;
    line-height: 1.36;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .area-card,
  .process-step,
  .faq-item,
  .contact-form,
  .process-image-card,
  .about-image {
    padding: 20px;
  }

  .faq-item {
    padding: 20px;
  }

  .site-footer {
    padding: 24px;
  }

  .cards-grid,
  .hero-highlights,
  .about-points,
  .contact-cards,
  #credibility-items {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
