/* AUTO AJUSTE DE VIDEOS EN LOTES Y DONDE SE LLAMEN */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ALERTA SUPERIOR */
.custom-head {
    background: linear-gradient(to left, #8AA7CC, #8AA7CC); /* Color de manual de marcas */
    color: #fff;
    padding: 5px;           
    text-align: center;
    max-height: 30px; /* Establecer el height máximo */
}

/*CARGO LA TIPO*/
@font-face {
    font-family: 'HelveticaNeueMedium';
    src: url('./fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.titulo-helvetica {
    font-family: 'HelveticaNeueMedium', sans-serif;
}
/* PERSONALIZADO BT */
.alert-danger{
    background-color: #071836;
    color: #8AA7CC;
    border-color: #071836;
}

.alert-danger .alert-link{
    color: #8AA7CC;
    font-weight: 600;
}

.alert-success{
    background-color: #8AA7CC;
    color: #071836;
    border-color: #8AA7CC;
}

.alert-success .alert-link{
    color: #071836;
    font-weight: 600;
}

.alert-success .btn-close{
    filter: none;
}

.color-oscuro{
    color: #071836;
}


/* corazon de favoritos */
.corazon-favorito{
    color:#071836 !important;
    transform: scale(1.1);
}

.favorito-btn{
    opacity:0.7;
    transition:all .2s;
}

.favorito-btn:hover{
    opacity:1;
    transform:scale(1.15);
}
/* fin corazon de favoritos */

/*BOTON PUJA HOME*/
.animate-pulse {
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(12,120,123,0.6); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(12,120,123,0); }
    100% { transform: scale(1); }
}