/*
COLORES:
Azul Fuerte: #021271
Azul Claro: #546E9E
Gris Fuerte: #CCCCCC
Gris Claro: #F2F2F2
*/

@font-face {
    font-family: 'GibsonRegular';
    src: url('./Tipografia/GibsonRegular.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GibsonSemiBd';
    src: url('./Tipografia/GibsonSemiBd.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body,
html {
    overflow-x: hidden;
    color: rgb(51, 51, 51);
    font-family: 'GibsonRegular';
    background-color: #F2F2F2 !important;
    scroll-behavior: smooth;
}

/* Imagenes */
.image-regular {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-bg {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    border-left: #546E9E 10px solid;
    background: rgba(255, 255, 255, 0.75);
}

.card-title {
    font-family: GibsonSemiBd;
    color: #021271;
}

.card-text {
    margin-bottom: 0;
}

.overlay-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 18, 113, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 10px;
}

.col-md-4.p-0:hover .overlay-imagen {
    opacity: 1;
}


.dis {
    visibility: hidden !important;
}

.dis2 {
    visibility: visible !important;
}

/* BOTONES */
.btn-custom-1 {
    background: #021271 !important;
    color: #f2f2f2;
    border: none;
    padding: 5px 40px !important;
    font-family: 'GibsonSemiBd';
    border-radius: 0px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-custom-1:hover {
    background: #f2f2f2 !important;
    color: #021271 !important;
}

.btn-custom-2 {
    background: #f2f2f2 !important;
    color: black;
    border: none;
    padding: 5px 20px !important;
    font-family: 'GibsonSemiBd';
    border-radius: 0px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-custom-2:hover {
    background: #021271 !important;
    color: #f2f2f2 !important;
}

/* BOTON WHATSAPP */
.whatsapp-button {
    position: fixed;
    width: auto;
    height: auto;
    text-decoration: none;
    z-index: 1000;
    right: 10px;
    bottom: 10px;
}

.whatsapp-button img {
    object-fit: cover;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.badge-1 {
    background-color: rgb(226, 226, 226) !important;
    color: rgb(128, 128, 128) !important;
    padding: 3px 50px;
    border-radius: 20px;
    font-size: 1rem;
    font-family: 'GibsonSemiBd';
}

.badge-2 {
    background-color: #021271 !important;
    color: white !important;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 1rem;
    font-family: 'GibsonSemiBd';
}

.custom-input {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    background-color: transparent;
    box-shadow: none !important;

    font-family: 'GibsonRegular';
}

.custom-input::placeholder {
    color: #999;
    opacity: 1;
}

.custom-input:focus {
    border-bottom: 2px solid #021271;
    background-color: transparent;
}

/* ESTILOS TABS */
#tabsFiltro {
    justify-content: center;
    border-bottom: none;
}

#tabsFiltro .nav-link {
    font-family: 'GibsonSemiBd', sans-serif;
    color: #CCCCCC;
    border: none;
    transition: color 0.3s;
}

#tabsFiltro .nav-link.active {
    color: #021271;
    background: none;
    border: none;
}

#tabsFiltro .nav-link:hover {
    color: #021271;
    background: none;
    border: none;
}