/*#title-slide .title::before {
  content: "";
  display: block;
  position: relative;       
  height: 200px;
  bottom: 100px;
  left: 490px;
  background-image: url('../imagenes/logo-sociales-color.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
} */

.reveal .slide-logo {
  height: 100px !important;
  max-width: auto !important;
  max-height: unset !important;
}

/* Fuente general */
.reveal {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1c1c1c;
}

/* Fondo general */
.reveal .slides {
  background-color: #ffffff;
}

/* Títulos */
.reveal h1, .reveal h2, .reveal h3 {
  color: #003366; /* azul institucional */
  font-weight: bold;
}

/* Subtítulos o acentos */
.reveal h4, .reveal h5, .reveal h6 {
  color: #666666;
  font-weight: normal;
}

/* Bullet points */
.reveal ul {
  list-style-type: disc;
  margin-left: 2em;
}

.reveal ol {
  list-style-type: decimal;
  margin-left: 2em;   /* distancia desde el borde izquierdo */
  padding-left: 0.5em; /* espacio interno entre número y texto */
}


/* Cajas destacadas */
.reveal .box {
  border-left: 5px solid #003366;
  background-color: #f4f4f4;
  padding: 1em;
  margin: 1em 0;
  border-radius: 4px;
}

/* Tabla estilo limpio */
.reveal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
  margin-right: 2em;
  border-bottom: 1px solid #222;
}
.reveal th, .reveal td {
  border: 1px solid #ccc;
  padding: 0.5em;
}
.reveal th {
  background-color: #003366;
  color: white;
}

/* Código o énfasis */
.reveal code {
  background-color: #eee;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 90%;
}

/* Pie de página o notas */
.reveal .footer {
  font-size: 0.6em;
  color: #999;
  position: absolute;
  bottom: 10px;
  right: 20px;
}

/* Enfasis Invertido */


/*.reveal .inverse {
  background-color: #003366; !important
}

.inverse .slide-background-content{
  background-color: #003366;
}


.inverse h1 {
  color: #ffffff;} */

/* fechas con mayusculas*/
.date {
  text-transform: capitalize;
} 


/* Algo de control sobre las imagenes*/

.img-scroll {
  max-height: 85vh;      /* ajusta a gusto */
  overflow: auto;        /* scroll sólo dentro del contenedor */
}

.img-scroll img {
  width: 60%;
  height: auto;
  max-height: none;
  display: block;        /* necesario para márgenes automáticos */
  margin-left: auto;     /* centra horizontalmente */
  margin-right: auto;    /* centra horizontalmente */
}

/* links */

.reveal a {
  color: #0066cc;       /* color del link */
  text-decoration: underline; /* quita subrayado por defecto */
  trasition: all 0.2 ease-in-out;
}

.reveal a:hover {
  text-decoration: underline; /* subrayado al pasar el mouse */
  color: #3399ff;             /* color más vivo en hover *
}

