/*
@font-face {
    font-family: 'FSAlbertPro';
    src: url('https://saludenequilibriobd.com/assets/fuentes/FSAlbertPro-Regular.woff2') format('woff2'),
         url('https://saludenequilibriobd.com/assets/fuentes/FSAlbertPro-Regular.woff') format('woff'),
         url('https://saludenequilibriobd.com/assets/fuentes/FSAlbertPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'FSAlbertPro'!important;
}
    */
.imgIcon{
    width: 100%;
    height: auto;
    max-width: 150px;
}

.widget-content-area{
    height: 100%;
}

.iconoRelativo {
    position: relative; /* Hace que los elementos absolutos se posicionen dentro de este contenedor */
}

.icono-superior-derecha {
    position: absolute;
    top: 10px; /* Ajusta según el espacio que desees del borde superior */
    right: 10px; /* Ajusta según el espacio que desees del borde derecho */
    width: 30px; /* Ajusta el tamaño del icono */
    height: 30px; /* Ajusta el tamaño del icono */
    z-index: 10; /* Asegura que el icono esté por encima de otros elementos */
}
.fotoPerfilG{
    width: 100%;
    height: auto;
    max-width: 350px;
    padding:2.5%;
}
    
.btn-secondary {
    color: #fff !important;
    background-color: #FF6E00;
    border-color: #FF6E00;
    box-shadow: 0 10px 20px -10px rgba(225, 110, 0, 1);
}

.btn-secondary:hover, .btn-secondary:focus {
    color: #fff !important;
    background-color: #FF6E00 !important;
    box-shadow: none;
    border-color: #FF6E00 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #060A3D;
}

.textoNaranjaBD{
    color: #FF6E00;
}

.header-container{
    background-color: #060A3D;
}

.centrarVH {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

/* Contenedor de las tarjetas */
.tarjetaPaises {
    padding: 20px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 24px;
    width: 300px;
    max-width: 500px;       /* Tamaño uniforme de las tarjetas */
    height: 320px;          /* Altura fija para todas las tarjetas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin: 15px;           /* Espacio entre tarjetas */
}

/* Hover para cambiar el color */
.tarjetaPaises:hover {
    background-color: #060A3D ;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Intensifica la sombra */
    transform: scale(1.1);
}

.tarjetaPaises:hover h2{
    font-weight: bold;
    color:white;
}

/* Estilo de las imágenes */
.tarjetaPaises img {
    max-width: 100%;        /* Se ajusta al ancho de la tarjeta */
    max-height: 100%;       /* No excede la altura del contenedor */
    object-fit: contain;    /* Mantiene proporciones sin recortar */
    border-radius: 12px;    /* Bordes redondeados */
}

@media (max-width: 767px) {
    .tarjetaPaises {
        width: 100px;
        height: 160px;
    }
    .tarjetaPaises h2 {
        font-size:15px;
    }

}

.fa-solid{
    font-size:1.7rem;
}