 /* !--######################################### INICIO DE SLIDER DE FOTOS SE PEGA EN EL HTML O PHP################################################### */
  
  * {
      box-sizing: border-box;
    }

    .slider {
      position: relative;
      width: 750;
      max-width: 750px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      margin-bottom: 30px; /* espacio entre sliders */
    }

    .slides {
      display: flex;
      width: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .slides img {
      width: 100%;
      border-radius: 10px;
    }

    .controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
    }

    .controls button {
      background-color: rgba(0,0,0,0.5);
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
      padding: 10px;
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .controls button:hover {
      background-color: rgba(0,0,0,0.8);
    }

 
 

/* ###########################################FIN DEL SLIDE##########################################--> */