/* ============================================
   SIDEBAR CONTACT FORM – Recargas Dragon
   Moderno, estilo fintech
============================================ */

#contactSidebar {
    position: fixed;
    top: 0;
    right: -380px; /* Oculto */
    width: 360px;
    max-width: 90%;
    height: 100vh;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: -4px 0 25px rgba(0,0,0,0.15);
    z-index: 999999;
    padding: 25px 25px 35px 25px;
    transition: right 0.35s ease;
    overflow-y: auto;
}

#contactSidebar.open {
    right: 0;
}

/* TÍTULO */
.sidebar-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #004AAD;
    margin-bottom: 10px;
}

/* Campos */
.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Botón */
.sidebar-submit {
    background: #004AAD;
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
}

.sidebar-submit:hover {
    background: #00398a;
}

/* Botón cerrar */
#closeSidebar {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #004AAD;
    cursor: pointer;
}

/* Versión móvil (más padding) */
@media(max-width: 768px) {
    #contactSidebar {
        width: 100%;
        right: -100%;
    }

    .sidebar-title {
        font-size: 1.35rem;
    }

    .sidebar-submit {
        font-size: 1.1rem;
    }
}
