:root {
  --primary: #791c2e;
  --primary-dark: #621726;
  --primary-soft: #f7ecef;
  --text: #1f1f1f;
  --muted: #656565;
  --background: #fff;
  --surface: #f8f7f5;
  --border: #e8e4df;
  --shadow: 0 24px 64px rgba(40, 24, 27, 0.1);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
h1 {
  font-size: clamp(2.7rem, 7vw, 4.8rem);
  margin: 0.8rem 0 1.15rem;
}
h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.25rem);
  margin: 0.55rem 0 1.1rem;
}
h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}
.container {
  max-width: 1180px;
}
.narrow {
  max-width: 900px;
}
.section-pad {
  padding: 88px 0;
}
.surface {
  background: var(--surface);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  background: #fff;
  padding: 0.75rem 1rem;
  border: 2px solid var(--primary);
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(232, 228, 223, 0.85);
  backdrop-filter: blur(16px);
}
.navbar {
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  line-height: 1;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #454545 !important;
  padding: 0.75rem 0.7rem !important;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--primary) !important;
}
.nav-cta {
  font-size: 0.84rem;
  padding: 0.72rem 1.15rem !important;
}
.navbar-toggler {
  border: 0;
  padding: 0.5rem;
}
.btn {
  border-radius: 3px;
  padding: 0.82rem 1.45rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
}
.btn-lg {
  font-size: 0.95rem;
  padding: 1rem 1.4rem;
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: linear-gradient(135deg, #fff 0%, #fff 55%, #f7f2f1 100%);
}
.hero:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(121, 28, 46, 0.1);
  border-radius: 50%;
  left: -230px;
  bottom: -180px;
}
.eyebrow,
.kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow {
  padding: 0.5rem 0.78rem;
  background: var(--primary-soft);
  border-radius: 99px;
  letter-spacing: 0.08em;
}
.hero-lead {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.72rem);
  line-height: 1.45;
  margin: 0 0 1rem;
}
.hero-copy {
  color: var(--muted);
  max-width: 640px;
}
.hero-visual {
  position: relative;
  padding: 0 0 28px 28px;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 28px 28px 0 0;
  border: 1px solid rgba(121, 28, 46, 0.25);
}
.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.section-heading {
  max-width: 750px;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.03rem;
}
.info-card {
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(40, 24, 27, 0.08);
  border-color: rgba(121, 28, 46, 0.22);
}
.info-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.legal-note {
  font-size: 0.75rem;
  color: #777;
}
.video-frame {
  overflow: hidden;
  border: 8px solid #fff;
  background: #1c1617;
  box-shadow: var(--shadow);
}
.form-section {
  background: linear-gradient(to top, #fff 22%, var(--surface) 22%);
}
.form-shell {
  overflow: hidden;
  box-shadow: var(--shadow);
}
.form-intro {
  padding: clamp(2.2rem, 6vw, 4rem);
  color: #fff;
  background: #2a2223;
}
.form-intro h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}
.form-intro p {
  color: #d8d0d1;
}
.kicker-light {
  color: #dcb3ba;
}
.privacy-line {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  color: #d8d0d1;
}
.form-panel {
  padding: clamp(2rem, 6vw, 4rem);
  background: #fff;
}
.form-label {
  font-size: 0.84rem;
  font-weight: 700;
}
.form-label span {
  font-weight: 400;
  color: #888;
}
.form-control,
.form-select {
  min-height: 54px;
  border-color: var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(121, 28, 46, 0.1);
}
.form-disclaimer {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.7rem;
  color: #888;
}
.form-disclaimer a {
  color: var(--primary);
}
.text-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(121, 28, 46, 0.3);
}
.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--primary);
}
.final-cta:before,
.final-cta:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.final-cta:before {
  width: 300px;
  height: 300px;
  left: -120px;
  top: -180px;
}
.final-cta:after {
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -170px;
}
.final-cta .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.final-cta p {
  max-width: 620px;
  margin: 0 auto 1.8rem;
  color: #eadcdf;
}
.final-cta .btn-light {
  color: var(--primary);
}
.site-footer {
  padding: 70px 0 22px;
  color: #f7f5f5;
  background: var(--primary);
}
.brand-light {
  color: #fff;
}
.footer-copy {
  max-width: 310px;
  margin-top: 1.3rem;
  color: #ededed;
  font-size: 0.85rem;
  line-height: 1.2rem;
}
.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
}
.site-footer a,
.site-footer address {
  display: block;
  margin: 0.55rem 0;
  color: #ededed;
  font-size: 0.82rem;
  font-style: normal;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid #352d2f;
  color: #81787a;
  font-size: 0.7rem;
}
.footer-bottom div {
  display: flex;
  gap: 1.3rem;
}
.footer-bottom a {
  display: inline;
  margin: 0;
}
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1020;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #238b57;
  box-shadow: 0 10px 30px rgba(22, 95, 59, 0.32);
  font-size: 1.35rem;
  text-decoration: none;
}
.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}
.mobile-cta {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.legal-page {
  min-height: 60vh;
  padding: 80px 0;
}
.legal-page article {
  max-width: 800px;
}
.legal-page h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}
.legal-page h2 {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 1.2rem;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0 1.4rem;
  }
  .nav-cta {
    display: block;
    margin-top: 0.7rem;
    text-align: center;
  }
  .hero {
    padding-top: 54px;
  }
  .hero-visual {
    max-width: 680px;
    margin: auto;
  }
  .form-intro,
  .form-panel {
    padding: 2.5rem;
  }
  .section-pad {
    padding: 76px 0;
  }
}
@media (max-width: 767.98px) {
  body {
    padding-bottom: 69px;
  }
  .section-pad {
    padding: 64px 0;
  }
  h1 {
    font-size: 2.75rem;
  }
  .hero {
    padding-top: 44px;
  }
  .hero-visual {
    padding: 0 0 18px 18px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom div {
    margin-top: 0.7rem;
  }
  .floating-whatsapp {
    display: none;
  }
  .mobile-cta {
    position: fixed;
    z-index: 1030;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .mobile-cta .btn {
    width: 100%;
    padding: 0.82rem;
  }
  .site-footer {
    padding-bottom: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
