/* Estilos básicos del cuerpo */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Contenedor principal */
header {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 8px;
    max-width: 90%;
    margin: 20px auto;
}

header h1 {
    margin: 0;
    font-size: 3em;
    color: #2575fc;
}

/* Contenido principal */
main {
    padding: 20px;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Mejoras de secciones */
section {
    margin: 20px 0;
    text-align: left;
    padding: 20px;
}

#about-me h2, #skills h2, #contact h2 {
    font-size: 2.5em;
    color: #6a11cb;
    border-bottom: 3px solid #2575fc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    background: #f0f0f0;
    margin: 12px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animación al pasar sobre las habilidades */
ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Botón estilizado */
button {
    padding: 15px 35px;
    margin: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #2575fc;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

button:hover {
    background: #6a11cb;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Mensaje al hacer clic */
#mensaje p {
    font-size: 1.5em;
    font-weight: bold;
    color: #2575fc;
    margin-top: 20px;
}

/* Pie de página */
footer {
    background-color: #333;
    color: white;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
}

footer p {
    margin: 0;
}

/* Mejoras de texto */
a {
    color: #2575fc;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Transiciones y animaciones */
main:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
