/* ==============================
   Reglas globales
   ============================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0a3d73;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}


/* ==============================
   Contenedor principal
   ============================== */

.container {
    max-width: 700px;
    padding: 40px 20px;
}


/* ==============================
   Identidad
   ============================== */

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    margin-bottom: 25px;
}

h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 600;
}

.subtitle {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
}

.roles {
    margin-top: 8px;
    font-size: 16px;
    opacity: 0.85;
}


/* ==============================
   Bloque de decisión
   ============================== */

.buttons {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.choice {
    background: #0d4f95;
    border: 2px solid transparent;
    color: #ffffff;
    padding: 22px 28px;
    width: 240px;
    margin: 12px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.choice:hover {
    border-color: #ffffff;
}

.choice-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.choice-sub {
    font-size: 14px;
    opacity: 0.85;
}


/* ==============================
   Contacto
   ============================== */

.email {
    margin-top: 45px;
    font-size: 15px;
    opacity: 0.85;
}
