body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: #005f73;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.nav-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
}

.section {
    padding: 2rem 0;
    text-align: center;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service {
    background-color: #eaeaea;
    padding: 1rem;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea, .contact-form button {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #005f73;
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #023047;
}

.footer {
    background-color: #005f73;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
}
.whatsapp-button img {
    width: 30px;
    height: auto;
}
.logo-img {
    width: 300px; /* Tamaño predeterminado */
    height: auto;
}

@media (max-width: 768px) {
    .logo-img {
        width: 200px; /* Tamaño reducido para pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 150px; /* Tamaño aún más pequeño para móviles */
    }
}

