/* Estilo mejorado */

body {
    font-family: 'Roboto', sans-serif; /* Fuente más moderna */
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Fondo claro y agradable */
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #2C6E49; /* Verde oscuro elegante */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #A7D7C5; /* Verde pastel */
}

.hero {
    background: linear-gradient(to right, #A7D7C5, #81C784); /* Degradado atractivo */
    text-align: center;
    padding: 80px 20px;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #2C6E49;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: #A7D7C5;
    color: #2C6E49;
}

section {
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.project {
    background-color: #E8F5E9; /* Verde muy claro */
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    border-left: 5px solid #2C6E49;
}

footer {
    background-color: #2C6E49;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    margin-top: 30px;
}

footer a {
    color: #A7D7C5;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}
