/* =========================
   BARRA DE NAVEGACIÓN
========================= */

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-nombre {
    font-weight: 600;
    font-size: 15px;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    font-size: 14px;
    color: #555;
}

.nav-menu a:hover {
    color: #2c3e50;
}

/* =========================
   ESTILOS GENERALES
========================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 35%,
        #dec8f7 65%,
        #d4b8f5 100%
    );
    color: #333333;
    max-width: 800px;
    margin: 60px auto;
    line-height: 1.6;
}

main {
    padding: 0 20px;
}

/* =========================
   TÍTULOS Y TEXTO
========================= */

h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* =========================
   LISTAS
========================= */

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* =========================
   PERFIL
========================= */

.foto-perfil {
    display: block;
    max-width: 180px;
    margin: 30px auto;
    border-radius: 50%;
}

.cedula {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin-top: -10px;
    margin-bottom: 30px;
}

/* =========================
   CONTACTO – TEXTO
========================= */

.intro-contacto {
    max-width: 600px;
    margin: 0 auto 20px;
    text-align: center;
}

.datos-contacto {
    text-align: center;
    margin-top: 30px;
}

/* =========================
   FORMULARIO DE CONTACTO
========================= */

.bloque-formulario {
    margin: 40px 0;
}

.form-contacto {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-contacto label {
    font-size: 14px;
    color: #333;
}

.form-contacto input,
.form-contacto select,
.form-contacto textarea {
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
}

.form-contacto input:focus,
.form-contacto textarea:focus,
.form-contacto select:focus {
    outline: none;
    border-color: #9b7fcf;
}

.form-contacto button {
    margin-top: 10px;
    padding: 12px;
    background-color: #9b7fcf;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.form-contacto button:hover {
    background-color: #8669b6;
}

/* =========================
   FOOTER / AVISO
========================= */

.footer-contacto {
    margin-top: 100px;
    padding: 50px 20px;
    background: linear-gradient(
        to bottom,
        #efeaf5 0%,
        #e6d9f2 100%
    );
    text-align: center;
    font-size: 14px;
    color: #4a4a4a;
}

.footer-contacto p {
    margin: 10px 0;
}

.footer-nombre {
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #2c3e50;
}

.footer-aviso {
    margin-top: 25px;
    font-size: 12.5px;
    color: #666;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    h1 {
        font-size: 26px;
        text-align: center;
    }

    h2 {
        text-align: center;
    }

    .foto-perfil {
        max-width: 140px;
    }
}
