:root {
  /* Paleta principal */
  --ted-red: #e62b1e;
  --ted-red-dark: #c22216;
  --ink: #111111;
  --ink-2: #222222;
  --soft: #f8f8f8;
  --muted: #6c757d;

  /* Acento de Openlab */
  --openlab-accent: #c6cae9;
}

/* Base */
html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: #fff;
  color: var(--ink);
}

h1, h2, h3, h4, .fw-bold {
  font-family: 'Poppins', sans-serif;
}

.ted-red { color: var(--ted-red); }
.bg-ted-red { background-color: var(--ted-red); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
              url('/sites/default/files/carolina.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 160px 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ted-red) !important;
}

.hero .lead {
  opacity: 0.95;
}

/* Botones */
.btn-ted {
  background-color: var(--ted-red);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.2s ease-in-out;
}

.btn-ted:hover {
  background-color: var(--ted-red-dark);
  color: #fff;
}

.btn-outline-ted {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn-outline-ted:hover {
  background-color: #fff;
  color: var(--ink);
}

/* Secciones */
.section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--soft);
}

.kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ted-red);
  font-size: 0.9rem;
}

/* Chips / etiquetas */
.chip {
  display: inline-block;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Iconos / bullets */
.icon-bullet {
  width: 12px;
  height: 12px;
  background: var(--ted-red);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

/* Timeline */
.timeline {
  border-left: 3px solid var(--openlab-accent);
  margin-left: 0.5rem;
  padding-left: 3rem;
}

.timeline .item {
  position: relative;
  margin: 1rem 0;
}
/*
.timeline .item::before {
  content: "";
  position: absolute;
  left: -1.125rem;
  top: 0.35rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--ted-red);
}
*/

/* Tablas */
.table thead th {
  background: var(--ink-2);
  color: #fff;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: #fafafa;
}

/* Cards */
.speaker-card img {
  border-radius: 100%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: var(--ink);
  color: #bbb;
  padding: 48px 0;
  font-size: 0.95rem;
}

fieldset#edit-sobre-tu-postulacion--2
 {
    border-top: solid red;
    border-bottom: solid red;
    padding: 1rem 0;
    margin: 2rem 0px;
}