.footer {
    background: #F1F1F1;
    padding: 50px 0 0;

    .footer-content {
        margin-bottom: 50px;

        .endereco {
            .title {
                display: flex;
                gap: 15px;
                align-items: center;
                margin-bottom: 15px;

                h1 {
                    font-size: 30px;
                    font-weight: 500;
                    margin-bottom: 0;
                }
            }

            .text-content {
                .first {
                    margin-bottom: 20px;

                    p {
                        font-size: 20px;
                        font-weight: 400;
                        margin-bottom: 5px;
                    }

                    p:last-child {
                        margin-bottom: 0;
                    }
                }

                .last {
                    p {
                        font-size: 20px;
                        font-weight: 400;
                        margin-bottom: 5px;
                    }

                    p:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }

        .atendimento {
            .title {
                display: flex;
                gap: 15px;
                align-items: center;
                margin-bottom: 15px;

                h1 {
                    font-size: 30px;
                    font-weight: 500;
                    margin-bottom: 0;
                }
            }

            .text-content {
                display: flex;
                flex-direction: column;
                gap: 12px;

                .item {
                    display: flex;
                    gap: 5px;
                    align-items: center;

                    p {
                        font-size: 20px;
                        font-weight: 400;
                    }
                }
            }
        }

        .redes {
            .title {
                display: flex;
                gap: 15px;
                align-items: center;
                margin-bottom: 15px;

                h1 {
                    font-size: 30px;
                    font-weight: 500;
                    margin-bottom: 0;
                }
            }

            .icons {
                display: flex;
                gap: 20px;
            }
        }
    }

    .copyright {
        background: #E6E6E6;
        padding: 22px 0;

        p {
            font-size: 17px;
            font-weight: 400;
            color: #565862;
        }
    }
}