

.contenedor_principal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    height: 100%; 
}

.contenedor_etiqueta {
    background-color: transparent; 
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    max-width: 900px; 
    width: 90%; 
    overflow: hidden;
    margin: 30px; 
}

.informacion_vital {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nombre_estelar {
    color: #9d2148;
    font-size: 1.1em; 
    margin-bottom: 12px;
}

.titulo_profesional {
    color: #555;
    font-size: 1em; 
    margin-bottom: 15px;
}

.contacto_directo p {
    color: #777;
    margin-bottom: 6px;
    font-size: 0.9em; 
}

.retrato_artistico {
    flex-shrink: 0;
    max-width: 200px; 
    width: 40%; 
    height: auto;
}

.retrato_artistico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


@media (max-width: 768px) {
    .contenedor_etiqueta {
        flex-direction: column; 
    }

    .retrato_artistico {
        max-width: 100%;
        width: 100%;
    }

    .informacion_vital {
        padding: 20px;
        text-align: center; 
    }

    .nombre_estelar {
        font-size: 1.8em;
    }

    .titulo_profesional {
        font-size: 1.1em;
    }
}