.be-footer {
    display: flex;
    flex-flow: column;
    row-gap: 2rem;
    column-gap: 2rem;
}

.page-footer .middle-footer {
    padding: 80px 0;
    background-color: #f6f6f800;
    border-top: 1px solid #f6f6f8;
}

.be-footer-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 1rem;
    row-gap: 3rem;
    padding: 0 4rem;
}

.be-item {
    display: flex;
    flex-flow: column;
    align-items: center;
    font-size: 14px;
    line-height: 120%;
    color: #000;
    text-align: center;
    gap: 1rem;
    text-decoration: none;
    width: 135px;
}

.be-item-icon {
    background-color: #e4e8ec;
    border-radius: 100px;
    padding: 1rem;
}

.be-footer-bottom {
    display: flex;
    flex-flow: column;
    row-gap: 3rem;
    column-gap: 3rem;
    padding: 0 1rem 1rem;
}

.be-newsletter {
    display: flex;
    flex-flow: column;
    row-gap: 0.5rem;
    column-gap: 0.5rem;
    width: 350px;
}

.be-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 1rem;
    row-gap: 1rem;
}

.be-nav {
    display: flex;
    column-gap: 2rem;
    row-gap: 2rem;
}

.be-nav-group {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    row-gap: 0.5rem;
    column-gap: 0.5rem;
}

.be-nav-title {
    text-transform: uppercase;
    letter-spacing: 0.25px;
    font-weight: 700;
}

.be-nav-link {
    color: #000;
    text-decoration: none;
    line-height: 120%;
}

.be-socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
}

.be-embed {
    color: black;
}

.be-legal {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.be-copy {
    font-size: 12px;
    line-height: 110%;
}
.be-form .be-input{
  padding:10px
}
.boletin-footers.actions{
 display: flex;
    justify-content: space-around;
    align-items: center;
}

/* ─── Tablet ─── */
@media (max-width: 1024px) {
    .be-footer-top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .be-footer-bottom {
        padding: 0 1rem;
    }
    .be-section {
        column-gap: 1rem;
        row-gap: 1rem;
    }
    .be-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .be-copy {
        text-align: center;
    }
    .be-newsletter {
        text-align: center;
    }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
    .be-item {
        flex: 1 1 45%;
        max-width: 45%;
    }
    .be-section {
        flex-direction: column;
        row-gap: 2rem;
    }
    .be-socials {
        justify-content: center;
    }
    .be-legal {
        flex-direction: column;
        align-items: center;
        row-gap: 1rem;
    }
}

/* ─── Small Mobile ─── */
@media (max-width: 480px) {
    .be-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .be-nav-group {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
