/* --- Tipograf¨ªa y General --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-bg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/background.png') no-repeat center center/cover;
    position: relative;
}

/* --- Video Modal Always Visible --- */
.video-modal.always-visible {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
}

.presentacion-video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border: 3px solid white;
    border-radius: 10px;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.presentacion-video::-webkit-media-controls-download-button,
.presentacion-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Alerta de derechos */
.copyright-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    z-index: 10000;
    pointer-events: none;
    max-width: 400px;
    text-align: center;
    border: 2px solid #ff4444;
    display: none;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    font-size: 48px;
    color: white;
    font-weight: bold;
    pointer-events: none;
    z-index: 999;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* --- Bot¨®n flotante tipo globo --- */
.floating-btn {
    position: fixed;
    right: 2.2rem;
    bottom: 2.2rem;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #333;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
    color: #fff;
    border: none;
    z-index: 2001;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s, box-shadow 0.2s;
    font-size: 2rem;
    outline: none;
}
.floating-btn:hover {
    background: #444;
    box-shadow: 0 6px 26px rgba(0,0,0,0.35);
}

/* --- Modal Formulario --- */
.modal-bg {
    position: fixed;
    z-index: 2002;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
}
.modal-form-content {
    background: #fff;
    padding: 2.5rem 2rem 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 38px rgba(0,0,0,0.23);
    max-width: 380px;
    width: 90vw;
    position: relative;
    text-align: center;
}

.formulario {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.formulario input,
.formulario textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}
.formulario textarea {
    min-height: 100px;
    resize: vertical;
}
.formulario button {
    padding: 14px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.formulario button:hover {
    background-color: #555;
}
.close-btn {
    margin-top: 1.2rem;
    background: #d3d3d3;
    color: #333;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}
.close-btn:hover {
    background: #bbb;
}

.errores {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.exito {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.unmute-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    z-index: 2000;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.unmute-btn:hover {
    background-color: rgba(50,50,50,0.9);
}
