/* Estilos generales */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: #f9f9f9; /* Color de fondo más suave */
}

.verification-icon {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 5px;
    line-height: 1;
    position: relative;
    top: -2px;
}

.verification-icon{
    width: 3vh !important;
    height: 3vh !important;
    min-width: 3vh !important;
    min-height: 3vh !important;
    max-width: 3vh !important;
    max-height: 3vh !important;
    display: inline-block !important;
}

/* Contenedor principal */
.business-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Card de negocio */
.business-card {
    display: flex;
    align-items: center;
    background-color: #ffffff; /* Fondo blanco para las tarjetas */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Sombra suave para un toque más elegante */
    padding: 20px;
    margin-bottom: 20px;
    text-decoration: none; /* Elimina el subrayado del enlace */
    color: inherit; /* Mantiene el color del texto */
    transition: transform 0.3s ease, background-color 0.3s ease-in-out; /* Transición suave */
    flex-wrap: wrap; /* Asegura que los elementos se ajusten en pantallas pequeñas */
}

/* Efecto al pasar el mouse */
.business-card:hover {
    transform: scale(1.05); /* Aumenta ligeramente el tamaño */
    background-color: #f4f4f4; /* Fondo más claro al hacer hover */
}

/* Imagen del negocio */
.business-card img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 20px;
    transition: transform 0.3s ease; /* Transición suave para la imagen */
}

/* Detalles del negocio */
.business-details h3 {
    font-size: 20px;
    font-weight: 600; /* Título más destacado */
    margin-bottom: 8px;
    color: #333; /* Color de texto más oscuro para mejor contraste */
}

.business-details p {
    font-size: 16px;
    color: #777; /* Color de texto más suave */
    line-height: 1.5; /* Mejor espaciado entre líneas */
}

/* Agregar un borde sutil para separar los detalles */
.business-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

/* Responsive Design */

/* Pantallas medianas y pequeñas */
@media screen and (max-width: 1024px) {
    .business-card {
        flex-direction: row;
        padding: 15px;
    }

    .business-card img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }

    .business-details h3 {
        font-size: 18px;
    }

    .business-details p {
        font-size: 15px;
    }
}

/* Móviles y pantallas más pequeñas */
@media screen and (max-width: 768px) {
    .business-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        margin-bottom: 15px;
    }

    .business-card img {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .business-details h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .business-details p {
        font-size: 14px;
    }
}

/* Móviles muy pequeños */
@media screen and (max-width: 480px) {
    .business-card {
        padding: 12px;
    }

    .business-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .business-details h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .business-details p {
        font-size: 12px;
    }
}
