@font-face {
    font-family: 'scoreboard';
    src: url('/public/css/scoreboard.ttf');

}

.texto-ultimopartido-resultado{
    -webkit-text-stroke: 1px #193f67;
    font-size: 3em;
    font-weight: 900;
    color: yellow;
    
}

.texto-ultimopartido-equipo{
    color:#193f67;
    
}

.texto-slider{
    -webkit-text-stroke: 0.5px #193f67;
    font-size: 2.5em;
    font-weight: 900;
    color: yellow;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

@media only screen and (max-width: 800px) {

    .texto-slider{
        -webkit-text-stroke: 0.5px #193f67;
        font-size: 6vw;
    }
 
}

@media only screen and (min-width: 600px) {

    .titulo-movil{
        font-size: 2.5vw;
    }
    br { display: none; }
}
@media only screen and (max-width: 600px) {

    .titulo-movil{
        font-size: 0.9em;
    }
}

.bold-text{
    font-weight: bold;
}

.patrocinadoresPrincipales{
    width: 300px;
    margin:auto;
    display:block;
}

.patrocinadoresInstitucionales{
    width: 220px;
    margin:auto;
    display:block;
}

.patrocinadoresNormales{
    width: 180px;
    margin:auto;
    display:block;
}

iframe {
    width: 100%;
    height: 400px;
}

.align-right{
    display: flex;
    justify-content: flex-end;
}

/* Paginacion */

.pagination {
    display: flex;
    justify-content: center;
  }
  
.pagination > * {
margin: 0 5px;
padding: 5px 10px;
border: 1px solid #ccc;
background-color: #fff;
color: #333;
}

.pagination > .active > span {
background-color: #007bff;
color: #fff;
}

.pagination > .disabled > span {
color: #999;
cursor: default;
}

.text-primary{
    color: #193f67 !important;
}

.bg-adc-dark {
    background-color: #193f67 !important;
}

:root {
    --bs-primary: #193f67 !important;
    --bs-secondary: pink !important;
    --bs-light: cyan !important;
    --bs-dark: brown !important;

    --bs-link-color: var(--bs-primary);
    --bs-link-hover-color: #0d1570;
    --bs-primary-rgb: 25, 63, 103; /* valores R,G,B del color #193f67 */
}


a {
    color: var(--bs-primary);
    text-decoration: none;
}

a:hover {
    color: #0d1570; /* o usa lighten/darken manual */
    text-decoration: none;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: darken(var(--bs-primary), 50%);
    border-color: darken(var(--bs-primary), 50%);
}

.bg-adc-light {
    background-color: var(--bs-light);
}

.page-link {
    color: var(--bs-primary) !important;
}

.page-link.active, .active > .page-link {
    color: #fff !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.copyright {
    background: var(--bs-primary);
    border-top: 1px solid #fff;
}

.footer {
    background: var(--bs-primary) !important;
    color: #fff;
}

.border-button{
    border: 1px solid #fff;
}

.portfolio-item {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.portfolio-item.is-visible {
    opacity: 1;
}

.ck-editor__editable_inline {
    min-height: 150px;
}

.dorsal-circle {
    background-color: #193f67;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(0.98);
}

.card-body {
    transition: background-color 0.3s ease;
}

.card:hover .card-body {
    background-color: rgba(0, 0, 0, 0.05);
}

.dorsal-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.65rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    margin-right: 0.5rem;
}

.grecaptcha-badge {
    bottom: 10px !important;
    right: auto !important;
    left: 10px !important;
    transform: scale(0.8);
    transform-origin: 0 0;
}

.mb-2 {
    margin-bottom: 2rem !important;
}