* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;


    background-color: rgb(248, 244, 244);
   
    
}
.sin-espacio-vertical aside + aside {
    margin-top: 0.5rem; /* o 0 si lo querés completamente pegado */
  }

.main-notas {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .nota-card {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }

  .card-body {
  max-height: 400px; /* Ajusta la altura máxima según tu diseño */
  overflow-y: auto;  /* Activa el scroll vertical */
}
/* Estilo general del artículo */
.nota {
  max-width: 800px;
  margin: 0 auto;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  padding: 1rem;
}

.pagination .page-link {
  color: #13b8fa; /* cambia el color de los números */
}

.pagination .page-item.active .page-link {
  background-color: #13b8fa;
  border-color: #13b8fa;
  color: white;
}

/* Estilo para párrafos */
.nota p {
  margin-bottom: 1.2rem;
}

/* Imágenes centradas y redimensionadas */
.nota img {
  display: block;
  margin: 1rem auto;
  width: 80vw;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Videos centrados */
.nota iframe {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
}

/* Estilo opcional para títulos dentro del contenido */
.nota h1,
.nota h2,
.nota h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.ql-editor iframe {
  width: 100%;
  height: 400px;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border: none;
}

  .nota iframe {
    width: 100% !important;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto !important;
    display: block;
    margin: 1em auto;
    border: none;
  }


  
  .nota-link {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
  }
  
  .nota-img {
    width: 200px;
    height: 130px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .nota-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
  }
  
  .nota-content {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .nota-titulo {
    color: black;
    font-size: 1.4rem;
    margin: 0 0 8px 0;
    font-weight: 600;

  }
  
  .nota-copete {
    margin: 0 0 8px 0;
    color: #555;
  }
  
  .nota-autor {
    color:  #472df0;
    font-size: 0.9rem;
    
  }

  

.destacado-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
 
    .img-fixed {
  height: 30%; 
  object-fit: cover;
}
  
  
  .img-col {
    width: 100%;
    max-width: 400px;
    height: 300px; /* altura fija */
    overflow: hidden; /* para que no se desborde */
    flex-shrink: 0;
    border-radius: 1rem;
  
  }

  .mini-nota-img {
    width: 100%;        /* Que ocupe todo el ancho del contenedor */
    height: 200px;      /* Fijás una altura para que todas tengan el mismo tamaño */
    object-fit: cover;  /* Para que la imagen se recorte sin deformarse */
    border-radius: 10px; /* Opcional: suavizás bordes */
  }

  .img-zoom {
    transition: transform 0.3s ease;
    object-fit: cover;
  }
  
  .img-zoom:hover {
    transform: scale(1.05);
  }
  
  .mailAdmin {
    font-size: 0.7rem; 
  }

 
  
.bg-primary {
    background-color: #800000; 
    border-radius: 1%;
    padding: 5%;
  }

  .h2-destacado, .p-destacado, .h3-destacado, .h5-destacado{
    color: white;
  } 
.p-autor{
    color: rgb(0, 0, 0);
}
  .bg-blue{
    background-color: rgb(54, 54, 90);
  }
  .texto-chico {
    font-size: 0.85rem; /* o 0.75rem para más chico */
  }

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover; /* Asegura que la imagen se mantenga proporcionada */
}

.user-email {
    font-size: 12px; /* Letra más pequeña */
    font-weight: 400; /* Peso normal */
    white-space: nowrap; /* Evita que el texto se desborde a otra línea */
    overflow: hidden; /* Oculta texto si es muy largo */
    text-overflow: ellipsis; /* Muestra "..." si el texto es muy largo */
    max-width: 150px; /* Ajusta el ancho máximo del texto */
    text-align: center;
}

.dropdown-item {
    font-size: 12px;
    padding: 5px 10px; /* Menor padding */
    color: white; /* Asegura el color del texto */
    text-align: center;
}

.dropdown-item:hover {
    background-color: #444; /* Agrega un fondo al pasar el mouse */
}

.dropdown-item:hover {
    background-color: #444; /* Agrega un fondo al pasar el mouse */
}


.carrito {
    position: relative;
    display: inline-block;
}

.carrito-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
}

.main-header {

    position: sticky;
    top: 0;
    z-index: 100;
    background-color: black;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    
}

.logo-y-rutas {
    width: 50%;
    display: flex;

}

.logo {
    width: 120px;

}

.hamburguer-button {

    color: white;
    display: flex;
    justify-content: end;
    width: 15%;
    


}

main {
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
    
  

}

main section article {
    background-color: #fff;
    margin: 10px 0px;
}

main section article img {
    width: 100%;
}

main section article p {
    display: inline-block;
}

.main-navbar {
    width: 50%;
    display: none;
}
/* Estilo para el botón hamburguesa */
.navbar-toggler {
    background-color: #13b8fa !important;
    border: none !important;
    padding: 10px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

  /* Estilo para las rayas del icono de hamburguesa */
  .navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Espacio uniforme entre las barras */
    width: 30px; /* Ancho total de las rayas */
    height: 24px; /* Altura total de las tres rayas */
  }
  
  /* Rayas individuales */
  .navbar-toggler-icon span {
   background-color: white !important; 
    height: 4px; /* Grosor de las rayas */
    border-radius: 4px !important; /* Bordes redondeados en las rayas */
    width: 100%; /* Ancho completo de cada raya */
  }
  

  
  #mainNavbar {
    position: absolute; /* Lo coloca en un lugar específico */
    top: 100%; /* Justo debajo del header */
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
.lupaymas {
    width: 100;
    justify-content: flex-end;
    display: none;
    color: white;
}

.main-navbar ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.main-navbar a {
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 5px o;
    font-size: 17px;
}

.product_img {
    width: 250px;
}

.ingresar-productos{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.span-ing-prod input, .span-ing-prod textarea{
    height: 20px;
    padding-bottom: 2px;
    margin-top: 4px;
    border: 0px;
    border-bottom: solid 1px gray;
    font-family:  Helvetica
}

.titulo-registro{
    font-family:  Helvetica;
    color: rgb(230, 61, 50);
}
.span-ing-prod textarea{
    margin-top: 10px;
}

.ingresar-productos{
    border-radius: 10px;
    box-sizing: border-box;
    margin-left: 20%;
    margin-right: 20%;
    width: 60%;
    border: solid 3px  rgb(230, 61, 50);
    box-shadow: 7px 7px 15px gray;
    padding: 10px;
    justify-content: center;
    flex: none;
}

.gif-esqueleto{
    width: 50px;
}

.form-tabla{
    max-width: 98%;
}
.form-tabla input, .form-tabla  textarea, .form-tabla select{
    max-width: 98%;
    width: 80%;
}

.boton-guardar {
    position: relative;
    border: solid black 1,5px;
    border-radius: 10px;
    padding: 3px;
    box-shadow: 2px 2px 5px gray;
    
}

/* 

.nivel1-form{
    display: flex;
    flex-wrap: wrap;
    
}
.nivel1-form div, .nivel3-form div{
    padding: 5px;
}

.nivel2-form {
    padding: 5px;
}

.nivel3-form{
    display: flex;
} */


input, textarea{
    max-width: 95%;
}

.main-notas {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px;
  }
  
  .tablas {
    width: 300px;
  }
  
  .titulo-nota{
    font-size: x-large;
    text-decoration: none;
  }

.copete-nota{
    font-size: large;
}

.contenido-nota{
    font-size:x-small;
}
a {
    text-decoration: none;
    color: inherit;
  }
  
  a h4,
  a p {
    text-decoration: none !important;
  }
  

  .article-notas {
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
  }
  

.mastablas {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: 20%;
    margin-top: -10%;
    padding: 2px;
    border: solid 1px rgb(255, 255, 255);
    box-shadow: none;
    align-items: center;
    text-decoration: none;
}

.masruedas {
    width: 30%;
    display: flex;
    justify-content: space-around;
    margin-left: 35%;
    padding: 3px;
    border: solid 1px black;
    box-shadow: none;
    align-items: center;
    text-decoration: none;
}

.mastrucks {
    width: 30%;
    display: flex;
    justify-content: space-around;
    margin-left: 35%;
    padding: 3px;
    border: solid 1px black;
    box-shadow: none;
    align-items: center;
    text-decoration: none;
}

.product_img {
    width: 100%;
    display: flex;

}

.product_img2 {
    width: 200px;
    display: flex;

}

h4 {
    font-size: 30px
}

h3 {

    display: flex;
    justify-content: center;
    padding: 2px;
    font-size: 15px;
}

.description {
    font-size: 20px;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.price {
    display: flex;
}

.tablaaguila {
    display: flex;
    justify-content: center;
    padding: 6px;

}

.element {
    width: 5px;
    border: solid 2px red;
}

.video {
    display: flex;
    image-resolution: 20px;
    justify-content: center;


}
.carousel-inner img {
    max-height: 400px; /* Ajusta la altura según tu diseño */
    width: 100%; /* Asegura que ocupe el ancho completo */
    object-fit: contain; /* No recorta la imagen */
}
.carousel-control-prev-icon, 
.carousel-control-next-icon {
    background-color: black; /* Cambia a un color visible */
}

.youtube {

    display: flex;
    justify-content: center;

}

.suscribe {
    display: flex;
    justify-content: center;
    padding: 5px;
    margin-left: 30%;

}

.redes {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    align-items: center;
}

footer {

    background-color: black;
    color: #fff;
    font-weight: lighter;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

h3 .suscribe {
    margin-top: 5px;
}

.register {
    display: flex;
    justify-content: center;
}

.register h3 {
    font-size: 15px;
}

.skater {
    display: flex;
    justify-content: center;
    font-size: 36px;
}

.crearcuenta {
    display: flex;
    justify-content: center;
    font-size: 37px;
    margin-top: 20px;
}

.create-form {
    padding: 20px 15px;
}

.control-formulario {
    margin-bottom: 5px;
    margin-top: 5px;
    font-style: italic;
    
}

.control {
    width: 100%;
    padding: 5px;
}

.Newsletter {
    display: flex;
    justify-content: center;
    padding: 8px
}

.submit {
    background-color: black;
    border: none;
    font-size: 20px;
    color: white;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.reset {
    background-color: black;
    border: none;
    font-size: 20px;
    color: white;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

section.banner img {
    width: 100%;
    display: flex;
}

.link-form{
    text-decoration: none;
    color: black;
}

div.errores{
    color:red;
}




@media (min-width: 361px) {
    .link-form{
        text-decoration: none;
        color: black;
    }

    .product_img:hover {

        box-shadow: 0px 0px 10px rgb(100, 100, 100)
    }

    .header {
        position: fixed;

    }

    main section article .description {
        display: block;
    }

    .logodiv {
        display: flex;
        justify-content: space-between;
    }

    .precio {
        font-size: 15px;
        display: flex;
        justify-content: flex-start;
        margin-left: 5%;
    }

    .cantidad {
        font-size: 15px;
        display: flex;
        justify-content: flex-start;
        margin-left: 5%;
    }

    .descripcion {
        font-size: 13px;
        display: flex;
        justify-content: center;
        margin-left: 1%;
    }

    .agregarAlCarrito {
        background-color: black;
        color: white;
        padding: 10px;
        display: flex;
        justify-content: center;
        margin-left: 35%;
        transition-property: background-color, color;
        transition-duration: 0.5s;
        border-radius: 5px;
        border: none;
    }

    .agregarAlCarrito:hover {
        background-color: red;
        color: yellow;

    }

    .hamburguer-button {
        display: flex;
        justify-content: flex-end;
        margin-left: 40%;

    }

    .tablas {
        display: flex;
        justify-content: space-around;
    }

    .description {
        font-size: 6px;
        display: flex;
        justify-content: center;

    }

    .cantidadBoton {
        display: flex;
        justify-content: flex-start;
        padding: 3px;
    }

   
    
    .subtotal{
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: black;
        color: white;
    }

    .checkout-div {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .checkout {
        width: 200px;
        background-color: black;
        color: white;
        padding: 10px;
        display: flex;
        justify-content: center;
        transition-property: background-color, color;
        transition-duration: 0.5s;
        border-radius: 5px;
        border: none;
        margin: 0px;
    }

    .checkout:hover {
        background-color: red;
        color: yellow;

    }

    .editar {
        background-color: black;
        color: white;
        padding: 10px;
        display: flex;
        justify-content: center;
        margin-left: 5%;
        transition-property: background-color, color;
        transition-duration: 0.5s;
        border-radius: 5px;
        border: none;
    }

    .editar:hover {
        background-color: red;
        color: yellow;
    }

    .eliminar {
        background-color: black;
        color: white;
        padding: 10px;
        display: flex;
        justify-content: center;
        margin-left: 5%;
        transition-property: background-color, color;
        transition-duration: 0.5s;
        border-radius: 5px;
        border: none;
    }

    .eliminar:hover {
        background-color: red;
        color: yellow;
    }
    .botoneditar{
        display: flex;
        justify-content: center;
       
        font-family: 'Anton', sans-serif;
        align-items: center;
        margin-left: -58%;
    
    }
    .precio-descuento{
        text-decoration: none;
        color: black;
        display: flex;
        justify-content: center;
        font-size: 15px;
        
    }
    .precio-descuento2 {
        text-decoration: none;
        color: black;
        display: flex;
        justify-content: center;
        font-size: 10px;
        
    }
    .precio-descuento3 {
        text-decoration: none;
        color: black;
        display: flex;
        justify-content: center;
        font-size: 10px;
      
    }


    @media (min-width: 769px) {

        .description {
            font-size: 12px;
            display: flex;
            justify-content: center;

        }

        .logodiv {
            display: flex;
        }

        .main-navbar {
            display: flex;
            justify-content: space-between;

        }

        .main-navbar {
            margin-top: 40px;
        }

        .main-navbar li {
            margin: 0 10px;
        }

        .main-navbar a {
            font-size: 19px;
        }

        .hamburguer-button {
            display: none;

        }

        .lupaymas {
            display: flex;
            width: 100px;
            padding: 2px;
            color: white;
            margin-top: 20px;
            padding: 15px;
            margin-left: 20%;
        }

        .lupa {

            padding: 10px;
        }

        .user {

            padding: 10px;
        }

        .carrito {

            padding: 10px;
        }

        .suscribe {
            display: flex;
            justify-content: center;
            padding: 5px;
            margin-left: 40%;

        }

        h3 {

            display: flex;
            justify-content: center;
            padding: 2px;
            font-size: 20px;
        }

        .checkout {
            background-color: black;
            color: white;
            padding: 10px;
            display: flex;
            justify-content: center;

        }

        .editar {
            background-color: black;
            color: white;
            padding: 10px;
            display: flex;
            justify-content: center;
            margin-left: 5%;

        }

        .eliminar {
            background-color: black;
            color: white;
            padding: 10px;
            display: flex;
            justify-content: center;
            margin-left: 5%;

        }
        .botoneditar{
            display: flex;
            justify-content: center;
           
            font-family: 'Anton', sans-serif;
            align-items: center;
            margin-left: -80%;
        
        }
        .precio-descuento{
            text-decoration: none;
            color: black;
            display: flex;
            justify-content: center;
            font-size: 16px;
        }
        .precio-descuento2{
            text-decoration: none;
            color: black;
            display: flex;
            justify-content: center;
            font-size: 16px;
        }
        .precio-descuento3{
            text-decoration: none;
            color: black;
            display: flex;
            justify-content: center;
            font-size: 16px;
        }
        
    }
}

@media (min-width: 1000px) {

    .lupaymas {
        display: flex;
        justify-content: flex-end;

        padding: 2px;
        color: white;
        margin-top: 20px;
        padding: 15px;
        margin-left: 40%;
    }

    .suscribe {
        display: flex;
        justify-content: center;
        padding: 5px;
        margin-left: 43%;

    }

    h3 {

        display: flex;
        justify-content: center;
        padding: 2px;
        font-size: 25px;
    }

    .checkout {
        background-color: black;
        color: white;
        padding: 10px;
        display: flex;
        justify-content: center;

    }

    .editar {
        background-color: black;
        color: white;
        padding: 10px;
        display: flex;
        justify-content: center;
        margin-left: 5%;

    }

    .eliminar {
        background-color: black;
        color: white;
        padding: 10px;
        display: flex;
        justify-content: center;
        margin-left: 5%;

    }
    .botoneditar{
        display: flex;
        justify-content: center;
       
        font-family: 'Anton', sans-serif;
        align-items: center;
        margin-left: -45%;
    
    }
    .precio-descuento{
        text-decoration: none;
        color: black;
        display: flex;
        justify-content: center;
        font-size: 16px;
    }
    .precio-descuento2{
        text-decoration: none;
        color: black;
        display: flex;
        justify-content: center;
        font-size: 16px;
    }
    .precio-descuento3{
        text-decoration: none;
        color: black;
        display: flex;
        justify-content: center;
        font-size: 16px;
    }
}
