.whatsappFixed-frm {
    position: fixed;
    bottom: 16px;
    right: 20px;
    z-index: 101;
    width: 50px;
}
.whatsappFixed-frm a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 5px 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 2px 0 #ffffff;
    transition: all 200ms linear;
}
.whatsappFixed-frm a [class*="fa-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: rgba(255, 255, 255, 1);
}
.whatsappFixed-frm a.whatsappFixed {
    background-color: rgba(39, 197, 0, 1);
}
.whatsappFixed-frm a.whatsappFixed:hover {
    background-color: rgba(33, 169, 0, 1);
}
.signup-container {
    display: flex;
    align-items: center;
}
.email-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    width: 70%;
    background-color: #efefef;
    height: 44px;
    font-family: "Poppins", sans-serif;
}
.signup-button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #3a00e7;
    border: none;
    width: 30%;
    height: 44px;
    font-family: "Poppins", sans-serif;
}
.signup-button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #efefef;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0 40px 0;
}
.footer-col p {
    margin: 1.5rem 0;
    font-family: "Poppins", sans-serif;
}
.footer-col:nth-child(3) p {
    margin-top: 0;
}
.footer-col h1 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
}
.footer-col .popular {
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-col .popular:nth-child(3) {
    padding-top: 20px;
}
.footer-col .text h1 {
    font-size: 1.1rem;
    margin: 0;
}
.footer-col .text p {
    margin: .5rem 0;
    font-size: .9rem;
}
.footer-col .popular img {
    max-width: 60px;
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}
p.icon-text {
    margin: .5rem 0 !important;
}
.footer-border {
    border: 1px solid #ccc;
    opacity: 0.5;
}
.footer-copy {
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.footer-copy .redes-socias {
    justify-content: end;
}

.copy {
    font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 900px) {
    .footer-cols {
        grid-template-columns: none;
        gap: 40px;
    }
}

@media screen and (max-width: 500px) {
    .footer-copy {
        grid-template-columns: none;
        gap: 20px;
        justify-content: center;
    }
    .footer-copy .redes-socias {
        justify-content: center;
    }
}