:root {
  --font: "inter", system-ui, -apple-system, "segoe ui", roboto, ubuntu, cantarell, "noto sans", sans-serif;

  /* identidad (teal + dorado) */
  --brand-950: #0a2a25;
  --brand-900: #0f3a33;
  --brand-800: #145246;
  --brand-700: #1c6f5e;
  --brand-600: #26b99a;
  --brand-500: #2ad1b0;
  --brand-200: #ade2df;

  --accent-700: #a87500;
  --accent-600: #d79a00;
  --accent-500: #f5b800;
  --accent-200: #ffe4a6;

  /* neutrales */
  --bg: #ffffff;
  --bg-2: #f6fbfa;
  --card: #ffffff;
  --text: #0e1715;
  --muted: #5a6b66;
  --line: rgba(10, 42, 37, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.06);

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --container: 1200px;
}

html[data-theme="dark"] {
  --bg: #08110f;
  --bg-2: #0b1714;
  --card: #0f201c;
  --text: #ffffff;
  --muted: #b7c8c3;
  --line: rgba(173, 226, 223, 0.14);
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 20px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  background:
    radial-gradient(1200px 800px at 15% 0%, rgba(38, 185, 154, 0.18), transparent 55%),
    radial-gradient(1000px 700px at 90% 10%, rgba(245, 184, 0, 0.14), transparent 55%),
    var(--bg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
}


img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 50;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  left: 12px;
}

/* ui atoms */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
}

html[data-theme="dark"] .pill {
  background: rgba(15, 32, 28, 0.7);
}

.pill--soft {
  border-color: rgba(38, 185, 154, 0.25);
  background: rgba(38, 185, 154, 0.08);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn--primary {
  border-color: rgba(38, 185, 154, 0.35);
  background: linear-gradient(135deg, rgba(38, 185, 154, 0.92), rgba(42, 209, 176, 0.92));
  color: #061512;
}

.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(38, 185, 154, 0.25);
}

.btn--ghost {
  background: transparent;
}

.btn--tiny {
  padding: 9px 10px;
  font-size: 13px;
  border-radius: 12px;
}

.btn--block {
  width: 100%;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.icon {
  font-size: 16px;
  font-weight: 900;
}

/* topbar */
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .topbar {
  background: rgba(8, 17, 15, 0.65);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar__meta {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__link {
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
}

.topbar__link:hover {
  background: rgba(38, 185, 154, 0.08);
  color: var(--text);
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .header {
  background: rgba(8, 17, 15, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(38, 185, 154, 0.08);
  border: 1px solid rgba(38, 185, 154, 0.18);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand__title {
  font-weight: 900;
  letter-spacing: -0.3px;
  text-transform: lowercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__subtitle {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(38, 185, 154, 0.08);
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__burger {
  display: none;
}

/* hero */
.hero {
  padding: 34px 0 18px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.hero__kicker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__title {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -1px;
  font-weight: 900;
}

.accent {
  color: var(--brand-600);
}

.accent2 {
  color: var(--accent-500);
}

.hero__subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 6px;
}

.stat {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .stat {
  background: rgba(15, 32, 28, 0.65);
}

.stat__num {
  display: block;
  font-weight: 900;
  letter-spacing: -0.5px;
  font-size: 20px;
}

.stat__label {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  margin-top: 2px;
}

.hero__media {
  display: grid;
  gap: 12px;
}

.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-500);
  box-shadow: 0 0 0 4px rgba(245, 184, 0, 0.18);
}

.media-card__text {
  margin: 10px 0 0;
  font-weight: 600;
}

.hero__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quick:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.quick__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 185, 154, 0.12);
  border: 1px solid rgba(38, 185, 154, 0.22);
  font-weight: 900;
}

.quick__title {
  display: block;
  font-weight: 900;
}

.quick__desc {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin-top: 2px;
}

/* sections */
.section {
  padding: 64px 0;
  background: transparent;
}

.section--soft {
  background: transparent;
  border: none;
}

.section__head {
  margin-bottom: 16px;
}

.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0px;
  flex-wrap: wrap;
}

.section__title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.section__desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.section__tools {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  align-items: center;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* cards */
.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.card--interactive {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card--interactive:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(38, 185, 154, 0.28);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 184, 0, 0.14);
  border: 1px solid rgba(245, 184, 0, 0.22);
  margin-bottom: 10px;
  font-weight: 900;
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(38, 185, 154, 0.22);
  background: rgba(38, 185, 154, 0.08);
}

.tag--accent {
  border-color: rgba(245, 184, 0, 0.28);
  background: rgba(245, 184, 0, 0.14);
}

.tag--soft {
  border-color: rgba(173, 226, 223, 0.24);
  background: rgba(173, 226, 223, 0.12);
}

.meta {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.card__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.card__text {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.card__actions {
  margin-top: 12px;
}

.card__link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
  color: var(--brand-600);
}

/* chips */
.chip {
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--card);
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.chip.is-active {
  border-color: rgba(38, 185, 154, 0.3);
  background: rgba(38, 185, 154, 0.1);
}

/* layout panels */
.layout {
  display: grid;
  gap: 14px;
}

.layout--2 {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.panel--soft {
  background: rgba(38, 185, 154, 0.06);
}

.panel__head {
  margin-bottom: 12px;
}

.panel__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.panel__desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.panel__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .step {
  background: rgba(15, 32, 28, 0.65);
}

.step__badge {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 184, 0, 0.14);
  border: 1px solid rgba(245, 184, 0, 0.22);
  font-weight: 900;
}

.step__title {
  margin: 0;
  font-weight: 900;
}

.step__text {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 600;
}

/* checklist */
.checklist {
  display: grid;
  gap: 10px;
  margin: 10px 0 14px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  user-select: none;
}

html[data-theme="dark"] .check {
  background: rgba(15, 32, 28, 0.55);
}

.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-600);
}

/* timeline */
.timeline {
  display: grid;
  gap: 12px;
  border-left: 2px solid rgba(38, 185, 154, 0.25);
  padding-left: 14px;
}

.timeline__item {
  position: relative;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.timeline__dot {
  position: absolute;
  left: -22px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand-600);
  box-shadow: 0 0 0 5px rgba(38, 185, 154, 0.16);
}

.timeline__title {
  margin: 0;
  font-weight: 900;
}

.timeline__text {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}

/* events */
.event {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.event__date {
  border-radius: 18px;
  border: 1px solid rgba(245, 184, 0, 0.28);
  background: rgba(245, 184, 0, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
}

.event__day {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.4px;
}

.event__mon {
  font-weight: 900;
  text-transform: lowercase;
  font-size: 12px;
  color: var(--accent-700);
}

.event__title {
  margin: 0;
  font-weight: 900;
}

.event__text {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.event__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* cta + form */
.cta {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(38, 185, 154, 0.12), rgba(245, 184, 0, 0.10));
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.cta__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.cta__text {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .form {
  background: rgba(15, 32, 28, 0.6);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-weight: 900;
  font-size: 12px;
  color: var(--muted);
  text-transform: lowercase;
}

.input,
.textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  outline: none;
  font-weight: 700;
}

.input:focus,
.textarea:focus {
  border-color: rgba(38, 185, 154, 0.38);
  box-shadow: 0 0 0 5px rgba(38, 185, 154, 0.14);
}

.form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* accordion */
.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accordion__panel {
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(38, 185, 154, 0.06);
  color: var(--muted);
  font-weight: 600;
}

/* footer */
.footer {
  padding: 34px 0 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .footer {
  background: rgba(8, 17, 15, 0.55);
}

.footer__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.footer__logo {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer__text {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer__title {
  margin: 0 0 10px;
  font-weight: 900;
}

.footer__col a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-weight: 700;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* social */
.social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  font-weight: 800;
  color: var(--muted);
}

.social img {
  width: 18px;
  height: 18px;
}

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--card);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__content {
  padding-top: 14px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.drawer__link {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(38, 185, 154, 0.06);
  font-weight: 900;
}

.drawer__cta {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 0;
}

/* search overlay */
.search {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
}

.search__panel {
  width: min(760px, calc(100% - 26px));
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px;
}

.search__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 0 6px;
}

.search__results {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: grid;
  gap: 10px;
  min-height: 120px;
}

.search__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 0;
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
}

.modal__panel {
  width: min(860px, calc(100% - 26px));
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px;
}

.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__body {
  padding-top: 12px;
}

.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 0;
}

.ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* toast */
.toast {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 90;
}

.toast__card {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 12px 12px;
}

.toast__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-600);
  box-shadow: 0 0 0 6px rgba(38, 185, 154, 0.16);
}

.toast__text {
  margin: 0;
  font-weight: 800;
  color: var(--text);
  max-width: 52ch;
}

/* responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .header__burger {
    display: inline-flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .layout--2 {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .hero__quick {
    grid-template-columns: 1fr;
  }
}


.modal[hidden],
.search[hidden],
.drawer[hidden],
.toast[hidden] {
  display: none !important;
}

/* ===== FIX FAQ EN MODO OSCURO ===== */
html[data-theme="dark"] .accordion__item {
  color: #ffffff;
}

html[data-theme="dark"] .accordion__q {
  color: #ffffff;
}

html[data-theme="dark"] .accordion__icon {
  color: #ffffff;
}

html[data-theme="dark"] .accordion__panel {
  color: #eaeaea;
}

/* ===== FIX ICONOS HEADER EN MODO OSCURO ===== */
html[data-theme="dark"] .icon-btn {
  color: #ffffff;
}

html[data-theme="dark"] .icon-btn svg {
  fill: #ffffff;
  stroke: #ffffff;
}

html[data-theme="dark"] .header__icon {
  color: #ffffff;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__image {
  height: 55px; /* ajusta si quieres */
}

/* Por defecto: fondo oscuro → logo blanco */
.logo-negro {
  display: none;
}

/* Cuando el header es blanco */
.header.blanco .logo-blanco {
  display: none;
}

.header.blanco .logo-negro {
  display: block;
}

