html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

a.openPopup {
    cursor: pointer;
    margin-right: 5px;
}


.floating-tab {
    position: fixed;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 14px;
    border: 0;
    border-radius: 12px;
    background: gray;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    z-index: 9999;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9998;
}

    .video-modal.open {
        display: block;
    }

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}

.video-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(720px, 92vw);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
    overflow: hidden;
}


.video-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #e5e7eb;
    background: #dfdfdf;
}

.video-modal__title {
    margin: 0;
    font-size: 1rem;
}

.video-modal__body {
    padding: 12px;
    background: #dfdfdf;
}

.video-modal__close {
    background: transparent;
    border: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}

@media (max-width: 640px) {
    .floating-tab {
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .video-modal__dialog {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 94vw;
    }
}

.btn-informacion {
    width: 150px; /* Ancho deseado */
    height: auto; /* Mantiene proporción */
    margin:10px;
}