.catalogo-servicios{

    margin-top:0px;

}

.titulo-catalogo{

    font-family:inherit;

    text-align:center;

    font-weight:bold;

    color:#444;

    margin-bottom:35px;

}

.nav-pills .nav-link {
    color: white !important;
    background-color: #d4af37 !important;
    border-radius: 0.25rem !important;
    transition: color 0.3s ease !important;
    margin-right: 8px;
}

.nav-pills .nav-link:last-child {
    margin-right: 8px;
}

.nav-pills .nav-link:hover {
    color: #6E8C80 !important;
    background-color: #d4af37 !important;
}

.nav-pills .nav-link.active {
    color: white !important;
    background-color: #737373 !important;
    font-weight: bold !important;
}


/* Hover también para botón activo */
.nav-pills .nav-link.active:hover {
    color: #6E8C80 !important;
    background-color: #d4af37 !important;
}

.galeria-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

    margin-top:30px;

}

.galeria-grid img{

    width:100%;

    border-radius:10px;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 5px 15px rgba(0,0,0,.20);

}

.galeria-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 12px 30px rgba(0,0,0,.35);

}

.linea-catalogo{

    border:0;

    height:2px;

    background:#ececec;

    margin:25px 0 35px;

}