﻿.Ocultar {
    display: none;
}

.containerInmueble {
    width: 100%;
    height: 550px;
    margin-top: 20px;
}

    .containerInmueble:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.1);
    }

.containerFoto {
    width: 100%;
    height: 350px;
}

.containerDatosInmueble {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.rowNombre {
    width: 100%;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}

.rowColonia {
    width: 100%;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

.datosNombre {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.datosColonia {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.rowCiudad {
    width: 100%;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}

.rowClave {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.rowIconos {
    width: 100%;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-right: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}

.viñetas {
    width: 8px;
    height: 8px;
    margin-right: 5px;
    margin-left: 5px;
}

.viñetas {
    width: 8px;
    height: 8px;
    margin-right: 5px;
    margin-left: 5px;
    margin-top: 3px;
}

.TextoClave {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
}

.TextoTipo {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    position: relative;
    top: -3px;
}

.TextoLink {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
}

    .TextoLink > a:active, .TextoLink > a:visited, .TextoLink > a:link {
        text-decoration: none;
        color: #0b3f62;
    }

.AnchoIconos {
    width: 30px;
}

.AnchoCeldaIconos {
    width: 80px;
}

.ver-inmueble {
    width: 90px;
    border-radius: 5px;
    padding: 5px;
    background-color: #8b0000;
    color: snow;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
    justify-self: right;
    margin-right: 5px;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

    .ver-inmueble:hover {
        cursor: pointer;
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.1);
        animation: pulsoRojo 2.15s ease-in-out infinite;
        background: #b30d0d;
    }

@keyframes pulsoRojo {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 0, 0, 0), 0 0 0 rgba(255, 80, 80, 0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 12px rgba(180, 0, 0, .45), 0 0 28px rgba(255, 70, 70, .35);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 0, 0, 0), 0 0 0 rgba(255, 80, 80, 0);
    }
}

.btn-efecto {
}

    .btn-efecto:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra al pasar el mouse */
        transform: translateY(-1px); /* Sutil efecto de elevación */
    }



.ficha-tipo-header {
    background: #476581;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px 0 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #d8b45a;
    /*text-shadow: 0 0 2px rgba(255, 220, 120, .55), 0 0 6px rgba(255, 210, 90, .35), 0 1px 0 rgba(80, 55, 0, .70);*/
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.06), 0 1px 2px rgba(0,0,0,.15);
}

.ficha-tipo-linea {
    height: 3px;
    background: linear-gradient( to right, rgba(120, 85, 20, .95) 0%, #d4af37 18%, #f1d67a 50%, #d4af37 82%, rgba(120, 85, 20, .95) 100% );
    box-shadow: 0 0 4px rgba(212, 175, 55, .65), 0 0 10px rgba(241, 214, 122, .35);
}

.ficha-imagen-principal {
    width: 100%;
    overflow: hidden;
}

.img-ficha {
    display: block;
    width: 100%;
    height: auto;
}