/* --- Estilos Específicos para la Página de Recarga --- */

/* Migas de pan (Breadcrumb) */
.breadcrumb {
    background-color: transparent;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

/* Tarjeta del Formulario */
.card {
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Estilos del Formulario */
.card-header {
    border-bottom: none;
}

.card-body {
    padding: 2rem;
}

.form-check-label {
    font-size: 1rem;
}

.form-label {
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-text {
    font-size: 0.875rem;
}

/* Botón de Continuar */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled) {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary:disabled {
    background-color: #adb5bd;
    border-color: #adb5bd;
    cursor: not-allowed;
}

/* Botón de Contacto Flotante */
.btn-floating {
    width: 180px;
    height: 60px;
    z-index: 1000;
    background-color: var(--dtv-blue) !important;
    border-color: var(--dtv-blue) !important;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff !important;
    border-radius: 50px;
}

.btn-floating:hover {
    transform: scale(1.1);
    background-color: var(--dtv-dark-blue) !important;
    border-color: var(--dtv-dark-blue) !important;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    color: #333;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #0d6efd;
}

/* --- Estilos para la sección de seguridad --- */
.security-info {
    margin-top: 1.5rem;
}

.security-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.security-logo:hover {
    opacity: 1;
}

/* --- Responsividad --- */
@media (max-width: 768px) {
    .card {
        padding: 1.5rem !important;
    }

    h1 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .form-check-label {
        font-size: 0.9rem;
    }
}