.btn-camara {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    text-transform: none;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white !important;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    min-width: 150px;
    min-height: 48px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-camara:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.btn-camara:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.btn-camara i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-camara:hover i {
    transform: scale(1.1);
}