/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */


body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-image: url(img/background-metroagro.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
}

main {
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 50px 0;
    color: rgb(255, 255, 255); /* Color de texto opcional */
}

footer {
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin-top: 30px;
    margin-right: 10px;
}

nav ul li a img {
    width: 30px;
    height: 30px;
}

.whatsapp {
    background-color: green;
    color: white;
    padding: 10px 20px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 5px;

}

.whatsapp:hover {
    background-color: darkgreen;
}