.tarjetas {
    display: flex;
    flex-direction: column;
    width: 8rem;
    padding: 0.5rem;
    margin: 1rem 3rem;
    border-radius: 0.75rem;
    background-color: #ffffff;

    /* Sombreado moderno */
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);

    /* Efectos adicionales para un look más moderno */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hover effect para mayor interactividad */
.tarjetas:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Estilos para el SVG */
.tarjetas svg {
    width: 100%;
    height: auto;
    margin-bottom: 0.25rem;
}

/* Estilos para las imágenes */
.tarjetas img {
    width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.logo_ete{
    margin-bottom: 3rem;
}

/* Eliminar margen del último elemento */
.tarjetas img:last-child {
    margin-bottom: 0;
}
