body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}


nav {
    background-color: #007f35;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

section {
   padding: 20px;
    background-color: white;
    margin: 10px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
    background-color: #00662a;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    header {
        flex-direction: column;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    section {
        margin: 10px 10px;
    }
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
#contacto a {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    color: #009640;
    text-decoration: none;
}

#contacto i {
    margin-right: 8px;
    color: #009640;
}

/* Formulario */
form {
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #009640;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #007e34;
}
.contenedor-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 30px;
    background-color: #f4f4f4;
}

.logo-header {
    max-height: 80px;
    width: auto;
    margin-right: 20px;
}

.texto-header h1 {
    margin: 0;
    font-size: 28px;
}

.texto-header p {
    margin: 0;
    font-size: 16px;
    color: #555;
}
@media (max-width: 600px) {
  .contenedor-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-header {
    margin-right: 0;
    margin-bottom: 10px;
    max-height: 60px;
  }

  .texto-header h1 {
    font-size: 22px;
  }

  .texto-header p {
    font-size: 14px;
  }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.proyecto img {
    width: 100%;
    max-height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
}
