/* ════════════════════════════════════════════════════════════
   GLOBAL
════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'TestTiemposHeadline';
  src: url('assets/font/TestTiemposHeadline-Light-BF66457a50df5a0.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: rgb(255, 180, 51);
  --gold-light: rgb(255, 217, 153);
  --gold-bright: rgb(245, 212, 154);
  --gold-deep: rgb(180, 120, 30);
  --gold-soft: rgba(255, 180, 51, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  overflow-x: hidden;
}

main {
  width: 100%;
  display: block;
  padding-top: 60px;
}


/* ════════════════════════════════════════════════════════════
   SHARED BUTTON (gold gradient — used in Navbar + Forms)
════════════════════════════════════════════════════════════ */

.btn-inner {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(290deg,
      rgb(255, 217, 153) 0%,
      rgb(255, 180, 51) 30.29%,
      rgb(245, 212, 154) 67.29%,
      rgb(255, 180, 51) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.btn-top-border {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 45%;
  border-top: 2px solid rgba(255, 240, 200, 0.9);
  border-right: 2px solid rgba(255, 240, 200, 0.9);
  border-top-right-radius: 12px;
  z-index: 5;
  pointer-events: none;
  filter: blur(1.5px);
  -webkit-mask-image: radial-gradient(ellipse 130% 130% at 100% 0%, black 35%, transparent 70%);
  mask-image: radial-gradient(ellipse 130% 130% at 100% 0%, black 35%, transparent 70%);
  transition: width 0.45s ease, height 0.45s ease;
}

.btn-bottom-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 45%;
  border-bottom: 2px solid rgba(255, 240, 200, 0.9);
  border-left: 2px solid rgba(255, 240, 200, 0.9);
  border-bottom-left-radius: 12px;
  z-index: 5;
  pointer-events: none;
  filter: blur(1.5px);
  -webkit-mask-image: radial-gradient(ellipse 130% 130% at 0% 100%, black 35%, transparent 70%);
  mask-image: radial-gradient(ellipse 130% 130% at 0% 100%, black 35%, transparent 70%);
  transition: width 0.45s ease, height 0.45s ease;
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgb(255, 217, 153) 0%, transparent 100%);
  opacity: 0.55;
  z-index: 2;
  border-radius: 999px;
}

.btn-text {
  position: relative;
  color: #2a1a05;
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  z-index: 6;
  text-shadow: 0 1px 2px rgba(255, 230, 180, 0.35);
}


/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */

.navbar {
  background-color: #0c0c0c;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 180, 51, 0.10);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 60px;
}

.nav-container a {
  text-decoration: none;
}

.nav-logo {
  color: #fff;
  font-family: 'TestTiemposHeadline', 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  display: flex;
  align-items: baseline;
}

.nav-com {
  font-size: 0.95rem;
  font-weight: normal;
  color: var(--gold);
  margin-left: 4px;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0px !important;
}

.nav-link {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-active {
  color: var(--gold);
  font-weight: 600;
}

.nav-active:hover {
  color: var(--gold-light);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 38px;
  background-color: rgb(59, 59, 59);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nav-btn .btn-text {
  font-size: 0.9rem;
}

.nav-btn:hover {
  transform: scale(1.05);
}

.nav-btn:hover .btn-top-border,
.nav-btn:hover .btn-bottom-border {
  width: 120%;
  height: 120%;
}

.nav-btn:active {
  transform: scale(0.97);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: rgba(255, 180, 51, 0.10);
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  background-color: #0c0c0c;
  border-top: 1px solid rgba(255, 180, 51, 0.10);
}

.mobile-menu-open {
  max-height: 400px;
  opacity: 1;
}

.mobile-links {
  list-style: none;
  padding: 12px 1.5rem 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 180, 51, 0.08);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}

.mobile-link:hover {
  color: var(--gold-light);
}

.mobile-link.nav-active {
  color: var(--gold);
  font-weight: 600;
}

.mobile-cta {
  padding-top: 12px;
}

.mobile-nav-btn {
  width: 100%;
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}


/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */

.hero-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #0c0c0c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  padding-bottom: 20px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(12, 12, 12, 0.55) 0%,
      rgba(12, 12, 12, 0.65) 60%,
      #000 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  padding: 48px 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: 'TestTiemposHeadline', 'Times New Roman', serif;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  background-image: linear-gradient(90deg,
      rgba(255, 180, 51, 0.55) 0%,
      rgb(255, 217, 153) 25%,
      rgb(255, 217, 153) 75%,
      rgba(255, 180, 51, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-tagline {
  color: #fff;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.embed-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 180, 51, 0.20);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 180, 51, 0.12);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.embed-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.form-wrapper {
  width: 100%;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }
}


/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */

.about-section {
  background-color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  scroll-margin-top: 80px;
}

.about-container {
  max-width: 1000px;
  min-height: 300px;
  padding: 24px 2rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.8fr;
  gap: 3rem;
  align-items: stretch;
}

.about-image-col {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  min-height: 320px;
}

.about-image-wrapper {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 77%;
  object-fit: cover;
  display: block;
}

.about-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-family: 'TestTiemposHeadline', 'Times New Roman', serif;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  background-image: linear-gradient(90deg,
      rgba(255, 180, 51, 0.55) 0%,
      rgb(255, 217, 153) 25%,
      rgb(255, 217, 153) 75%,
      rgba(255, 180, 51, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-paragraph {
  color: #e8e3d5;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 1.4rem;
  font-family: "Inter", -apple-system, sans-serif;
  letter-spacing: -0.01em;
  text-align: justify;
  hyphens: auto;
}

.about-signature-wrapper {
  margin-top: 0.4rem;
  width: 260px;
  max-width: 100%;
}

.about-signature {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.95;
  filter: sepia(60%) saturate(320%) hue-rotate(-15deg) brightness(1.15);
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-col {
    min-height: 340px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.7rem;
  }

  .about-paragraph {
    font-size: 0.9rem;
  }
}


/* ════════════════════════════════════════════════════════════
   PROGRAMS
════════════════════════════════════════════════════════════ */

.programs-section {
  background-color: #000;
  padding: 16px 1.5rem 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-margin-top: 80px;
}

.programs-header {
  text-align: center;
  max-width: 900px;
}

.programs-title {
  font-family: 'TestTiemposHeadline', 'Times New Roman', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  background-image: linear-gradient(90deg,
      rgba(255, 180, 51, 0.55) 0%,
      rgb(255, 217, 153) 25%,
      rgb(255, 217, 153) 75%,
      rgba(255, 180, 51, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.programs-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 400;
  margin: 0 auto;
}

.programs-main {
  position: relative;
  max-width: 1250px;
  width: 100%;
  background-color: #050505;
  border: 1px solid rgba(255, 180, 51, 0.10);
  border-radius: 40px;
  padding: 2rem 2rem 0;
  overflow: hidden;
}

.programs-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background-color: var(--gold);
  z-index: 5;
  box-shadow: 0 0 18px rgba(255, 180, 51, 0.65);
}

.programs-top-glow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 180px;
  background: radial-gradient(ellipse at top, rgba(255, 180, 51, 0.38) 0%, transparent 50%);
  filter: blur(100px);
  z-index: 6;
  pointer-events: none;
}

.programs-dot-pattern {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 250px;
  background-image: radial-gradient(rgba(255, 217, 153, 0.22) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at top, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 75%);
  z-index: 3;
  pointer-events: none;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* Program Card */
.program-card {
  position: relative;
  background-color: #0c0c0c;
  border-radius: 12px;
  padding: 1.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 180, 51, 0.20);
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  width: 100%;
}

.program-card:hover {
  transform: translateY(-4px);
  background-color: #121212;
  border-color: rgba(255, 180, 51, 0.38);
}

.program-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at top right,
      rgba(255, 217, 153, 0.22) 0%,
      rgba(255, 217, 153, 0.06) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.card-light-line {
  position: absolute;
  top: -1px;
  left: 2.5rem;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(255, 180, 51, 0.6);
  z-index: 10;
}

.card-glow-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 12px;
}

.card-glow {
  position: absolute;
  top: -100px;
  left: 2.5rem;
  margin-left: 22.5px;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle closest-side, rgba(255, 180, 51, 0.20) 0%, transparent 100%);
  border-radius: 50%;
  filter: blur(20px);
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.card-icon svg {
  width: 50px;
  height: auto;
  max-height: 56px;
  filter: drop-shadow(0 0 10px rgba(255, 180, 51, 0.50));
}

.card-title {
  font-family: 'TestTiemposHeadline', 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;

  -webkit-background-clip: text;
  background-clip: text;
  color: #f5e6c8;
}

.card-description {
  font-family: "Inter", -apple-system, sans-serif;
  color: #9a9588;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 auto;
}

.card-corner-waves {
  position: absolute;
  top: -165px;
  right: -165px;
  width: 310px;
  height: 310px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  filter: hue-rotate(-22deg) saturate(0.6) brightness(1.4) sepia(70%);
}

.particles-canvas {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
  border-top-right-radius: 12px;
  overflow: hidden;
}

@media (max-width: 1250px) {
  .programs-main {
    max-width: 95%;
    padding: 1.5rem 1.5rem;
  }
}

@media (max-width: 900px) {
  .programs-title {
    font-size: 2.8rem;
  }

  .program-card {
    padding: 2rem 1.6rem;
  }
}

@media (max-width: 540px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .programs-title {
    font-size: 2.2rem;
  }

  .programs-section {
    padding: 1rem 1rem;
  }

  .program-card {
    padding: 1.8rem 1.2rem;
  }
}


/* ════════════════════════════════════════════════════════════
   LEAD FORM
════════════════════════════════════════════════════════════ */

.form-container {
  width: 100%;
  max-width: 580px;
  margin: 0rem auto;
  position: relative;
  z-index: 10;
}

.form-container-wide {
  max-width: 100%;
}

.glass-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.gradient-blob {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
      rgba(255, 180, 51, 0.22) 0%,
      rgba(180, 120, 30, 0.14) 45%,
      transparent 75%);
  filter: blur(32px);
  border-radius: 40px;
  z-index: 0;
  pointer-events: none;
}

.lead-form {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(30, 28, 22, 0.78) 0%, rgba(14, 13, 10, 0.88) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 180, 51, 0.14);
  border-top: 1px solid rgba(255, 217, 153, 0.22);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow:
    0 2px 0 rgba(255, 217, 153, 0.10) inset,
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.3);
}

.input-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  background: #FAF8F2;
  border: 1px solid #e4ddc8;
  border-radius: 12px;
  color: #2a2418;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.form-input:focus {
  background: #ffffff;
  border-color: rgba(255, 180, 51, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 180, 51, 0.14);
}

.form-input::placeholder {
  color: #8c887b;
  font-size: 0.9rem;
}

.form-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 240px;
  height: 44px;
  background-color: rgb(59, 59, 59);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: 8px auto 0;
  padding: 0 2rem;
}

.form-btn .btn-text {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.form-btn:hover {
  transform: scale(1.02);
}

.form-btn:hover .btn-top-border,
.form-btn:hover .btn-bottom-border {
  width: 120%;
  height: 120%;
}

.form-btn:active {
  transform: scale(0.97);
}

.form-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.form-title {
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: #fff;
}

.form-title span {
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
}

/* Success state */
.success-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(30, 28, 22, 0.78) 0%, rgba(14, 13, 10, 0.88) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 180, 51, 0.38);
  border-radius: 20px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  box-shadow:
    0 2px 0 rgba(255, 217, 153, 0.10) inset,
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.3);
}

.success-text {
  color: #ece6d5;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Error state */
.error-text {
  color: #b8843a;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  text-align: center;
  padding: 8px 12px;
  background: rgba(255, 180, 51, 0.08);
  border: 1px solid rgba(255, 180, 51, 0.20);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .form-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .lead-form {
    padding: 20px 16px;
  }

  .form-input {
    padding: 14px 16px;
  }

  .form-title {
    font-size: 1.2rem;
  }
}


/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */

#registro {
  scroll-margin-top: 80px;
}

.footer {
  width: 100%;
  background-color: #0f0e0a;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 180, 51, 0.08);
}

.footer-text {
  font-size: 13px;
  color: #8a8270;
  letter-spacing: 0.02em;
  margin-bottom: 0px !important;
}
