body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    color: #333;
}

header {
    background: #5c2e91;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* 🔵 Estilo del logo */
.logo-contenedor {
    margin-bottom: 20px;
}

.logo-img {
    width: 120px;            /* Tamaño ideal */
    height: 120px;
    border-radius: 50%;      /* Redondo */
    object-fit: cover;       /* Ajusta bien el contenido */
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
    border: 4px solid rgba(255,255,255,0.8);
}

.subtitulo {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
}

.contenido {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h2 {
    color: #5c2e91;
}

.boton {
    display: inline-block;
    margin: 20px 0;
    padding: 14px 22px;
    background: #5c2e91;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.boton:hover {
    background: #452273;
}

.version {
    margin-top: 10px;
    font-style: italic;
    color: #555;
}

footer {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    opacity: 0.6;
}
