*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}
/*header*/
.header-contenido{
    background-color: rgb(0, 173, 239);
    width: 100%;
    padding: 12px;
    font-size: 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 1px 1px 5px 2px gray;
    margin-bottom: 10px;
}
.header-contenido .titulo{
    font-style: oblique;
    font-weight: bold;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: white;
    padding: 0px 50px;
    font-size: 23px;
}
.header-contenido form{
    display: flex;
    justify-content: space-between;
}
.header-contenido .buscador{
    display: flex;
    flex-wrap: wrap;
}
.header-contenido .buscador i{
    color: black;
    background-color: white;
    font-size: 24px;
    width: 25px;
    padding: 8px 0 0 5px;
    border-radius: 12px 0px 0px 12px;
}
.header-contenido .buscador input{
    width: 78%;
    height: 40px;
    border:none;
    border-radius: 0px 12px 12px 0px;
    outline: none;
    color: black;
    padding: 5px 10px 5px 15px;
    font-size: 16px;
}
.header-contenido .buscar{
    height: 40px;
    border:none;
    outline: none;
    padding: 5px 10px 5px 15px;
    font-size: 16px;
    margin-left: 15px;
    background-color: rgb(1, 136, 194);
    width: 100px;
    border-radius: 12px; 
    color: white;
}
.derechos{
    background-color: rgb(0, 173, 239);
    padding: 6px 10px;
    text-align: center;
    color: white ;
    width: 100%;
    margin-top: 135px;
    bottom: 0;
}
.derechos small{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}
.header-contenido a{
    color: white;
    font-size: 18px;
    padding: 0 18px;
}
/*contenido*/
.contenido{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.categoria{
    background-color: rgb(0, 173, 239);
    color: white;
    text-align: center;
    padding: 6px 12px;
    margin: 10px 15px;
    border-radius: 10px;
    width: 95%;
}
.sistemas, .contabilidad, .servicios{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}
.producto{
    width: 265px;
    margin: 15px 25px;
    padding: 15px 0;
    border-radius: 15px;
    box-shadow:1px 5px 12px -1px gray;
    font-size: 30px;
    font-family: "Poppins" , sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.producto:hover {
    box-shadow:2px 5px 16px -1px gray;
}
.producto .contenido-imagen{
    display: flex;
    justify-content: center;
}
.producto .imagen{
    width: 250px;
    height: 180px;
}
.producto .imagen img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.producto .cuerpo-producto{
    font-family: "Poppins" , sans-serif;
    display: flex;
    flex-direction: column;
    margin: 3px 20px;
}
.cuerpo-producto .Pcategoria{
    color: darkgray;
    font-size: 14px;
}
.cuerpo-producto .Pnombre{
    color: black;
    font-size: 20px;
    margin: 8px 0;
    text-align: center;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
.cuerpo-producto .Pprecio{
    color: rgb(75, 73, 73);
    font-size: 20px;
    margin: 30px 0;
}
.producto .informacion{
    padding: 6px 14px;
    font-size: 19px;
    border-radius: 25px;
    color: white;
    background-color: rgb(0, 173, 239);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
    border: none !important;
    cursor: pointer;
}
.mensaje-error{
    margin: 10px 0;
    display: flex;
    justify-content: center;
    background-color: #da3131;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px;
}
/*detalles*/
.detalles-producto{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 40px 0px;
}
.detalles-producto .cuadrado-imagen{
    width: 550px;
    margin: 0px 80px;
    height: 480px;
}
.detalles-producto .cuadrado-imagen img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.detalles-producto .info-producto{
    width: 450px;
    display: flex;
    flex-direction: column;
}
.detalles-producto .info-producto .Inombre{
    font-size: 30px;
    margin-bottom: 20px;
}
.detalles-producto .info-producto .Iprecio{
    font-size: 20px;
    margin-bottom: 20px;
    color: rgb(75, 73, 73);
}
.detalles-producto .info-producto .Idescripcion{
    font-size: 15px;
    margin-bottom: 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 20px;
    color: rgb(59, 59, 59);
}
.detalles-producto .info-producto .Icategoria{
    margin-top: 20px;
    display: flex;
}
.detalles-producto .info-producto .Icategoria p{
    font-size: 14px;
    margin-right: 5px;
}
.detalles-producto .info-producto .Icategoria p span{
    color: darkgray;
    font-size: 14px;
}
.Chat{
    color: #fff;
    background-color: rgb(5, 179, 5);
    padding: 8px 11px;
    width: 38%;
    font-size: 18px;
    border-radius: 14px;
}
@media screen and (max-width:1160px){
    .detalles-producto{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cuadrado-imagen{
        margin: 0px;
    }
}
@media screen and (max-width: 1000px) {
    .header-contenido .titulo{
        margin: 15px;
    }
    .header-contenido .buscador .buscar{
        margin-left: 15px;
        background-color: rgb(1, 136, 194);
        width: 100px;
        border-radius: 12px; 
        color: white;
    }
    .header-contenido a{
        margin-top: 15px;
    }
}
@media screen and (max-width:714px){
    .detalles-producto .cuadrado-imagen{
        width: 350px;
        height: 280px;
    }
    .info-producto{
        width: 40%;
    }
}
@media screen and (max-width:700px){
    .header-contenido{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width:565px){
    .detalles-producto .cuadrado-imagen {
        width: 250px;
        height: 180px;
        margin: 0 0 20px 0;
    }
    .info-producto{
        width: 250px !important;
    }
    .Inombre{
        font-size: 20px !important;
    }
    .Idescripcion{
        font-size: 10px !important;
    }
    .Chat{
        font-size: 12px;
        width: 49%;
    }
}
@media screen and (max-width:357px){
    .producto{
        margin: 15px 0;
    }
    .header-contenido .titulo{
        font-size: 18px;
    }
    .header-contenido form{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 10px;
    }
    .header-contenido form .buscar{
        margin: 10px;
    }
}
@media screen and (max-width:299px){
    .header-contenido .titulo {
        font-size: 14px !important;
    }
}