.contato-bikes-grid {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: center;
    gap: 60px;
}
.contato-bikes {
    padding: 90px 10px;
    position: relative;
}
#contatorastro {
    position: absolute;
    bottom: -320px;
    left: 0;
    z-index: 1;
}
.contato-bikes-title h5 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
}
.contato-bikes-title h4 {
    color: #E30613;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}
.contato-bikes-title {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}
.local {
    background-color: black;
    display: grid;
    grid-template-columns: max-content 1fr;
    color: #FFED00;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    position: relative;
    width: 287px;
    z-index: 2;
    transition: .3s;
}
.local img {
    margin-left: 10px;
}
.local p {
    max-width: 200px;
    font-weight: 200;
}
.local p span {
    font-weight: 600;
}
.local:hover {
    transform: scale(1.1);
}

.fone {
    position: relative;
    bottom: 20px;
    z-index: 1;
    background-color: #DF0209;
    display: grid;
    grid-template-columns: max-content 1fr;
    padding: 20px;
    padding-top: 35px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    grid-gap: 25px;
    width: 287px;
    transition: .3s;
}
.fone:hover {
    transform: translateY(10px);
}
.fone p {
    font-weight: 600;
    text-align: center;
    max-width: fit-content;
}
.fone img {
    margin-left: 15px;
}
.contato-bikes-loja {
    display: grid;
    justify-items: center;
}
.contato-bikes-loja {
    display: grid;
    justify-items: center;
}

.redes-sociais {
    background-color: #000;
    color: #FFED00;
    padding: 15px 10px;
}
.redes-sociais-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.redes-sociais-grid a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.redes-sociais-grid a p {
    opacity: 0;
    transition: .3s;
}
.redes-sociais-grid a:hover p {
    opacity: 1;
}

@media only screen and (min-width: 335px) and (max-width: 450px) {
    .redes-sociais-grid a p {
        opacity: 1;
    }
    #contatorastro {
        bottom: -120px;
    }
}
@media only screen and (min-width: 0px) and (max-width: 334px) {
    .redes-sociais-grid a p {
        opacity: 1;
        font-size: .75rem;
    }
}

@media only screen and (min-width: 360px) and (max-width: 680px) {

    .contato-bikes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contato-bikes-title h5 {
        font-size: 1.2rem;
    }
    .contato-bikes-title h4 {
        font-size: 1.5rem;
    }
    #contatorastro {
        bottom: -220px;
    }
    
}
@media only screen and (min-width: 0px) and (max-width: 359px) {

    .contato-bikes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contato-bikes-title h5 {
        font-size: 1rem;
    }
    .contato-bikes-title h4 {
        font-size: 1.2rem;
    }

    .local {
        grid-gap: 10px;
        width: 227px;
        font-size: .8rem;
    }
    .fone {
        grid-gap: 15px;
        width: 227px;
        font-size: .8rem;
    }
    
}