.footer-bar {
    background-color: rgba(0, 21, 10, 0.4); /* Fondo oscuro */
    color: white; /* Texto blanco */
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px; /* Para que las secciones no se vuelvan demasiado estrechas */
    text-align: center;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid white; /* Línea debajo del título */
    padding-bottom: 5px;
}

.footer-section p, .footer-section a {
    font-size: 14px;
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.Social-logo{
    width: 2em;
    height: auto;
    margin-right: 2em;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 100;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
