#local {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #e0e0e0;
    padding: 105px 10px 20px 10px;
    justify-content: space-evenly;

    .title {
        font-size: 30px;
        margin-bottom: 10px;
        color: var(--color-level0);
    }

    .title::after {
        content: "Nossa Localização";
    }

    .address {
        text-align: center;
        margin-bottom: 10px;
        color: var(--color-level0);
    }

    .map-buttons {
        gap: 10px;
        width: 100%;
        display: flex;
        max-width: 1000px;
        margin-bottom: 10px;
        justify-content: space-evenly;

        .btn-waze, .btn-maps {
            display: flex;
            color: #000;
            font-size: 16px;
            padding: 6px 7px;
            text-align: center;
            transition: all .3s;
            align-items: center;
            border-radius: 10px;
            text-decoration: none;
            justify-content: center;
            background-color: #f1f3f4;
            box-shadow: 0px 0px 5px #bebebe;

            i {
                font-size: 30px;
                margin-right: 10px;
                transition: all .3s;
            }

            .fa-waze {
                color: #000;
                text-shadow: 1.6px 1px 1px #05c8f7;
            }

            .fa-location-dot {
                color: #eb4a3b;
                text-shadow: 1px 1px #000;
            }
        }

        .btn-waze:hover, .btn-maps:hover {
            color: var(--color-level3);
            background-color: var(--color-level1);

            i {
                text-shadow: 1.6px 1px 1px white;
            }

            .fa-waze {
                color: var(--color-level3);
                text-shadow: none;
            }
        }

        .btn-waze::after {
            content: "ver no Waze";
        }

        .btn-maps::after {
            content: "ver no Maps";
        }
    }

    .map-container {
        width: 100%;
        flex-grow: 1;
        max-width: 1000px;

        iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
            box-shadow: 0px 0px 5px #bebebe;
        }
    }
}

@media (max-width: 1024px) {

    #local {
        .map-buttons {
            .btn-waze::after {
                content: "ir com Waze";
            }

            .btn-maps::after {
                content: "ir com Maps";
            }
        }
    }
}

@media (max-width: 740px) {

    #local {
        padding:85px 10px 15px 10px;

        .title::after {
                content: "Localização";
            }

        .address {
            font-size: 13px;
        }

        .map-buttons {
            justify-content: space-between;

            .btn-maps, .btn-waze {
                font-size: 13px;
                width: 100%;

                i {
                    font-size: 25px;
                }
            }
        }
    }
}