/* ==========================================================
   Academia Cobresal Cordillera
   Diseño mobile-first, accesible y sin dependencias visuales.
   ========================================================== */

:root {
  --green-950: #021f13;
  --green-900: #04301d;
  --green-800: #064528;
  --green-700: #076338;
  --green-600: #0b7a46;
  --green-100: #dff3e8;
  --green-50: #f2faf5;
  --orange-700: #b94b08;
  --orange-600: #dc5f0d;
  --orange-500: #f27616;
  --orange-400: #ff923e;
  --orange-100: #ffe6d1;
  --yellow-400: #f9c928;
  --ink-950: #101713;
  --ink-800: #243129;
  --ink-600: #506058;
  --ink-400: #839087;
  --line: #dfe8e2;
  --surface: #ffffff;
  --surface-soft: #f6f9f7;
  --shadow-sm: 0 10px 30px rgba(2, 31, 19, 0.08);
  --shadow-md: 0 22px 65px rgba(2, 31, 19, 0.14);
  --shadow-lg: 0 34px 100px rgba(0, 21, 12, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 82px;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink-950);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

::selection {
  background: var(--orange-500);
  color: var(--green-950);
}

:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--green-950);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

/* ---------- Elementos globales ---------- */

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--orange-600);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-kicker--light {
  color: #ffc28f;
}

.section {
  padding: 88px 0;
}

.section-heading {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.about__content h2,
.venue__content h2,
.contact__intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 9vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: .93;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 1rem;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 21px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .91rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}

.btn::before {
  position: absolute;
  top: -50%;
  left: -80%;
  width: 38%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  content: "";
  transform: skewX(-20deg);
  transition: left .65s ease;
}

.btn:hover::before {
  left: 140%;
}

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

.btn svg,
.text-link svg,
.topbar a svg,
.social-proof__items svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .25s ease;
}

.btn:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 14px 30px rgba(242, 118, 22, .27);
  color: var(--green-950);
}

.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(242, 118, 22, .34);
}

.btn--ghost {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.06);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,.64);
  background: rgba(255,255,255,.12);
}

.btn--light {
  background: #fff;
  box-shadow: 0 16px 35px rgba(0,0,0,.16);
  color: var(--green-900);
}

.btn--outline-light {
  border-color: rgba(255,255,255,.4);
  background: transparent;
  color: #fff;
}

.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
}

.btn--dark {
  background: var(--green-950);
  color: #fff;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* ---------- Topbar y header ---------- */

.topbar {
  position: relative;
  z-index: 50;
  background: var(--green-950);
  color: #d7e8dd;
  font-size: .75rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar p,
.topbar a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.topbar a svg {
  width: 15px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5de58f;
  box-shadow: 0 0 0 5px rgba(93,229,143,.12);
  animation: pulse-dot 2s infinite;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(3, 42, 25, .86);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(2,31,19,.96);
  box-shadow: 0 10px 35px rgba(0,0,0,.2);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 57px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: drop-shadow(0 7px 12px rgba(0,0,0,.24));
}

.brand__text {
  display: grid;
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: .04em;
  line-height: .82;
}

.brand__text strong {
  color: var(--orange-400);
  font-size: 1.35rem;
  font-weight: 800;
}

.brand__text span {
  margin-top: 6px;
  font-size: .98rem;
  font-weight: 600;
}

.brand__text sup {
  color: var(--yellow-400);
  font-family: var(--font-body);
  font-size: .48em;
  vertical-align: top;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.main-nav {
  position: fixed;
  z-index: 90;
  top: calc(38px + var(--header-height));
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 25px 20px 40px;
  background: rgba(2,31,19,.985);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: #dce9e1;
  font-size: 1rem;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange-400);
}

.main-nav .nav-cta {
  justify-content: center;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--green-950);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 38px - var(--header-height));
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 20%, rgba(20, 139, 77, .32), transparent 34%),
    radial-gradient(circle at 83% 75%, rgba(242,118,22,.17), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-800) 62%, #04301d);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: -18%;
  bottom: -48%;
  width: 880px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 190px rgba(255,255,255,.018);
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: .32;
  pointer-events: none;
}

.hero__lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 85%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .7;
  animation: float-orb 8s ease-in-out infinite alternate;
}

.hero__orb--one {
  top: 13%;
  left: 7%;
  width: 13px;
  height: 13px;
  background: var(--orange-400);
  box-shadow: 0 0 34px var(--orange-400);
}

.hero__orb--two {
  right: 9%;
  bottom: 19%;
  width: 8px;
  height: 8px;
  background: var(--yellow-400);
  box-shadow: 0 0 25px var(--yellow-400);
  animation-delay: -2s;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 42px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 95px;
}

.hero__content {
  max-width: 690px;
}

.hero h1 {
  margin-bottom: 25px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 17vw, 8.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: .76;
  text-transform: uppercase;
}

.hero h1 span {
  display: inline-block;
  margin-top: .14em;
  color: var(--orange-400);
  text-shadow: 0 12px 40px rgba(242,118,22,.18);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #d4e6db;
  font-size: clamp(1rem, 3.3vw, 1.17rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.hero__actions .btn {
  flex: 1 1 180px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  padding: 14px 10px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
  text-align: center;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__facts span {
  margin-top: 7px;
  color: #a9c4b4;
  font-size: .64rem;
  line-height: 1.2;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  display: grid;
  width: min(92vw, 560px);
  aspect-ratio: 1;
  place-items: center;
  isolation: isolate;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.logo-stage::before {
  position: absolute;
  z-index: -3;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,118,22,.25), rgba(8,114,64,.08) 55%, transparent 72%);
  content: "";
  filter: blur(20px);
}

.logo-stage picture {
  position: relative;
  z-index: 2;
  width: 88%;
  filter: drop-shadow(0 34px 38px rgba(0,0,0,.38));
  animation: logo-float 5s ease-in-out infinite;
}

.logo-stage picture img {
  border-radius: 50%;
}

.logo-stage__ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.logo-stage__ring::before,
.logo-stage__ring::after {
  position: absolute;
  border-radius: 50%;
  background: var(--orange-400);
  box-shadow: 0 0 18px var(--orange-400);
  content: "";
}

.logo-stage__ring--outer {
  inset: 0;
  animation: spin 20s linear infinite;
}

.logo-stage__ring--outer::before {
  top: 5%;
  left: 23%;
  width: 9px;
  height: 9px;
}

.logo-stage__ring--outer::after {
  right: 6%;
  bottom: 28%;
  width: 6px;
  height: 6px;
  background: #fff;
  box-shadow: 0 0 18px #fff;
}

.logo-stage__ring--inner {
  inset: 8%;
  border-style: dashed;
  opacity: .52;
  animation: spin 28s linear infinite reverse;
}

.logo-stage__ring--inner::before {
  right: 13%;
  bottom: 12%;
  width: 7px;
  height: 7px;
}

.logo-stage__ring--inner::after {
  top: 32%;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--yellow-400);
}

.logo-stage__shine {
  position: absolute;
  z-index: 4;
  inset: 13%;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}

.logo-stage__shine::after {
  position: absolute;
  top: -40%;
  left: -70%;
  width: 32%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  content: "";
  filter: blur(3px);
  transform: rotate(18deg);
  animation: logo-shine 5.5s ease-in-out infinite 1s;
}

.registered-chip {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(2,31,19,.78);
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  backdrop-filter: blur(13px);
}

.registered-chip > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--green-950);
  font-size: 1.1rem;
  font-weight: 800;
}

.registered-chip strong,
.registered-chip small {
  display: block;
  line-height: 1.2;
}

.registered-chip strong {
  font-size: .72rem;
}

.registered-chip small {
  margin-top: 3px;
  color: #a9c4b4;
  font-size: .58rem;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: none;
  align-items: center;
  gap: 11px;
  color: #a9c4b4;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 24px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
}

.scroll-cue span::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 5px;
  background: var(--orange-400);
  content: "";
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

/* ---------- Franja de valores ---------- */

.value-strip {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.value-strip__grid > div {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  border-bottom: 1px solid var(--line);
}

.value-strip__grid > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.value-strip__grid span {
  color: var(--orange-500);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.value-strip__grid p {
  margin: 0;
  color: var(--ink-600);
  font-size: .72rem;
  line-height: 1.45;
}

.value-strip__grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-950);
  font-size: .82rem;
}

/* ---------- Programas ---------- */

.programs {
  background: var(--surface-soft);
}

.program-grid {
  display: grid;
  gap: 16px;
}

.program-card {
  position: relative;
  min-height: 100%;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.program-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 32px solid var(--green-50);
  border-radius: 50%;
  content: "";
  transition: transform .45s var(--ease), border-color .35s ease;
}

.program-card:hover {
  z-index: 2;
  border-color: #bed7c8;
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.program-card:hover::after {
  border-color: var(--orange-100);
  transform: scale(1.15) rotate(20deg);
}

.program-card--featured {
  border-color: rgba(242,118,22,.5);
  background: linear-gradient(155deg, #fff 0%, #fff9f4 100%);
}

.program-card__badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange-100);
  color: var(--orange-700);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.program-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  background: var(--green-50);
  color: var(--green-700);
  transition: background-color .3s ease, color .3s ease, transform .3s var(--ease);
}

.program-card:hover .program-card__icon {
  background: var(--green-800);
  color: #fff;
  transform: rotate(-5deg) scale(1.04);
}

.program-card__icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.program-card__number {
  position: absolute;
  top: 80px;
  right: 22px;
  color: #e8eeea;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.program-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.program-card p,
.program-card li {
  position: relative;
  z-index: 1;
  color: var(--ink-600);
  font-size: .86rem;
}

.program-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 19px;
}

.program-card li::before {
  position: absolute;
  top: .66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
}

/* ---------- Sobre nosotros ---------- */

.about {
  overflow: hidden;
}

.about__grid {
  display: grid;
  gap: 55px;
  align-items: center;
}

.about__visual {
  position: relative;
  max-width: 610px;
  margin-inline: auto;
}

.about__photo-frame {
  position: relative;
  padding: 8%;
  overflow: hidden;
  border-radius: 32px 32px 95px 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent),
    radial-gradient(circle at 70% 20%, rgba(242,118,22,.28), transparent 34%),
    var(--green-900);
  box-shadow: var(--shadow-lg);
}

.about__photo-frame::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
}

.about__photo-frame img {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  filter: drop-shadow(0 24px 35px rgba(0,0,0,.3));
  transition: transform .5s var(--ease);
}

.about__visual:hover img {
  transform: scale(1.025) rotate(1.2deg);
}

.about__watermark {
  position: absolute;
  right: -5%;
  bottom: -14%;
  color: rgba(255,255,255,.04);
  font-family: var(--font-display);
  font-size: 13rem;
  font-weight: 800;
  line-height: 1;
}

.about__floating-card {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: -30px;
  display: flex;
  max-width: 255px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.about__floating-card svg {
  width: 39px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.about__floating-card strong,
.about__floating-card span {
  display: block;
  line-height: 1.3;
}

.about__floating-card strong {
  font-size: .76rem;
}

.about__floating-card span {
  margin-top: 3px;
  color: var(--ink-600);
  font-size: .62rem;
}

.about__content h2 {
  margin-bottom: 24px;
}

.about__lead {
  color: var(--ink-600);
  font-size: 1rem;
}

.about__points {
  display: grid;
  gap: 4px;
  margin: 30px 0;
}

.about__points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.about__points article > span {
  color: var(--orange-500);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.about__points h3 {
  margin-bottom: 5px;
  font-size: .96rem;
}

.about__points p {
  color: var(--ink-600);
  font-size: .82rem;
}

/* ---------- Sede ---------- */

.venue {
  padding-top: 25px;
}

.venue__panel {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
  box-shadow: var(--shadow-md);
  color: #fff;
}

.venue__content {
  position: relative;
  z-index: 2;
  padding: 42px 25px;
}

.venue__content h2 {
  margin-bottom: 20px;
}

.venue__content > p {
  max-width: 580px;
  color: #c4d9cc;
}

.venue__address {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.venue__address > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
}

.venue__address svg {
  width: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.venue__address strong,
.venue__address span {
  display: block;
}

.venue__address strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: .78rem;
}

.venue__address span {
  color: #b9d0c2;
  font-size: .73rem;
}

.venue__address a:hover {
  color: #fff;
}

.venue__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.venue__actions .btn {
  flex: 1 1 180px;
}

.venue__graphic {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #073822;
}

.venue__map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: rotate(8deg) scale(1.2);
}

.venue__route {
  position: absolute;
  border: 4px solid rgba(255,255,255,.17);
  border-radius: 50%;
}

.venue__route--one {
  top: -30%;
  right: 18%;
  width: 370px;
  height: 500px;
  transform: rotate(-19deg);
}

.venue__route--two {
  bottom: -45%;
  left: -4%;
  width: 470px;
  height: 360px;
  border-color: rgba(242,118,22,.33);
  transform: rotate(22deg);
}

.venue__pin {
  position: absolute;
  top: 44%;
  left: 56%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 7px solid rgba(255,255,255,.22);
  border-radius: 50% 50% 50% 8px;
  background: var(--orange-500);
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
  transform: rotate(-45deg);
}

.venue__pin::after {
  position: absolute;
  z-index: -1;
  inset: -20px;
  border: 2px solid rgba(242,118,22,.35);
  border-radius: 50%;
  content: "";
  animation: map-pulse 2s ease-out infinite;
}

.venue__pin img {
  border-radius: 50%;
  transform: rotate(45deg);
}

.venue__graphic > p {
  position: absolute;
  right: 18px;
  bottom: 5px;
  margin: 0;
  color: rgba(255,255,255,.045);
  font-family: var(--font-display);
  font-size: 6.7rem;
  font-weight: 800;
  line-height: .7;
  text-align: right;
}

/* ---------- Comunidad ---------- */

.community {
  background: var(--surface-soft);
}

.community__grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.instagram-shell {
  display: grid;
  min-height: 480px;
  place-items: center;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.instagram-shell .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.social-proof {
  padding: 28px 0;
}

.social-proof h3 {
  margin-bottom: 17px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 9vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: .94;
  text-transform: uppercase;
}

.social-proof > p {
  color: var(--ink-600);
}

.social-proof__items {
  display: grid;
  gap: 9px;
  margin: 28px 0;
}

.social-proof__items a {
  display: grid;
  grid-template-columns: 46px 1fr 22px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.social-proof__items a:hover {
  border-color: #bbd2c4;
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.social-proof__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.social-proof__items strong,
.social-proof__items small {
  display: block;
}

.social-proof__items strong {
  font-size: .82rem;
}

.social-proof__items small {
  margin-top: 2px;
  color: var(--ink-600);
  font-size: .67rem;
}

/* ---------- CTA ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--orange-500);
  color: var(--green-950);
}

.cta-band::before {
  position: absolute;
  top: -170px;
  right: 10%;
  width: 400px;
  height: 400px;
  border: 65px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}

.cta-band__glow {
  position: absolute;
  left: -8%;
  bottom: -220px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,212,93,.28);
  filter: blur(75px);
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 25px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.cta-band__inner > div > span {
  display: block;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 4.7rem);
  line-height: .9;
  text-transform: uppercase;
}

/* ---------- Contacto ---------- */

.contact {
  background: #fff;
}

.contact__grid {
  display: grid;
  gap: 44px;
  align-items: start;
}

.contact__intro h2 {
  margin-bottom: 23px;
}

.contact__intro > p {
  color: var(--ink-600);
}

.contact__direct {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.contact__direct a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.contact__direct a:hover {
  border-color: #b7d2c2;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact__direct-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--green-50);
  color: var(--green-700);
}

.contact__direct-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact__direct small,
.contact__direct strong {
  display: block;
}

.contact__direct small {
  color: var(--ink-600);
  font-size: .66rem;
}

.contact__direct strong {
  overflow-wrap: anywhere;
  font-size: .78rem;
}

.contact__trust {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border-radius: 14px;
  background: var(--green-50);
}

.contact__trust > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-size: .7rem;
}

.contact__trust p {
  color: var(--ink-600);
  font-size: .71rem;
  line-height: 1.45;
}

.contact__trust strong {
  display: block;
  color: var(--ink-950);
}

.contact-form {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span:first-child {
  display: block;
  color: var(--orange-600);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 3px 0 0;
  font-size: 1.13rem;
}

.form-step {
  color: #d9e1dc;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  position: relative;
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink-800);
  font-size: .73rem;
  font-weight: 700;
}

.field label span {
  color: var(--ink-400);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cad8cf;
  border-radius: 12px;
  background: #fff;
  color: var(--ink-950);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.field input,
.field select {
  min-height: 51px;
  padding: 0 14px;
}

.field textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #95a198;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(11,122,70,.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b3261e;
  background: #fff8f7;
}

.field__error {
  min-height: 1em;
  color: #a3211a;
  font-size: .65rem;
  line-height: 1.3;
}

.field__meta {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: var(--ink-400);
  font-size: .58rem;
}

.checkbox-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--green-700);
}

.checkbox-field label {
  font-size: .68rem;
  font-weight: 500;
  line-height: 1.5;
}

.checkbox-field .field__error {
  grid-column: 2;
}

.btn--submit {
  width: 100%;
  margin-top: 20px;
  border: 0;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--green-700);
  font-size: .72rem;
  font-weight: 600;
  text-align: center;
}

.form-status.is-error {
  color: #a3211a;
}

/* ---------- Footer ---------- */

.site-footer {
  padding-top: 55px;
  background: var(--green-950);
  color: #b7cabe;
}

.footer__grid {
  display: grid;
  gap: 35px;
  padding-bottom: 42px;
}

.brand--footer img {
  width: 66px;
}

.footer__brand > p {
  max-width: 360px;
  margin: 18px 0;
  font-size: .82rem;
}

.registered-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #d7e5dc;
  font-size: .62rem;
}

.registered-note span {
  color: var(--orange-400);
  font-size: .9rem;
  font-weight: 800;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer__column h2 {
  margin-bottom: 7px;
  color: #fff;
  font-size: .82rem;
}

.footer__column a,
.footer__column p {
  color: #a9c1b3;
  font-size: .75rem;
}

.footer__column a:hover {
  color: var(--orange-400);
}

.footer__column p {
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer__small {
  max-width: 250px;
  margin-top: 8px !important;
  color: #789184 !important;
  font-size: .66rem !important;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer__bottom p {
  margin: 0;
  color: #779083;
  font-size: .62rem;
}

/* ---------- Flotantes y no-JS ---------- */

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 17px;
  bottom: 17px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: #158a4f;
  box-shadow: 0 14px 32px rgba(0,64,35,.3);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 42px rgba(0,64,35,.38);
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.back-to-top {
  position: fixed;
  z-index: 89;
  right: 19px;
  bottom: 83px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: var(--green-950);
  box-shadow: var(--shadow-sm);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.noscript-message {
  position: fixed;
  z-index: 9999;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #fff2c8;
  color: #4c3b00;
  font-size: .8rem;
  text-align: center;
}

/* ---------- Animaciones ---------- */

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(93,229,143,.12); }
  50% { box-shadow: 0 0 0 8px rgba(93,229,143,0); }
}

@keyframes float-orb {
  to { transform: translate(24px, -20px); }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-.4deg); }
  50% { transform: translateY(-11px) rotate(.6deg); }
}

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

@keyframes logo-shine {
  0%, 60% { left: -70%; opacity: 0; }
  72% { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

@keyframes map-pulse {
  0% { opacity: .7; transform: scale(.6); }
  100% { opacity: 0; transform: scale(1.45); }
}

/* ---------- Tablet ---------- */

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero__actions .btn,
  .venue__actions .btn {
    flex: 0 0 auto;
  }

  .hero__facts li {
    padding: 16px;
    text-align: left;
  }

  .hero__facts strong {
    font-size: 1.3rem;
  }

  .hero__facts span {
    font-size: .7rem;
  }

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

  .program-card {
    padding: 32px 28px;
  }

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

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

  .contact-form {
    padding: 32px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---------- Escritorio ---------- */

@media (min-width: 900px) {
  :root {
    --header-height: 88px;
  }

  .section {
    padding: 125px 0;
  }

  .section-heading {
    grid-template-columns: 1.3fr .7fr;
    margin-bottom: 60px;
  }

  .topbar {
    font-size: .78rem;
  }

  .brand img {
    width: 64px;
  }

  .brand__text strong {
    font-size: 1.52rem;
  }

  .brand__text span {
    font-size: 1.08rem;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    min-height: auto;
    padding: 10px 12px;
    border: 0;
    color: #d5e4db;
    font-size: .78rem;
  }

  .main-nav .nav-cta {
    min-height: 44px;
    margin: 0 0 0 5px;
    padding-inline: 18px;
  }

  .hero {
    min-height: calc(100vh - 38px - var(--header-height));
  }

  .hero__grid {
    grid-template-columns: 1.07fr .93fr;
    gap: 30px;
    padding-top: 80px;
    padding-bottom: 95px;
  }

  .hero h1 {
    font-size: clamp(6.3rem, 10vw, 9.4rem);
  }

  .hero__visual {
    min-height: 620px;
  }

  .logo-stage {
    width: min(47vw, 630px);
  }

  .registered-chip {
    right: -5%;
    bottom: 12%;
  }

  .scroll-cue {
    display: flex;
  }

  .value-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-strip__grid > div {
    min-height: 116px;
    padding: 20px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .value-strip__grid > div:last-child {
    border-right: 0;
  }

  .value-strip__grid p {
    font-size: .75rem;
  }

  .value-strip__grid strong {
    font-size: .86rem;
  }

  .program-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
  }

  .program-card {
    padding: 30px 22px;
  }

  .program-card h3 {
    font-size: 1.9rem;
  }

  .about__grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 95px;
  }

  .about__lead {
    font-size: 1.08rem;
  }

  .venue {
    padding-top: 35px;
  }

  .venue__panel {
    grid-template-columns: 1.08fr .92fr;
    min-height: 570px;
  }

  .venue__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 65px;
  }

  .venue__graphic {
    min-height: 100%;
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,.1);
  }

  .venue__graphic > p {
    right: -2px;
    bottom: 28px;
    font-size: 9rem;
  }

  .community__grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
  }

  .instagram-shell {
    min-height: 650px;
  }

  .social-proof {
    padding: 50px 0;
  }

  .cta-band__inner {
    grid-template-columns: 1fr auto;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .contact__grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 85px;
  }

  .contact__intro {
    position: sticky;
    top: calc(var(--header-height) + 35px);
  }

  .footer__grid {
    grid-template-columns: 1.55fr .65fr .85fr .75fr;
    gap: 45px;
  }

  .floating-whatsapp {
    right: 25px;
    bottom: 25px;
  }

  .back-to-top {
    right: 28px;
    bottom: 92px;
  }
}

@media (min-width: 1180px) {
  .main-nav a {
    padding-inline: 15px;
    font-size: .81rem;
  }

  .program-grid {
    gap: 18px;
  }

  .program-card {
    padding: 34px 28px;
  }
}

/* ---------- Pantallas pequeñas ---------- */

@media (max-width: 389px) {
  .topbar a {
    display: none;
  }

  .brand__text strong {
    font-size: 1.18rem;
  }

  .brand__text span {
    font-size: .83rem;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__facts li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .hero__facts span {
    margin-top: 0;
  }

  .registered-chip {
    right: 2%;
  }

  .about__floating-card {
    right: 3%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 54px;
    padding: 0;
    justify-content: center;
  }
}

/* ---------- Preferencias de accesibilidad ---------- */

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-600: #344038;
    --line: #aebbb3;
  }

  .btn,
  .program-card,
  .contact-form {
    border-width: 2px;
  }
}
