/* STREET VIEW RESPONSIVE */
.street-responsive {
    position: relative;
    padding-bottom: 40%;
    /* rectángulo más bajo */
    height: 0;
    overflow: hidden;
    width: 100%;
    background: #000;
    border: 4px solid #000;
    /* borde negro de 4px */
}

.street-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* TÍTULO STREET VIEW */
.streetview__title {
    display: block;
    text-align: center;
    font-family: 'Tahoma', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d47a1;
    /* azul intenso */
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    /* sin subrayado */
}