/* Reset básico y box-sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
  }
  
  /* Estilo general del body y navegación */
  body {
    width: 100%;
    background-color: #002046;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  nav {
    text-align: center;
    color: #fff;
    width: 100%;
    height: 4rem;
    background-color: #1d5192;
  }
  
  nav h1 {
    color: gainsboro;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.5em;
    margin: 0;
  }
  
  @media screen and (max-width: 768px) {
    nav h1 {
      font-size: 20px;
      margin: 5px;
    }
  }
  
  /* Contenedor del carrusel */
  .contenedor {
    width: 100%;
    max-width: 1200px; /* Puedes ajustar el máximo */
    position: relative;
    overflow: hidden;
    background-color: bisque;
  }
  
  /* Carrusel y slides usando Flexbox */
  .carusel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    flex: 0 0 100%;
    position: relative;
  }
  
  /* Estilo de las imágenes para que sean responsive */
  .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  /* Puntos de navegación (dotted navigation) */
  .puntos {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .punto {
    width: 15px;
    height: 15px;
    margin: 0 10px;
    background-color: rgba(145, 25, 25, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .punto.activo {
    background-color: #00eeff;
    box-shadow: 0 0 10px #00eeff, 0 0 20px #00eeff, 0 0 30px #00eeff;
  }
  