body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background-color: #fdf2f0;
    color: #4a3b3b;
}

/* =========================
   ENCABEZADO
   ========================= */
header {
    background-color: #f7d9d5;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #e8c2bd;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #b05c5c;
}

/* =========================
   NAVEGACIÓN
   (Mismos estilos usados en
   las demás vistas del sitio)
   ========================= */
nav {
    margin-top: 15px;
}

nav a {
    display: inline-block;
    text-decoration: none;
    background-color: #d98c8c;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #c97979;
}

/* =========================
   CONTENEDOR PRINCIPAL
   ========================= */
main {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* TÍTULO PRINCIPAL */
main > h2 {
    margin-top: 0;
    margin-bottom: 50px;
    text-align: center;
    color: #b05c5c;
    font-size: 2.2rem;
    font-weight: normal;
}

/* =========================
   TARJETAS DE PERSONAS
   ========================= */
.persona {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 35px;
    background-color: #fffaf9;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Imagen */
.foto-persona {
    width: 220px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Contenido */
.contenido-persona {
    flex: 1;
    max-width: 500px;
}

/* Nombre */
.contenido-persona h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #b05c5c;
    font-size: 1.8rem;
    font-weight: normal;
}

/* Párrafos */
.contenido-persona p {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

/* Contacto */
.contacto {
    margin-top: 20px;
    font-weight: bold;
}

/* =========================
   ENLACES DE CORREO
   ========================= */
.contenido-persona a {
    color: #c26b7a;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease;
}

.contenido-persona a:hover {
    color: #a84f60;
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    header {
        padding: 20px 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    nav a {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    main {
        margin: 20px;
        padding: 25px;
    }

    main > h2 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .persona {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 25px;
    }

    .foto-persona {
        width: 180px;
        height: 190px;
    }

    .contenido-persona {
        max-width: 100%;
    }

    .contenido-persona h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .contenido-persona p {
        font-size: 1rem;
        text-align: justify;
    }

    .contacto {
        text-align: center;
    }
}