main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.carousel {
    max-width: 1200px;
    display: grid;
    place-content: center;
}
.carousel-item img {
    width: 100%;
}
.about {
    width: 100%;
    height: auto;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    .about-art {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: .5rem;
        padding: .5rem .5rem 0 .5rem;
        border: 5px solid var(--rosa-sec);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }
    .about-art h3 {
        font-size: 24px;
        margin: 0 0 .5rem 0;
        font-family: tit;
        height: 20%;
        color: var(--rosa-ppal);
    }
    .about-art p {
        font-size: 16px;
        height: 80%;
        display: flex;
        align-items: center;
        color: var(--negro-soft);
    }
}
.prods {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .prods-imgs {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .prods-imgs img {
        width: 100%;
        max-width: 320px;
        max-height: 450px;
        margin: 1rem;
        border: 5px solid var(--rosa-sec);
        border-radius: 5px;
        background-color: var(--rosa-sec);
    }
}
.prods h2 {
    text-align: center;
    font-family: tit;
    font-size: 28px;
    margin: 0 0 .5rem 0;
    color: var(--rosa-ppal);
}
/* Estilo general de las tarjetas */
.about-art {
    background-color: #fff4f7; /* Fondo rosado claro */
    border: 2px solid #ffd5ea; /* Borde suave */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
    border-radius: 12px; /* Bordes redondeados */
    padding: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Estilo del título */
.about-art h3 {
    color: #ff6fa5; /* Color rosado */
    font-weight: bold;
    margin-bottom: 12px;
}

/* Estilo de los iconos */
.about-icon {
    width: 40px;
    margin-bottom: 8px;
}

/* Listas */
.about-art ul {
    list-style: none; /* Sin viñetas */
    padding: 0;
}

.about-art ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333; /* Texto oscuro */
}

.about-art ul li::before {
    content: "✓"; /* Agrega una marca de verificación */
    margin-right: 8px;
    color: #ff6fa5; /* Color rosado */
    font-weight: bold;
}

@media (min-width: 1024px) {
    .about {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        .about-art {
            width: 33%;
            height: 15rem;
        }
    }
}