*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #21161b;
  background:
    radial-gradient(circle at top left, rgba(135, 26, 62, 0.07), transparent 26%),
    linear-gradient(180deg, #f4cfd9 0%, #fbf3f0 34%, #fffdfb 100%);
}

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

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

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

:root {
  --ink: #1f1318;
  --soft-ink: #5d4b53;
  --line: rgba(68, 34, 46, 0.12);
  --line-strong: rgba(68, 34, 46, 0.18);
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --brand: #7a102f;
  --brand-dark: #5b0a21;
  --brand-soft: #e9c7d2;
  --shadow: 0 30px 80px rgba(97, 32, 53, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 247, 0.62);
  border-bottom: 1px solid rgba(68, 34, 46, 0.08);
}

.site-header .nav.scrolled {
  min-height: 76px;
}

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

.brand img {
  height: 58px;
  width: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-panel a {
  font-size: 0.95rem;
  color: var(--soft-ink);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #8f173a 0%, #6f0f2b 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(122, 16, 47, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(122, 16, 47, 0.24);
}

.btn-secondary,
.btn-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-nav:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line-strong);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.55rem;
  flex: 0 0 auto;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-primary .btn-icon {
  width: 1.38rem;
  height: 1.38rem;
}

.btn-whatsapp {
  background: linear-gradient(180deg, #8f173a 0%, #6f0f2b 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 40px rgba(122, 16, 47, 0.2);
}

.nav-panel a.btn-whatsapp,
.nav-panel a.btn-whatsapp:hover {
  color: #fff;
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, #9b1a41 0%, #7a102f 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 22px 44px rgba(122, 16, 47, 0.24);
}

.btn-whatsapp .btn-icon {
  color: #25d366;
}

.hero {
  position: relative;
  padding: 54px 0 56px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.7), transparent 26%),
    linear-gradient(180deg, rgba(244, 207, 217, 0.74) 0%, rgba(250, 242, 239, 0.36) 48%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: calc(100vh - 138px);
  display: grid;
  place-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(860px, 100%);
  padding: 90px 0 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 7.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 800;
  color: #090609;
}

.headline-line,
.headline-accent {
  display: block;
}

.headline-line {
  white-space: nowrap;
}

.headline-accent {
  margin-top: 0.08em;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--brand);
}

.hero-text {
  width: min(710px, 100%);
  margin: 26px auto 0;
  font-size: clamp(1.06rem, 2vw, 1.34rem);
  line-height: 1.7;
  color: var(--soft-ink);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-watermark {
  position: absolute;
  right: -2%;
  top: 10%;
  width: min(40vw, 520px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-220px, 18px, 0) scale(0.92);
  --trail-opacity: 0;
  --trail-shift: -42px;
  --trail-stretch: 0.9;
}

.hero-watermark::before {
  content: "";
  position: absolute;
  inset: 28% 36% 28% -18%;
  background: linear-gradient(90deg, rgba(122, 16, 47, 0) 0%, rgba(122, 16, 47, 0.08) 24%, rgba(122, 16, 47, 0.22) 55%, rgba(122, 16, 47, 0) 100%);
  transform: translateX(var(--trail-shift)) scaleX(var(--trail-stretch)) skewX(-18deg);
  transform-origin: right center;
  filter: blur(16px);
  opacity: var(--trail-opacity);
}

.hero-watermark::after {
  content: "";
  position: absolute;
  inset: 34% 42% 34% -10%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.32) 42%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(calc(var(--trail-shift) * 0.72)) scaleX(calc(var(--trail-stretch) * 0.9)) skewX(-18deg);
  transform-origin: right center;
  filter: blur(10px);
  opacity: calc(var(--trail-opacity) * 0.8);
}

.hero-watermark img {
  filter: saturate(0.75);
  transform-origin: 62% 42%;
}

.hero.hero-active .hero-watermark {
  animation: mascotEntry 1.05s cubic-bezier(0.18, 0.88, 0.24, 1) forwards;
}

.section {
  padding: 92px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.why-copy h2,
.final-cta-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.section-intro,
.why-copy p,
.final-cta-copy p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.75;
  font-size: 1rem;
}

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

.service-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.7) 100%);
  box-shadow: 0 20px 48px rgba(97, 32, 53, 0.06);
}

.service-index {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-status {
  margin: -4px 0 12px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--soft-ink);
  line-height: 1.75;
}

.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 26px;
}

.chip-list li,
.cta-points span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122, 16, 47, 0.14);
  background: rgba(122, 16, 47, 0.04);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 800;
}

.text-link-muted {
  color: var(--soft-ink);
  opacity: 0.72;
  pointer-events: none;
  cursor: default;
}

.text-link::after {
  content: "->";
}

.text-link-muted::after {
  content: "";
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.why-copy,
.pillar-list,
.final-cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.68) 100%);
  box-shadow: var(--shadow);
}

.why-copy {
  padding: 34px;
}

.why-copy p {
  margin-top: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat-grid article {
  padding: 22px;
  border-radius: 18px;
  background: rgba(122, 16, 47, 0.05);
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand);
}

.stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.pillar-list {
  padding: 18px 28px;
}

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

.pillar:last-child {
  border-bottom: 0;
}

.pillar span {
  color: var(--brand);
  font-weight: 800;
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.pillar p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.75;
}

.final-cta {
  padding-top: 16px;
  padding-bottom: 90px;
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  padding: 34px;
}

.final-cta-copy {
  padding: 8px 6px;
}

.final-cta-copy p {
  margin-top: 18px;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-form {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(122, 16, 47, 0.08);
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(122, 16, 47, 0.35);
  box-shadow: 0 0 0 4px rgba(122, 16, 47, 0.08);
  background: #fff;
}

.form-grid textarea {
  resize: vertical;
  min-height: 150px;
}

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

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.site-footer {
  padding: 0 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-grid img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid a {
  color: var(--soft-ink);
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid div:nth-child(2),
.footer-grid div:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 0.88rem;
}

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

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

@keyframes mascotEntry {
  0% {
    opacity: 0;
    transform: translate3d(-220px, 18px, 0) scale(0.92);
  }

  72%,
  100% {
    opacity: 0.12;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

@media (max-width: 1024px) {
  .services-grid,
  .section-head,
  .why-layout,
  .final-cta-card,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    align-items: start;
  }

  .hero-watermark {
    width: min(44vw, 420px);
    top: 14%;
    right: -6%;
  }

  .final-cta-card,
  .why-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(1180px, calc(100% - 32px));
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    height: 50px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 249, 0.96);
    box-shadow: 0 24px 60px rgba(97, 32, 53, 0.12);
  }

  .nav-panel.open {
    display: flex;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 70px 0 88px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .headline-line {
    white-space: normal;
  }

  .hero-watermark {
    width: min(72vw, 360px);
    top: 18%;
    right: -18%;
  }

  .services-grid,
  .section-head,
  .stat-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .final-cta {
    padding: 74px 0;
  }

  .service-card,
  .why-copy,
  .pillar-list,
  .final-cta-card,
  .contact-form {
    padding: 22px;
  }

  .final-cta-card {
    gap: 14px;
  }

  .footer-bar {
    flex-direction: column;
  }
}
