* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /*body, html {
    height: 100%;
    width: 100%;
    font-family: sans-serif;
  }*/
  html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* 🔥 Esto quita todas las barras de scroll */
  }
  
  .carrusel {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    /*background-color: #000;
    background-color:#d5e6b2;
    background-color:#cfe3a4;*/
    /*background-color:#cfe3a4;*/
    background: linear-gradient(to bottom, #d5e6b2, #b8d96e);

  }
    
  .carrusel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }
  
  .carrusel-item.activo {
    opacity: 1;
    z-index: 1;
  }
  
  .carrusel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
    transition: background 0.3s;
  }
  
  .flecha:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .izquierda {
    left: 10px;
  }
  
  .derecha {
    right: 10px;
  }
  
  .indicadores {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 2;
  }
  
  .punto {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .punto.activo {
    background-color: white;
  }
  
 /*.logo-sediaco {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 18vw;*/ /* Se adapta al ancho de pantalla */
    /*height: auto;
    z-index: 10;
    opacity: 0.95;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .logo-sediaco:hover {
    transform: scale(1.05);
  }*/
  /*.marca-agua {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
  }
  
  .marca-agua img {
    max-width: 60%;
    height: auto;
    display: block;
  }*/
  /*.marca-agua {
    position: absolute;
    inset: 0; /* top, right, bottom, left = 0 */
    /*z-index: 0;
    pointer-events: none;
    opacity: 0.9; /* marca de agua muy suave */
    /*display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .marca-agua img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(0.7);
  }*/
  /*.marca-agua {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .marca-agua img {
    width: 100vw;          /* adapta al ancho de pantalla */
   /* height: auto;          /* mantiene proporción */
   /* max-height: 100vh;     /* nunca se pasa del alto del carrusel */
   /* object-fit: contain;*/
    /*filter: grayscale(100%) contrast(0.7);*/
  /*}*/

  .marca-agua-vertical {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  
  .marca-agua-vertical img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transform: rotate(-90deg); /* si es un logo horizontal */
  }
  /*.marca-agua-lateral {
    position: absolute;
    top: 0;
    left: 0; /* o cambia a right: 0 para mover al lado derecho */
    /*height: 100%;
    width: 120px; /* o 10vw si prefieres en % */
    /*z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: hidden;
  }
  
  .marca-agua-lateral img {
    height: 90%;
    width: auto;
    object-fit: contain;
  }*/
  .marca-agua-lateral {
    position: absolute;
    top: 0;
    right: 7%; /* o right: 0 si lo prefieres al otro lado */
    height: 100vh;
    width: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 10px;
  }
  
  .marca-agua-lateral img {
    height: 100vh;
    width: auto;
    max-width: 25vw;
    object-fit: contain;
  }
  
  