body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0b0f17, #18202e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.contenedor-imagen {
    text-align: center;
    max-width: 800px;
    padding: 24px;
}

.contenedor-imagen img {
    width: 100%;
    max-width: 700px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.contenedor-imagen img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.texto {
    margin-top: 16px;
    font-size: 1rem;
    color: #cbd5e1;
}
