body {
    font-family: Times New Roman, sans-serif;
    margin:  0;
    padding: 0;
    background-color: #ffffff;
}

header {
    background-color: #ffffff;
    color: #ff63e5;
    padding: 0px 0;
    text-align: center;
    font-size: 1.7rem;
}

nav {
    background-color: #000000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.5rem;
}

nav ul li {
    margin: 0 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

nav ul li a:hover {
    background-color: #575757;
}

main {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.catalogo-item {
    background-color: #ffffff;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(33% - 40px);
    box-sizing: border-box;
    
}

.catalogo-item img {
    max-width: 100%;
    width: 550px; /* Adjust the width as needed */
    height: 700px; /* Adjust the height as needed */
    object-fit: cover;
    display: block;
    margin: 0 auto 10px;
    
}

.catalogo-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  
}

.catalogo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    
}

.producto {
    background-color: #fff;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(33% - 40px);
    box-sizing: border-box;
}

.producto img {
    max-width: 100%;
    width: 450px; /* Adjust the width as needed */
    height: 600px; /* Adjust the height as needed */
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.producto p {
    margin: 0 0 10px;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }

    .catalogo-item, .producto {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .catalogo-item, .producto {
        flex: 1 1 100%;
    }
}
.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
}

.social-icon {
    background-color: #333;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon img {
    width: 50px; /* Ajusta el tamaño del icono */
    height: 50px; /* Ajusta el tamaño del icono */
}

.social-icon:hover {
    background-color: #555;
}