@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/baloo2-800-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunitosans-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunitosans-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink-950: #110b2f;
  --ink-900: #17103d;
  --ink-800: #251a58;
  --ink-700: #3c2b75;
  --orange-500: #ff963a;
  --orange-400: #ffad5e;
  --orange-100: #fff0df;
  --text: #2c2940;
  --muted: #68647a;
  --line: #e9e6f0;
  --surface: #ffffff;
  --soft: #f6f5f9;
  --green: #20a464;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1160px;
  --shadow: 0 24px 70px rgb(17 11 47 / 0.13);
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink-950);
  background: white;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  padding-block: 22px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.brand-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.45);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.12);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.18);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.brand-copy {
  font-size: 0.82rem;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button:focus-visible,
.form-toolbar a:focus-visible,
.whatsapp-button:focus-visible,
.brand:focus-visible {
  outline: 3px solid white;
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.button-light {
  border-color: rgb(255 255 255 / 0.35);
  color: white;
  background: rgb(255 255 255 / 0.11);
  backdrop-filter: blur(10px);
}

.button-light:hover {
  background: rgb(255 255 255 / 0.2);
}

.button-primary {
  color: var(--ink-950);
  background: var(--orange-500);
  box-shadow: 0 14px 34px rgb(255 150 58 / 0.25);
}

.button-primary:hover {
  background: var(--orange-400);
  box-shadow: 0 18px 42px rgb(255 150 58 / 0.34);
}

.button svg,
.hero-note svg,
.form-toolbar svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink-950);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 68% 40%, rgb(255 150 58 / 0.14), transparent 27%),
    linear-gradient(90deg, rgb(10 6 38 / 0.96) 0%, rgb(16 10 52 / 0.82) 47%, rgb(15 9 43 / 0.48) 100%),
    linear-gradient(0deg, rgb(17 11 47 / 0.75), transparent 42%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -150px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(255 255 255 / 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(255 255 255 / 0.025), 0 0 0 140px rgb(255 255 255 / 0.018);
  content: "";
}

.hero-media,
.hero-media img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  padding-block: 150px 92px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: #f3efff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ae59d;
  box-shadow: 0 0 0 5px rgb(90 229 157 / 0.14);
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.4vw, 5.75rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--orange-500);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 25px 0 0;
  color: rgb(255 255 255 / 0.79);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.hero-lead strong {
  color: white;
}

.hero-units {
  max-width: 610px;
  margin-top: 26px;
}

.hero-units > p {
  margin: 0 0 9px;
  color: rgb(255 255 255 / 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.hero-logo {
  display: grid;
  height: 78px;
  place-items: center;
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: inset 0 1px 0 white;
}

.hero-logo img {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgb(255 255 255 / 0.77);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-note svg {
  color: #6ce9a7;
}

.dates-card {
  padding: 27px;
  border: 1px solid rgb(255 255 255 / 0.17);
  border-radius: 22px;
  background: rgb(14 9 48 / 0.62);
  box-shadow: 0 22px 65px rgb(0 0 0 / 0.22);
  backdrop-filter: blur(15px);
}

.dates-label {
  margin: 0 0 16px;
  color: var(--orange-400);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.date-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 15px;
  padding-block: 16px;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.date-row time {
  display: grid;
  width: 58px;
  height: 62px;
  place-content: center;
  border-radius: 14px;
  color: var(--ink-950);
  background: var(--orange-500);
  text-align: center;
}

.date-row time strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 0.9;
}

.date-row time span {
  margin-top: 3px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.date-row > div > strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}

.date-row p {
  margin: 3px 0 0;
  color: rgb(255 255 255 / 0.67);
  font-size: 0.86rem;
  line-height: 1.35;
}

.dates-footnote {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 0.55);
  font-size: 0.78rem;
}

.form-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 118px) 95px;
  background:
    radial-gradient(circle at 4% 3%, rgb(255 150 58 / 0.08), transparent 22%),
    linear-gradient(180deg, #fbfaff 0%, #f4f2f8 100%);
}

.form-section::before {
  position: absolute;
  top: 90px;
  left: -180px;
  width: 360px;
  height: 360px;
  border: 70px solid rgb(37 26 88 / 0.025);
  border-radius: 50%;
  content: "";
}

.form-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 38px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.form-heading > p:last-child {
  max-width: 620px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.form-shell {
  position: relative;
  width: min(calc(100% - 32px), 900px);
  overflow: hidden;
  border: 1px solid rgb(37 26 88 / 0.09);
  border-radius: 24px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.form-toolbar {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.form-toolbar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-toolbar a {
  color: var(--ink-700);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.form-toolbar a:hover {
  color: var(--orange-500);
  text-decoration: underline;
}

.form-frame {
  position: relative;
  min-height: 2300px;
  background: #f6f6f6;
}

.form-frame iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 2300px;
  border: 0;
  opacity: 0;
  background: #f6f6f6;
  transition: opacity 0.35s ease;
}

.form-frame.is-ready iframe {
  opacity: 1;
}

.form-loading {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: start center;
  padding-top: 86px;
  color: var(--muted);
  text-align: center;
}

.form-loading span {
  width: 34px;
  height: 34px;
  margin: auto;
  border: 3px solid #dedbe6;
  border-top-color: var(--orange-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-loading p {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.form-frame.is-ready .form-loading {
  display: none;
}

.form-fallback {
  margin: 0;
  padding: 22px;
  text-align: center;
}

.form-fallback a {
  color: var(--ink-700);
  font-weight: 700;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(75px, 9vw, 112px);
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgb(255 150 58 / 0.13), transparent 24%),
    linear-gradient(145deg, var(--ink-900), var(--ink-950));
}

.contact-section::before {
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgb(255 255 255 / 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgb(255 255 255 / 0.018), 0 0 0 130px rgb(255 255 255 / 0.012);
  content: "";
}

.contact-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 38px;
  text-align: center;
}

.contact-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.contact-heading > p:last-child {
  max-width: 590px;
  margin: 14px auto 0;
  color: rgb(255 255 255 / 0.65);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: flex;
  min-width: 0;
  min-height: 340px;
  align-items: center;
  flex-direction: column;
  padding: 26px 19px 20px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 20px;
  color: var(--text);
  background: white;
  box-shadow: 0 20px 45px rgb(0 0 0 / 0.2);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgb(0 0 0 / 0.27);
}

.contact-logo {
  display: grid;
  width: 100%;
  height: 132px;
  place-items: center;
  margin-bottom: 14px;
}

.contact-logo img {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.contact-city {
  margin: 0 0 2px;
  color: var(--orange-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0 0 18px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
}

.whatsapp-button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 13px;
  color: white;
  background: #1ca85d;
  box-shadow: 0 10px 24px rgb(28 168 93 / 0.2);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  color: white;
  background: #168c4e;
  box-shadow: 0 13px 28px rgb(28 168 93 / 0.3);
  transform: translateY(-2px);
}

.whatsapp-button svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-button strong {
  display: block;
  margin-top: 2px;
  font-size: 0.87rem;
}

.site-footer {
  padding-block: 42px;
  color: rgb(255 255 255 / 0.6);
  background: var(--ink-950);
  text-align: center;
}

.footer-inner p {
  margin: 3px 0;
  font-size: 0.86rem;
}

.footer-title {
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(10 6 38 / 0.78) 0%, rgb(12 7 42 / 0.84) 48%, rgb(12 7 42 / 0.98) 100%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
    padding-block: 150px 64px;
  }

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

  .dates-card {
    width: min(100%, 620px);
  }

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

@media (max-width: 600px) {
  html {
    scroll-padding-top: 18px;
  }

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

  .site-header {
    padding-block: 16px;
  }

  .brand-number {
    width: 43px;
    height: 43px;
    border-radius: 12px;
  }

  .brand-copy {
    font-size: 0.72rem;
  }

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .button-light {
    display: none;
  }

  .hero-inner {
    gap: 28px;
    padding-block: 125px 46px;
  }

  .eyebrow {
    margin-bottom: 17px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 15vw, 4.25rem);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-units {
    margin-top: 22px;
  }

  .hero-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-logo {
    height: 76px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 27px;
  }

  .button-primary {
    width: 100%;
  }

  .hero-note {
    align-self: center;
  }

  .dates-card {
    padding: 21px;
    border-radius: 18px;
  }

  .date-row {
    grid-template-columns: 52px 1fr;
    gap: 13px;
  }

  .date-row time {
    width: 52px;
    height: 57px;
  }

  .date-row p {
    font-size: 0.8rem;
  }

  .form-section {
    padding-block: 68px 70px;
  }

  .form-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .form-heading > p:last-child {
    margin-top: 12px;
  }

  .form-shell {
    width: calc(100% - 16px);
    border-radius: 17px;
  }

  .form-toolbar {
    min-height: 56px;
    padding: 12px 15px;
  }

  .form-toolbar p,
  .form-toolbar a {
    font-size: 0.76rem;
  }

  .form-frame,
  .form-frame iframe {
    min-height: 2520px;
    height: 2520px;
  }

  .contact-section {
    padding-block: 70px;
  }

  .contact-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .contact-heading > p:last-child {
    margin: 11px 0 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: center;
    padding: 17px;
    text-align: left;
  }

  .contact-logo {
    grid-row: 1 / span 3;
    width: 76px;
    height: 90px;
    margin: 0 14px 0 0;
  }

  .contact-logo img {
    width: 76px;
    height: 86px;
  }

  .contact-city,
  .contact-card h3 {
    grid-column: 2;
  }

  .contact-card h3 {
    margin-bottom: 11px;
  }

  .whatsapp-button {
    grid-column: 1 / -1;
    margin-top: 14px;
  }

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

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

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