footer {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 50vh;
    /* margin-top: 100px; */
    overflow: hidden;
}

.ct-box-footer {
    display: flex;
}

.box-footer {
    display: flex;
    margin-right: 3%;
    width: 30%;
    justify-content: center;
}

.box-footer:last-child {
    margin-right: 0;
}

.ct-footer,
.ct-copy {
    max-width: 1260px;
    margin: auto;
}

.area-texto-footer {
    flex-direction: column;
    display: flex;
}

.title-footer {
    font-size: 26px;
    color: #111;
    font-weight: 500;
    border-bottom: solid 1px #777;
    margin-bottom: 20px;
    display: flex;
    width: max-content;
}

.text-footer {
    color: #777;
}

.box-copy {
    padding: 40px 0;
    color: #777;
    text-align: center;
}


.rain__drop {
    -webkit-animation-delay: calc(var(--d) * 1s);
    animation-delay: calc(var(--d) * 1s);
    -webkit-animation-duration: calc(var(--a) * 1s);
    animation-duration: calc(var(--a) * 1s);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: drop;
    animation-name: drop;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    height: 30px;
    left: calc(var(--x) * 1%);
    position: absolute;
    top: calc((var(--y) + 50) * -1px);
}

.rain__drop path {
    fill: #777;
    opacity: var(--o);
    transform: scaleY(calc(var(--s) * 1.5));
}

@-webkit-keyframes drop {
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(100vh);
    }
}

@keyframes drop {
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(100vh);
    }
}

@media (max-width: 1260px) {

    .ct-footer,
    .ct-copy {
        max-width: 90%;
        margin: auto;
    }

    .ct-box-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 40px 0;
    }

    .box-footer {
        display: flex;
        margin-right: 3%;
        width: 47%;
        justify-content: space-between;
    }

    footer {
        padding: 40px 0;
    }

    .input-data input,
    .textarea textarea,
    .textarea label,
    .ct-form form .form-row {
        background: none !important;
    }
}

@media (max-width: 500px) {


    .ct-box-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 40px 0;
    }

    .box-footer {
        display: flex;
        margin-right: 0;
        width: 100%;
        justify-content: space-between;
    }

    footer {
        height: 100%;
        padding: 40px 0;
    }
}