html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    /*background-color: #f5f7fb;  gris suave elegante */
    background: linear-gradient(180deg, #f5f7fb 0%, #eef1f7 100%);
}
.container {
    background: transparent;
}

.cards-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.card-servicio {
    background: white;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

    .card-servicio:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

h3 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
}
/*
.card-servicio {
    width: 170px;
    height: 170px;
    border-radius: 15px;
    border: 1px solid #dcdcdc;
    text-align: center;
    padding: 15px;
    background: white;
    text-decoration: none;
    color: black;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

    .card-servicio:hover {
        transform: scale(1.05);
    }
    */

    .card-servicio img {
        width: 70px;
        margin-top: 10px;
    }

.titulo {
    margin-top: 15px;
    font-weight: bold;
}


.card-servicio {
    width: 300px;
    height: 200px;
    position: relative;
    display: inline-block;
    margin: 12px;
   
}
.contenedor-cardservicio {
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
}
.precio-tag {
    background: #1e7be6;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

/*
.precio-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #0d6efd;
    color: white;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
*/

/* para el buscador de los servicios */
.filtros-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}
/*
#buscador, #filtroCategoria {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
}

    #buscador:focus, #filtroCategoria:focus {
        outline: none;
        border-color: #007bff;
    }*/

#filtroCategoria {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    min-width: 100px;
    background: white;
}

#buscador {
    flex: 1;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/*  para donde se realizar el registro del pago*/

/*
.info-pago {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
*/
.info-pago {
    background: white;
    border-left: 5px solid #1e7be6;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* boton de whatsapp soporte*/
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.2s ease;
}

    .btn-whatsapp:hover {
        transform: scale(1.1);
        background: #1ebe5d;
    }

    /* para las fila del historial en caso de error porque luego est amuy lago*/

#tablaHistorial span.resultado-error {
    display: block;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*
#tablaHistorial {
    table-layout: fixed !important;
}*/