/* --- RESET BÁSICO --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:#f9f9f9;
    color: #333;
    scroll-behavior: smooth;
}

/* --- ENCABEZADO CON HEADER Y SUS ETIQUETAS (h1 y p) ----*/
/* HEADER */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f2f2f2;
  flex-wrap: wrap;
}

.logo-texto {
  display: flex;
  align-items: center;
}

.logo-flotante {
  width: 80px;
  height: auto;
  margin-right: 15px;
  border-radius: 10px;
}

.texto-escuela h1 {
  font-size: 1.5rem;
  margin: 0;
  color: hsl(210, 100%, 30%);
}

.texto-escuela h2 {
  font-size: 1rem;
  margin: 2px 0 0 0;
  color: #555;
}

.redes-sociales a {
  margin-left: 15px;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.redes-sociales a:hover {
  color: #0077cc;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-texto {
    margin-bottom: 10px;
  }

  .redes-sociales a {
    margin-left: 0;
    margin-right: 10px;
  }
}

/* ----BANNER PRINCIPAL --- */
/* BANNER DESLIZANTE CON CONTROLES */
/* --- ESTILOS DEL BANNER --- */
.banner {
  position: relative;
  width: 100%;
  height: 400px; /* Podés ajustar la altura (por ejemplo: 100vh para pantalla completa) */
  overflow: hidden;
}

/* Contenedor de todas las diapositivas */
.banner-slides {
  display: flex;
  transition: transform 1s ease;
  width: 100%;
  height: 100%;
}

/* Cada diapositiva */
.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen dentro del banner */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Hace que la imagen llene el banner sin deformarse */
}
/* Texto sobre el banner */
.banner-texto {
  position: absolute;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.banner-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}

.banner-texto p {
  font-size: 1.2rem;
  margin-bottom: 1em;
}

.banner-texto .button {
  background: #0078D7;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* Botones de navegación */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 2rem;
  z-index: 10;
}

.nav-btn.prev {
  left: 15px;
}

.nav-btn.next {
  right: 15px;
}

/* Indicadores (puntos) */
.indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: white;
}
/* Botones de navegación */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 2rem;
  z-index: 10;
}

.nav-btn.prev {
  left: 15px;
}

.nav-btn.next {
  right: 15px;
}

/* Indicadores (puntos) */
.indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: white;
}

/* Responsivo */
@media (max-width: 768px) {
  .banner-texto h2 {
    font-size: 1.4em;
  }

  .banner-texto p {
    font-size: 1em;
  }

  .nav-btn {
    font-size: 1.5rem;
  }
}

/* --- MENÚ DE NAVEGACIÓN --- */
nav {
    position: sticky;
    top: 0;
    background-color:#004c99 ;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0,1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition: max-height 0.3s ease;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 12px 20px;
    font-weight: bold;
    color: white;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background-color: #003366;
    border-radius: 4px;
}

/*--- SUBMENÚ ---*/
nav ul li ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0055aa;
    min-width: 180px;
    border-radius: 5px;
    box-shadow: 0 8px 12px rgba(0,0,0,0,15);
}

nav ul li ul.dropdown li a {
    padding: 10px 15px;
    color: white;
}

nav ul li:hover ul.dropdown {
    display: block;
}

/* ---MENU HAMBURGUESA RESPONSIVE ---*/
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px ;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1100;
}

.menu-toggle span {
    height: 3px;
    width: 28px;
    background: white;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.4s ease;
}

input[type=checkbox]:checked+ label .bar1 {
    transform: rotate(-45deg) translate(-6px, 6px);  
}

input[type=checkbox]:checked .bar2 {
    opacity: 0;
}

input[type=checkbox]:checked + label .bar3 {
    transform: rotate(-45deg) translate(-6px -6px) ;
}

/* -----SLIDER CSS -----*/
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-height: 400px;
    margin-bottom: 30px;
}

.slider img {
    width: 100%;
    display: block;
    animation: slide 12s infinite;
}

@keyframes slide {
    0%, 20% {transform: translateX(0);}
    25%, 45% {transform: translateX(-100%);}
    50%, 70% {transform: translateX(-200%);}
    75%, 95% {transform: translateX(-300%);}
    100% {transform: translateX(0);}
}

/* SECCIÓN DE SERVICIOS */
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 50px 20px;
    background-color: #f2f5f9;
  }

  /* TÍTULO PRINCIPAL */
  .services-title {
    grid-column: 1 / -1; /* ocupa todo el ancho */
    text-align: center;
    font-size: 2rem;
    color: #002d62;
    margin-bottom: 30px;
    position: relative;
  }

  /* Línea decorativa debajo del título */
  .services-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #004080;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  /* TARJETAS */
  .service-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }

  .service-card h3 {
    color: #004080;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  .service-card p {
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
  }

/* ---BOTONES ANIMADOS ---*/
.button {
   display: inline-block;
    background-color: #004080;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.2s;
}

.button:hover {
    background-color: #0066cc;
}

/* --- GALERÍA DE FOTOS --- */
.gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-bottom: 3px solid #0077cc;
  display: inline-block;
  padding-bottom: 5px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
  max-width: 350px;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
}

.gallery-item p {
  margin: 10px 0 15px;
  color: #555;
  font-weight: 600;
}

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.caption {
  text-align: center;
  color: #ccc;
  font-size: 1.1em;
  margin-top: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #ff4444;
}

/* BOTONES DE NAVEGACIÓN */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  user-select: none;
  transition: 0.3s;
}

.next {
  right: 20px;
}

.prev {
  left: 20px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.3);
}

/* --- PLAN DE ESTUDIOS --- */
.plan-estudios {
  text-align: center; /* centra los títulos principales */
  margin-bottom: 2rem;
}

/* Títulos principales */
.plan-estudios h2 {
  text-align: center;
  margin: 0.5em 0;
}

/* Subtítulos (1er año, 2do año...) */
.seccion h3 {
  text-align: center;
  font-weight: bold;
  margin: 1.5em 0 1em;
  color: #222;
}

.centrado {
  text-align: center;
  font-weight: bold;
  margin: 1em 0;
  color: #111;
}

/* --- SECCIÓN INFORMÁTICA PROFESIONAL Y PERSONAL --- */
.plan-estudios {
  text-align: left; /* todo el bloque alineado a la izquierda */
  margin: 2rem auto;
  width: 85%;
  max-width: 1000px;
}

/* Encabezado principal (nombre de la especialidad) */
.plan-estudios h1 {
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #111;
}

/* Subtítulos (Título, Perfil profesional, Estructura curricular...) */
.plan-estudios h3 {
  text-align: left;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #222;
  font-weight: bold;
}

/* Bloque con el título profesional (blockquote) */
.plan-estudios blockquote {
  text-align: left;
  margin-left: 1.5em;
  font-style: italic;
  color: #333;
  border-left: 4px solid #ccc;
  padding-left: 10px;
}

/* Lista de viñetas (Perfil profesional) */
.plan-estudios ul {
  text-align: left;
  margin-left: 2em;
  list-style-type: disc; /* viñetas redondas */
}

.plan-estudios ul li {
  margin-bottom: 0.4em;
  color: #000;
  line-height: 1.5em;
}

/* Tabla centrada pero texto alineado dentro */
.plan-estudios table {
  margin: 1.5em auto;
  border-collapse: collapse;
  width: 90%;
  table-layout: auto;
}

.plan-estudios th,
.plan-estudios td {
  border: 1px solid #999;
  padding: 8px 10px;
  text-align: left;
  color: #000;
  vertical-align: top;
}

.plan-estudios th {
  background-color: #e0e0e0;
  font-weight: bold;
  text-align: center;
}

/* ---TABLAS ---*/
table.planes {
  margin: 0 auto; /* centra las tablas */
  border-collapse: collapse;
  width: 85%; /* ancho controlado pero cómodo */
  table-layout: auto; /* deja que las celdas ajusten su ancho al contenido */
  word-wrap: break-word; /* evita desbordes */
  overflow-wrap: break-word;
}

/* Celdas y bordes */
table.planes th,
table.planes td {
  border: 1px solid #999;
  padding: 8px 12px;
  vertical-align: middle;
  text-align: left;
  color: #000; /* texto negro */
}

/* Encabezados (ASIGNATURAS / HRS.) */
table.planes th {
  background-color: #e0e0e0; /* gris claro */
  color: #000; /* texto negro */
  font-weight: bold;
  text-align: center;
}

/* Celdas con números centrados */
table.planes td p[align="center"] {
  text-align: center;
}

/* Ajuste para párrafos dentro de celdas */
table.planes td p {
  margin: 4px 0;
  line-height: 1.4em;
}


/* ---MEDIA QUERIES ---- */
@media (max-width: 600px) {   /* ---adaptación a celulares ---*/
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav ul li ul.dropdown {
        position: static;
    }

    .menu-toggle {
        display: flex;
    }

    input [type=checkbox]:checked ~ ul {
        display: flex;
    }
   

    .services {
        flex-direction: column;
        padding: 10px;
    }
    
     .service-card {
      text-align: center;
    }
}

/*VIÑETAS*/
ul {
    padding: 15px;
    margin-left: 50px;
    list-style-type:disc;
    list-style-position: inside;

}

/*BLOQUOTE PARA LA PAGINA DE INFORMÁTICA*/
blockquote {
  display: inline-block;
  margin: 2rem;
  padding: 1rem 1.5rem;
  border: 1px solid hsl(210, 100%, 30%);
  border-width: 0 0 0 10px;
  background-color: #eef5f5; }
  blockquote.cuadro {
    margin-top: 0; }

table {
  margin: 2rem auto;
}

table td, table th {
    padding: .25rem .5rem; 
}
table td p, table th p {
      margin: 0; 
}
table td {
    border: 1px solid #709ac4;
    border: 1px solid #004c99; 
}

table th {
    text-align: right;
    vertical-align: top;
    background-color: #004c99;
    color: #ffffff;
    border: 1px solid #004c99; 
}

table tr:nth-child(even) {
    background-color: #eef2f5; 

}

table.simple {
    margin: 2rem; 
}

table.simple td, table.simple th {
      background-color: transparent;
      color: #4c4d50;
      border: none; 
}

table.simple tr {
      background-color: transparent; 
}

table.planes {
    width: 100%;
}

 table.planes th {
      text-align: center; 
}

table.basico {
    width: 60%; 
}
    
@media only screen and (max-width: 768px) {
      table.basico {
        width: 100%; } 
}

container { 
        max-width: 800px;
         margin: auto; 
         padding: 20px;
          border: 1px solid #ccc;
 }
.fecha {
         text-align: right;
          color: #555;
}

.titulo-dia {
   color: #333;
}

.recuadro {
  border: 2px solid #333;      /* borde del cuadro */
  padding: 15px;               /* espacio interno */
  margin: 20px 0;              /* separación exterior */
  border-radius: 10px;         /* bordes redondeados */
  background-color: #f9f9f9;   /* color de fondo */
}

.recuadro {
  border: 2px solid #444;
  border-radius: 8px;
  padding: 15px 20px;
  background-color: #f0f0f0;
}

.recuadro legend {
  font-weight: bold;
  color: #111;
  padding: 0 8px;
}

blockquote {
  border-left: 5px solid #888;
  background-color: #f9f9f9;
  padding: 10px 15px;
  margin: 20px 0;
  font-style: italic;
  color: #333;
}

.contenedor-volver {
  text-align: center;
  margin-top: 30px;
}

.btn-volver {
  background-color: #0056b3;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
}

.btn-volver:hover {
  background-color: #003d80;
}

fieldset.recuadro-historia {
  border: 2px solid #2c3e50;     /* Borde gris azulado elegante */
  border-radius: 10px;           /* Bordes redondeados */
  padding: 20px;                 /* Espaciado interno */
  background-color: #f8f9fa;     /* Fondo gris muy claro */
  margin: 30px auto;             /* Margen para separarlo de otros elementos */
  width: 90%;                    /* Ancho adaptable */
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);  /* Sombra suave */
}

legend {
  font-weight:bold ;
  font-size: 1.4em;
  color: #3b2c50;
  padding: 0 10px;
}

.texto-historia {
   font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-weight: bold;             /* Letra en negrita */
  text-align: justify;           /* Texto justificado */
}

.texto-historia h2 {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: bold;
      font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    }

  .texto-historia p {
      text-align: justify;
      line-height: 1.6;
      font-size: 1.2em;
      margin-bottom: 10px;
      color: #003366;
      font-family: Arial, Helvetica, sans-serif;
    }


.texto-historia h3 {
      color: #0077cc;
      margin-bottom: 20px;
      font-weight: bold;
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
    }

   .recuadro-notifica {
      border: 3px solid #004aad;   /* color del borde (ajustable) */
      border-radius: 10px;
      padding: 20px;
      text-align: center;          /* centra el contenido dentro del fieldset */
      background-color: #f8f8f8;   /* opcional: color de fondo suave */
      width: 80%;                  /* opcional: tamaño del recuadro */
     margin: 20px auto;    
   }

   .recuadro-notifica legend h1 {
      font-size: 1.8rem;
      font-weight: bold;
      text-align: center;
      color: #004aad;
  }

  /* Imagen centrada y proporcional */
.notifica-img {
    display: block;      /* permite usar margin auto */
    margin: 20px auto;   /* centra horizontalmente */
    width: 50%;          /* ajustá este valor según el tamaño que quieras */
    height: auto;        /* mantiene proporción */
    border-radius: 10px; /* bordes redondeados opcional */
}

.recuadro-foto {
    border: 3px solid #004aad;   /* color del borde (ajustable) */
      border-radius: 10px;
      padding: 20px;
      text-align: center;          /* centra el contenido dentro del fieldset */
      background-color: #f8f8f8;   /* opcional: color de fondo suave */
      width: 80%;                  /* opcional: tamaño del recuadro */
     margin: 20px auto;  
}

.recuadro-foto legend h1 {
    font-size: 1.8rem;
      font-weight: bold;
      text-align: center;
      color: #004aad;
}

.notifica-foto {
    display: block;      /* permite usar margin auto */
    margin: 20px auto;   /* centra horizontalmente */
    width: 100%;          /* ajustá este valor según el tamaño que quieras */
    height: auto;        /* mantiene proporción */
    border-radius: 10px; /* bordes redondeados opcional */
}

/*Footer Nuevo*/

/* --- PIE DE PAGINA ---*/

footer {
    background-color: #081f4d;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    box-shadow: 0 -4px 6px rgba(0,0,0,0,1) ;
} 
    

.footer {
  background-color: #081f4d; /* azul oscuro institucional */
  color: #ffffff;
  padding: 25px 10px;
  font-family: "Segoe UI", Arial, sans-serif;
  border-top: 4px solid #0078d7;
}

.footer i {
  color: #66b3ff; /* color de íconos */
  margin-right: 8px;
}

.footer .footer-link {
  color: #a8b9d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-link:hover {
  color: #edf1f5;
  text-decoration: underline;
}

.footer .row {
  margin-bottom: 10px;
}

.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
  font-size: 0.9rem;
  color: #cccccc;
}

iframe {
  width: auto;
  height: 150px;
  border: 0;
}

/* Adaptable para pantallas pequeñas */
@media (max-width: 768px) {
  .footer .text-left,
  .footer .text-center,
  .footer .text-right {
    text-align: center !important;
    margin: 8px 0;
  }
}

/*--formato imagenes página evento 1 y 2---*/
/*--Estilo General---*/
.seccion-feria-libro {
  background-color: #f4f6f9;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.contenedor-feria {
  max-width: 900px;
  width: 100%;
}

.seccion-intertribus {
  background-color: #f4f6f9;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.contenedor-intertribus {
  max-width: 900px;
  width: 100%;
}

.recuadro-foto {
  border: 2px solid  #004080;
  border-radius: 10px;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recuadro-foto legend h3 {
  color: #004080;
  text-align: center;
  margin: 0;
  font-size: 1.6em;

}

.recuadro-foto p {
  text-align: justify;
  font-family: segoe UI, Arial, Helvetica, sans-serif;
  font-size: 1.05em;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

/*----CARRUSEL PARA LAS FOTOS ---*/
.carrusel-feria {
   position: relative;
   margin-top:25px;
   overflow: hidden;
}

.carrusel-intertribus {
   position: relative;
   margin-top:25px;
   overflow: hidden;
}

.carrusel-contenedor {
  overflow: hidden;
  width: 100%;
}

.carrusel-pista {
  display: flex;
  transition: transform 0.5s ease;
}

.carrusel-pista img {
  width: 250px;
  border-radius: 10px;
  margin: 0 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.carrusel-pista img:hover {
  transform: scale(1.05);
}

.btn-carrusel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2em;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
  }

  .btn-carrusel.prev { left: 10px; }
  .btn-carrusel.next { right: 10px; }

  .btn-carrusel:hover {
    background-color: rgba(0,0,0,0.7);
  }

  /* --- LIGHTBOX (ZOOM) --- */
  .lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }

  .lightbox.active {
    display: flex;
  }

  /* ---Diseño adaptable para pantallas pequeñas */
  @media (max-width: 768px) {
    .carrusel-pista img { 
      width: 180px; 
    }
  }

  @media (max-width: 480px) {
    .carrusel-pista img { 
      width: 140px;
     }
    }
