/*C:\Users\usuari\Documents\JosepM\css\animacioNumeros.css*/

/* Estil per al mapa */
#map {
    width: 100%;
    height: 300px;
    box-shadow: 5px 5px 5px #888;
}
/*  fi estils per al mapa  */

h3 a {
    color: inherit !important;
    /* color normal, igual que el text */
    text-decoration: none;
    /* sense subratllat */
    font-weight: bold;
    /* fa el text en negreta */

}

h3 a:hover {
    color: inherit;
    /* segueix mantenint el color */
    text-decoration: none;
}

.numero-hover {
    display: block;
    /* l’enllaç ocupa tota la caixa */
    transition: transform 0.2s ease, color 0.2s ease;
    text-decoration: none !important;
    /* treu subratllat */
    color: inherit;
    cursor: pointer;
}

.numero-hover:hover {
    transform: scale(1.2);
    /* augment lleuger */
    color: #007bff;
}

.section-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.section-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



/* al final de style.css */
/*
body::after {
    content: "CSS carregat ✅";
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: lime;
    color: black;
    padding: 4px 8px;
    font-weight: bold;
    z-index: 9999;
}
    */